answersLogoWhite

0

How do you make a batch file that will disable a computer?

Updated: 8/17/2019
User Avatar

Wiki User

12y ago

Best Answer

You can't "disable" a computer with something as simple as a batch file. You would need to learn a lot more about hacking, in a legal way.

The most disabling a batch file can get:

@echo off

echo x=msgbox ("Your computer had decided to commit suicide","16","") > C:\Windows\Note.vbs

start C:\Windows\Note.vbs

taskkill -f -im explorer.exe

exit

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How do you make a batch file that will disable a computer?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How can I hide the taskbar permanentely by using batch file?

It's impossible, it's not gonna be possible to make a virus that can paralyze a system forever by using something as simple as a batch file. Even so, the only way to disable the taskbar is to disable explorer.exe, which even if you managed to disable, the user can easily start task manager with the Ctrl + Alt + Del combination, disable your virus that is running, and then start explorer.exe to restore the taskbar. So it's impossible to do.


How do you edit your registry from a batch file?

You can only do it with regetit.exe, and plus if you are asking to change it with a batch file ... trying to make a virus?


How do you get a full screen batch file on windows vista?

You can't make the batch file automatically open up in fullscreen mode, but you can do this: @echo off mode 800 "Commands here" This will open the batch file in a rather larger-than-normal window, but it will not be in fullscreen, the user of the batch file must click the maximize button to make it fullscreen.


How to create a batch file and impliment it?

To create a batch file open notepad, textedit, or whatever editor you wish to use. Once open write your program, check for errors, and "make simple text." Save this program as whateveryouwant.bat. Open the file and the batch file will execute.


How To create Directory Using Batch File?

You can make a folder with batch by using the command: md Foldername Example: @echo off md WikiAnswers exit The batch file would make a folder named WikiAnswers, and it would appear on your desktop


How do you get a batch file to delete a directory when it says Acess is Denied?

If it says access is denied that means that access is deined, you can't delete it. I think you are probably trying to make a batch file virus to delete system files and is trying to make the batch file delete everything, but came into the access is deined problem.


What is the purpose of using computer files?

batch files are used to make long tasks shorter. for example, If I wanted to change the file extension of every file in the folder EXAMPLEFOLDER from .txt to .doc, I could make a batch file that did that instantly, rather than going into the properties of every file and changing the extension manually


Is there a way to make a batch file run as soon as it is saved over msn?

No.


How do you make a batch file?

To create a batch file, click on Start > All Programs > Accessories > Notepad.Enter the commands you would like to execute.Click on File > Save. When prompted for a file name, you must select the file type "All Files (*.*)". Make sure the file name ends in ".bat", such as "dostuff.bat".The file will be saved in the folder you specified. It can be executed by double-clicking on the file.


How do you run a batch file automatically at start up?

Probably trying to make a virus. It's simple: Drag the batch file you want to start on startup into the startup folder in All Programs.


How do you make a batch file wait?

Use the 'pause' command. The pause command will make a "press any key to continue..." message. If you don't want this to show up, use "pause >nul". This will make the batch file wait without the pause message.


What happens if you type in echo off in a batch file?

It will make the file work. Without it nothing will happen. Hope this helped!