How To Create a Fake Computer Virus to shutdown Windows

Two ways to create a fake virus

First way

Step 1: Right click on the desktop and from the menu go to New -> Shortcut.
Step 2: A Window will pop up, simply type the following command.
              shutdown -s -t 60 -c " Funny fake virus!"


  • -t  represents time in seconds, in this case, its 60 seconds (1 minute). You can set to any value you want.
  • -c represents a comment. Here you can type any comment which will appear in the shutdown message. Don't forget to write your message between quotes as shown above.
Step 3: Click Next and then you will be asked to enter a shortcut name. Enter any shortcut name that you like and click OK and you will see a shortcut on your desktop.

How To Stop "System Shutdown Error" Message
Go to Start -> Run or use WindowKey+R.

Type the following command "shut down -a"
  • -a represents Abort. The shutdown message will disappear once this command is executed.



Second way

Step 1: Open Notepad. Put the following into your text file (without the bullets).

  •  @echo off
  • echo Message here.
  • shutdown -s -f -t 60 -c "type a message you want to appear here."
Step 2: Click the File, then Save As ...
Step 3: Change the .txt extension to .bat or .cmd.
Step 4: Change the ".txt bar" to "All Files". And Click Save.

No comments:

Post a Comment