a simple script for creating a shutdown shortcut on a Windows computer:
- Right-click on the desktop and select "New" > "Shortcut"
- In the "Type the location of the item" field, enter "shutdown /s /t 0" (without the quotes)
- Click "Next" and give the shortcut a name (e.g. "Shutdown")
- Click "Finish" to create the shortcut
- To use the shortcut, simply double-click it and the computer will shut down immediately.
Note that the "/s" option tells the computer to shut down, and the "/t 0" option sets the time delay to zero (i.e. the shutdown happens immediately). You can customize the time delay by changing the value after the "/t" option, in seconds. For example, "/t 60" would set a delay of 60 seconds before shutdown.
0 Comments