Saturday, August 14, 2010

Create One-Click Shutdown and Reboot Shortcuts

Create One-Click Shutdown and Reboot Shortcuts

Turning off or rebooting XP involves a several-step process: click the Start menu, choose Shut Down, and then select Shut Down or Restart. If you want, however, you can exit or reboot much more quickly, by creating a shortcut that enables one-click shutdowns. You can also use the shortcut to customize the shutdown or reboot for example, by displaying a specific message or automatically shutting down any programs that are running.

First, create a shortcut on your desktop by right-clicking the desktop, choosing New, and then choosing Shortcut. The Create Shortcut Wizard appears. In the box asking for the location of the shortcut, type shutdown. After you create the shortcut, double-clicking it will shut down your PC. ( you can also chose some crazy or funny icons ; just go to the properties > change icon > then select it )

But you can do much more with a shutdown shortcut than merely shut down your PC. You can add any combination of several switches to do extra duty, like this:

shutdown -r -t 01 -c "Rebooting your PC ( By paritosh.in ) "


Double-clicking that shortcut will reboot your PC after a one-second delay and display the message “Rebooting your PC.” The shutdown command includes a variety of switches you can use to customize it.

Switch What it does
-s Shutdown the pc
-l Logs off the current user.
-t ns Indicates the duration of delay, in seconds, before performing the action.
-c message text Displays a message in the System Shutdown window. A maximum of 127 characters can be used. The message must be enclosed in quotation marks.
-f Forces any running applications to shut down.
-r Reboots the PC.

So , you can use this technique as your desire requirement . I am creating some examples for needs .

1) For shutdown shutdown –s –t 01 –c “Bye bye “
2) For restart shutdown –r –t 01 –c “see you “
3) For switching off the current user shutdown –r –t 01 –c “created by www.paritosh.in

No comments:

Post a Comment