Icons On Desktop

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • gsgurdeep
    New Member
    • Apr 2007
    • 94

    Icons On Desktop

    Problem:-

    Creating Windows ShutDown, Restart, LogOff, Run Dialog, Help etc Command Icons On Windows XP SP-2 Desktop.
  • bartonc
    Recognized Expert Expert
    • Sep 2006
    • 6478

    #2
    Originally posted by gsgurdeep
    Problem:-

    Creating Windows ShutDown, Restart, LogOff, Run Dialog, Help etc Command Icons On Windows XP SP-2 Desktop.
    Right click the desktop. Select New|Shortcut. There's a wizard that pops up.

    Comment

    • jlwynn
      New Member
      • Apr 2007
      • 7

      #3
      Originally posted by gsgurdeep
      Problem:-

      Creating Windows ShutDown, Restart, LogOff, Run Dialog, Help etc Command Icons On Windows XP SP-2 Desktop.
      right click on desktop select desktop tab and customize desktop button at the bottom and select what you want on the desktop
      then go back and right click on the start button and select properties and customize and select what you want
      if you want any shortcut select what you want and rightclick on it and select creat shortcut to wher ever you want

      Comment

      • gsgurdeep
        New Member
        • Apr 2007
        • 94

        #4
        Friends this idea is not working in my problem.
        please tell me any other solution useing "Registry Editer" etc.

        Comment

        • bartonc
          Recognized Expert Expert
          • Sep 2006
          • 6478

          #5
          Originally posted by gsgurdeep
          Friends this idea is not working in my problem.
          please tell me any other solution useing "Registry Editer" etc.
          regedit won't make commands.

          Any command that you can run from the command-line (cmd.exe) can be put into a shortcut (icon) on the desktop.

          What have you tried to do with this idea?

          Comment

          • RevBooter
            New Member
            • Mar 2007
            • 69

            #6
            why would you even want to do this? its not like the commands you wish to publish on the desktop are hidden deep in the root somewhere?

            Comment

            • Robbie
              New Member
              • Mar 2007
              • 180

              #7
              Originally posted by gsgurdeep
              Problem:-

              Creating Windows ShutDown, Restart, LogOff, Run Dialog, Help etc Command Icons On Windows XP SP-2 Desktop.
              Go to Start -> All Programs -> Accessories -> Command Prompt.
              Type
              Code:
              shutdown -h
              Shutdown is a program which can shutdown, restart, log off and display messages.

              Surely can you not create a .BAT (batch) file on the desktop with the commands to run 'shutdown -r' for example, to restart? Then make similar files for the other things you want to do by icons?

              Of course, you can make shortcuts to these batch files too.

              Another way is to find the shutdown.exe program file which is in c:\windows\syst em32, then make a shortcut to it on the desktop. Right-click the icon (of the new shortcut) -> Properties. Where it says "Target:" type this:
              Code:
              C:\WINDOWS\system32\shutdown.exe -r
              To restart.
              That's running shutdown.exe with the parameter to restart the comp. (I have used this and it definitely works.)
              Excuse bad grammar at places... have been too long without sleep. >_<
              Last edited by Robbie; Apr 12 '07, 10:13 PM. Reason: made 'right-click the icon' clearer, what icon exactly

              Comment

              Working...