Please leave A Comment

Comments are a very important aspect of blogging. The ability to contribute to articles allows readers to participate in the topic in question. So please do comment so that i can improve. While commenting, tell me if
this blog was helpful
Setbacks?
Is the Information Wrong?

Welcome!

Hello Friend, thanks for visiting my blog... I am posting the hack tips and tricks that i find in my life along with some computer tricks that would make you famous... Hope you become a computer genius! If you want to request any posts, email me at computer_doctor@rocketmail.com

Enjoy!

Hope you found this article useful and if you know some more cool ways say so in the comments and i’ll be happy to update this article and of course mention you with a link to your website.


Wednesday, April 7, 2010

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 on 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 on it will shut down your PC.

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"
Double-clicking on 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. Table 1-3 lists all of them and describes their use.

I use this technique to create two shutdown shortcuts on my desktop—one for turning off my PC, and one for rebooting. Here are the ones I use:

shutdown -s -t 03 -c "See you later!"
shutdown -r -t 03 -c "You can't get rid of me that quickly!"
Table 1-3. Switches you can use with shutdown Switch
What it does

-s
Shuts down the PC.

-l
Logs off the current user.

-t nn
Indicates the duration of delay, in seconds, before performing the action.

-c "messagetext"
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.

No comments:

Post a Comment