R>Click Context Menus

Status
Not open for further replies.

sunsider

In Runtime
Messages
324
Want to add a little functionality to the context menu when you right click on the my computer icon? Try these registry edits .. And as always, take care in editing the registry, make backups if you are uneasy about it.

Add Control Panel to right click of MY Computer

[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\Control Panel\command]
@="rundll32.exe shell32.dll,Control_RunDLL"

Add the Add/Remove to right click of MY Computer

[HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\Add/Remove\command]
@="control appwiz.cpl"

Adds Drive Cleanup to right click of MY Computer

[HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\Drive Cleanup\command]
@="cleanmgr"

Adds LogOff to right click of MY Computer.

[HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\[LogOff]\command]
@="shutdown -l -f -t 5"

Adds Reboot to right click of MY Computer.

[HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\[Reboot]\command]
@="shutdown -r -f -t 5"

Adds Shutdown to right click of MY Computer.

[HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\[Shutdown]\command]
@="shutdown -s -f -t 5"
 
Status
Not open for further replies.
Back
Top Bottom