Skip to content

Instantly share code, notes, and snippets.

@dufferzafar
Created November 27, 2013 10:28
Show Gist options
  • Save dufferzafar/7673597 to your computer and use it in GitHub Desktop.
Save dufferzafar/7673597 to your computer and use it in GitHub Desktop.
Add Shutdown Timers to My Computer's Context Menu
Windows Registry Editor Version 5.00
; If you change your mind at any moment. Just run "shutdown -a"
;Right-click My Computer To Shutdown In (10m 20m 30m 40m 50m 60m 2hrs 3hrs 4hrs 5hrs 6hrs)
[HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\Shutdown In 010 Minutes]
[HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\Shutdown In 010 Minutes\command]
@="shutdown -s -f -t 600"
[HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\Shutdown In 020 Minutes]
[HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\Shutdown In 020 Minutes\command]
@="shutdown -s -f -t 1200"
[HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\Shutdown In 030 Minutes]
[HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\Shutdown In 030 Minutes\command]
@="shutdown -s -f -t 1800"
[HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\Shutdown In 040 Minutes]
[HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\Shutdown In 040 Minutes\command]
@="shutdown -s -f -t 2400"
[HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\Shutdown In 050 Minutes]
[HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\Shutdown In 050 Minutes\command]
@="shutdown -s -f -t 3000"
[HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\Shutdown In 060 Minutes]
[HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\Shutdown In 060 Minutes\command]
@="shutdown -s -f -t 3600"
[HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\Shutdown In 120 Minutes]
[HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\Shutdown In 120 Minutes\command]
@="shutdown -s -f -t 7200"
[HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\Shutdown In 180 Minutes]
[HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\Shutdown In 180 Minutes\command]
@="shutdown -s -f -t 10800"
[HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\Shutdown In 240 Minutes]
[HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\Shutdown In 240 Minutes\command]
@="shutdown -s -f -t 14400"
[HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\Shutdown In 300 Minutes]
[HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\Shutdown In 300 Minutes\command]
@="shutdown -s -f -t 18000"
[HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\Shutdown In 360 Minutes]
[HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\Shutdown In 360 Minutes\command]
@="shutdown -s -f -t 21600"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment