How to create a shutdown shortcut for your desktop
Have you ever wanted an icon on your desktop that you could use to shutdown you computer with?
It’s pretty simple, you just right click your desktop, choose New -> Shortcut and at the ”File location” screen you just type in the following command
%windir%\System32\Shutdown.exe -s -t 00 |
That is for running the shutdown application with the parameters “-s” for “this computer” and “-t 00″ for the time in seconds, which would be right away…
You could also use these commands:
For restarting the computer
%windir%\System32\Shutdown.exe -r -t 00 |
And To lock the computer
%windir%\System32\Rundll32.exe User32.dll,LockWorkStation |
