Advertisement
lewisje

Win7RegTweak

Dec 15th, 2011
179
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 46.53 KB | None | 0 0
  1. Windows Registry Editor Version 5.00
  2.  
  3. ;---------------------------------------------
  4. ;eXPerience Windows 7 Registry Tweaks (C) 2011
  5. ;---------------------------------------------
  6.  
  7. ;###############################################################################################
  8. ;# #
  9. ;# APPEARANCE #
  10. ;# #
  11. ;###############################################################################################
  12.  
  13. ;---------------------------------------------------------------------------------------------------------------------------
  14. ; Show Windows classic folders (File | Edit | View | Tools | Help)
  15.  
  16. [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced]
  17. "AlwaysShowMenus"=dword:00000001
  18.  
  19.  
  20. ;---------------------------------------------------------------------------------------------------------------------------
  21. ; Disable grouping of system tray icons
  22.  
  23. [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced]
  24. "TaskbarGlomming"=dword:00000000
  25.  
  26. [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer]
  27. "EnableAutoTray"=dword:00000000
  28.  
  29.  
  30. ;---------------------------------------------------------------------------------------------------------------------------
  31. ; Remove the "Details Pane" from the bottom of Explorer windows
  32.  
  33. [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Modules\GlobalSettings\Sizer]
  34. "PreviewPaneSizer"=hex:51,00,00,00,00,00,00,00,00,00,00,00
  35.  
  36.  
  37. ;---------------------------------------------------------------------------------------------------------------------------
  38. ; Unlock the taskbar
  39.  
  40. [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced]
  41. "TaskbarSizeMove"=dword:00000001
  42.  
  43.  
  44. ;---------------------------------------------------------------------------------------------------------------------------
  45. ; Show file extensions
  46.  
  47. [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced]
  48. "HideFileExt"=dword:00000000
  49.  
  50.  
  51. ;---------------------------------------------------------------------------------------------------------------------------
  52. ; Show detailed Device settings in device manager
  53.  
  54. [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment]
  55. "DEVMGR_SHOW_DETAILS"="1"
  56.  
  57. [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\HideDesktopIcons\NewStartPanel]
  58. "{20D04FE0-3AEA-1069-A2D8-08002B30309D}"=dword:00000000
  59.  
  60.  
  61. ;---------------------------------------------------------------------------------------------------------------------------
  62. ; Show hidden files and folders (not hidden system files and folders)
  63.  
  64. [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced]
  65. "Hidden"=dword:00000001
  66.  
  67.  
  68. ;---------------------------------------------------------------------------------------------------------------------------
  69. ; Show all hidden devices in device manager
  70.  
  71. [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment]
  72. "DEVMGR_SHOW_NONPRESENT_DEVICES"=1
  73.  
  74.  
  75. ;---------------------------------------------------------------------------------------------------------------------------
  76. ; Remove " - Shortcut" Suffix from shortcuts
  77.  
  78. [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer]
  79. "link"=hex:00,00,00,00
  80.  
  81.  
  82. ;---------------------------------------------------------------------------------------------------------------------------
  83. ; Cleartype
  84.  
  85. [HKEY_CURRENT_USER\Control Panel\Desktop]
  86. "FontSmoothing"="2"
  87. "FontSmoothingType"=dword:00000002
  88.  
  89.  
  90. ;---------------------------------------------------------------------------------------------------------------------------
  91. ; Set Control Panel on Classic View and small icons
  92.  
  93. [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\ControlPanel]
  94. "AllItemsIconView"=dword:00000001
  95. "StartupPage"=dword:00000001
  96.  
  97.  
  98. ;---------------------------------------------------------------------------------------------------------------------------
  99. ; Use Small Icons
  100.  
  101. [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\SmallIcons]
  102. "SmallIcons"="yes"
  103.  
  104. ;---------------------------------------------------------------------------------------------------------------------------
  105. ; Display drive letters
  106. ; 0 = windows default
  107. ; 1 = only network drive's letters shown.
  108. ; 2 = no drive letters shown
  109. ; 4 = all drive letters shown
  110.  
  111. [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer]
  112. "ShowDriveLettersFirst"=dword:00000004
  113.  
  114.  
  115. ;---------------------------------------------------------------------------------------------------------------------------
  116. ; Cache more Icons
  117.  
  118. [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer]
  119. "Max Cached Icons"="4096"
  120.  
  121.  
  122. ;---------------------------------------------------------------------------------------------------------------------------
  123. ; Show the full path in minimized explorer windows
  124.  
  125. [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\CabinetState]
  126. "FullPath"=dword:00000001
  127.  
  128.  
  129. ;---------------------------------------------------------------------------------------------------------------------------
  130. ; Make the text white in command windows
  131.  
  132. [HKEY_CURRENT_USER\Software\Microsoft\Command Processor]
  133. "DefaultColor"=dword:0000000F
  134.  
  135.  
  136. ;---------------------------------------------------------------------------------------------------------------------------
  137. ; Disable window animations on minimize/maximize
  138.  
  139. [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\DWM]
  140. "Animations"=dword:00000000
  141.  
  142.  
  143. ;###############################################################################################
  144. ;# #
  145. ;# CONTEXT MENU #
  146. ;# #
  147. ;###############################################################################################
  148.  
  149. ;---------------------------------------------------------------------------------------------------------------------------
  150. ; Add "Take Ownership" to right click of all files and folders
  151.  
  152. [HKEY_CLASSES_ROOT\*\shell\runas]
  153. @="Take Ownership"
  154. "NoWorkingDirectory"=""
  155.  
  156. [HKEY_CLASSES_ROOT\*\shell\runas\command]
  157. @="cmd.exe /c takeown /f \"%1\" && icacls \"%1\" /grant administrators:F"
  158. "IsolatedCommand"="cmd.exe /c takeown /f \"%1\" && icacls \"%1\" /grant administrators:F"
  159.  
  160. [HKEY_CLASSES_ROOT\Directory\shell\runas]
  161. @="Take Ownership"
  162. "NoWorkingDirectory"=""
  163.  
  164. [HKEY_CLASSES_ROOT\Directory\shell\runas\command]
  165. @="cmd.exe /c takeown /f \"%1\" /r /d y && icacls \"%1\" /grant administrators:F /t"
  166. "IsolatedCommand"="cmd.exe /c takeown /f \"%1\" /r /d y && icacls \"%1\" /grant administrators:F /t"
  167.  
  168.  
  169. ;---------------------------------------------------------------------------------------------------------------------------
  170. ; Show Encryption Commands on the Shortcut Menu
  171.  
  172. [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced]
  173. "EncryptionContextMenu"=dword:00000001
  174.  
  175.  
  176. ;---------------------------------------------------------------------------------------------------------------------------
  177. ; Disable file association web-service - Bypassing "Browse web for program" to open unknown extension.
  178. ; "Open With..." becomes default
  179.  
  180. [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System]
  181. "NoInternetOpenWith"=dword:00000001
  182.  
  183.  
  184. ;---------------------------------------------------------------------------------------------------------------------------
  185. ; Add "Command Prompt" when you right click a folder
  186.  
  187. [HKEY_CLASSES_ROOT\Folder\shell\Command Prompt]
  188.  
  189. [HKEY_CLASSES_ROOT\Folder\shell\Command Prompt\command]
  190. @="cmd.exe /k pushd %L"
  191.  
  192. ;---------------------------------------------------------------------------------------------------------------------------
  193. ; Add 'Copy to Folder' and 'Move to Folder' to right click
  194.  
  195. [HKEY_CLASSES_ROOT\AllFilesystemObjects\shellex\ContextMenuHandlers\{C2FBB630-2971-11D1-A18C-00C04FD75D13}]
  196.  
  197. [HKEY_CLASSES_ROOT\AllFilesystemObjects\shellex\ContextMenuHandlers\{C2FBB631-2971-11D1-A18C-00C04FD75D13}]
  198.  
  199.  
  200. ;---------------------------------------------------------------------------------------------------------------------------
  201. ; Underline letters on right click (EG "R" for Properties, "D" for Delete)
  202.  
  203. [HKEY_CURRENT_USER\Control Panel\Desktop]
  204. "UserPreferencesMask"=hex:b0,12,01,80
  205.  
  206.  
  207. ;---------------------------------------------------------------------------------------------------------------------------
  208. ; Add "Device Manager" to the right click menu of "Computer"
  209.  
  210. [HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\Devices]
  211. @=hex(2):44,00,65,00,76,00,69,00,63,00,65,00,20,00,4d,00,61,00,6e,00,61,00,67,\
  212. 00,65,00,72,00,00,00
  213. "SuppressionPolicy"=dword:4000003c
  214.  
  215. [HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\Devices\command]
  216. @=hex(2):25,00,77,00,69,00,6e,00,64,00,69,00,72,00,25,00,5c,00,73,00,79,00,73,\
  217. 00,74,00,65,00,6d,00,33,00,32,00,5c,00,6d,00,6d,00,63,00,2e,00,65,00,78,00,\
  218. 65,00,20,00,2f,00,73,00,20,00,25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,\
  219. 00,6f,00,6f,00,74,00,25,00,5c,00,73,00,79,00,73,00,74,00,65,00,6d,00,33,00,\
  220. 32,00,5c,00,64,00,65,00,76,00,6d,00,67,00,6d,00,74,00,2e,00,6d,00,73,00,63,\
  221. 00,20,00,2f,00,73,00,00,00
  222.  
  223.  
  224. ;---------------------------------------------------------------------------------------------------------------------------
  225. ; Add "Services" to the right click menu of "Computer"
  226.  
  227. [HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\services]
  228. @=hex(2):53,00,65,00,72,00,76,00,69,00,63,00,65,00,73,00,00,00
  229. "SuppressionPolicy"=dword:4000003c
  230. [HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\services\command]
  231. @=hex(2):25,00,77,00,69,00,6e,00,64,00,69,00,72,00,25,00,5c,00,73,00,79,00,73, 00,74,00,65,00,6d,00,33,00,32,00,5c,00,6d,00,6d,00,63,00,2e,00,65,00,78,00, 65,00,20,00,2f,00,73,00,20,00,25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52, 00,6f,00,6f,00,74,00,25,00,5c,00,73,00,79,00,73,00,74,00,65,00,6d,00,33,00, 32,00,5c,00,73,00,65,00,72,00,76,00,69,00,63,00,65,00,73,00,2e,00,6d,00,73, 00,63,00,20,00,2f,00,73,00,00,00
  232.  
  233.  
  234. ;---------------------------------------------------------------------------------------------------------------------------
  235. ; Add "Edit Registry" to the right click menu of "Computer"
  236.  
  237. [HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\Edit Registry]
  238. [HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\Edit Registry\command]
  239. @="regedit.exe"
  240.  
  241.  
  242. ;---------------------------------------------------------------------------------------------------------------------------
  243. ; Add "MSCONFIG" to the right click menu of "Computer"
  244.  
  245. [HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\msconfig]
  246. @="MSCONFIG"
  247. [HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\msconfig\command]
  248. @="msconfig.exe"
  249.  
  250.  
  251. ;---------------------------------------------------------------------------------------------------------------------------
  252. ; Add "Advanced System Properties" to the right click menu of "Computer"
  253.  
  254. [HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\AdvSysProp]
  255. @=hex(2):41,00,64,00,76,00,61,00,6e,00,63,00,65,00,64,00,20,00,53,00,79,00,73,\
  256. 00,74,00,65,00,6d,00,20,00,50,00,72,00,6f,00,70,00,65,00,72,00,74,00,69,00,\
  257. 65,00,73,00,00,00
  258.  
  259. [HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\AdvSysProp\command]
  260. @=hex(2):63,00,6f,00,6e,00,74,00,72,00,6f,00,6c,00,20,00,73,00,79,00,73,00,64,\
  261. 00,6d,00,2e,00,63,00,70,00,6c,00,00,00
  262.  
  263.  
  264. ;###############################################################################################
  265. ;# #
  266. ;# GENERAL SETTINGS #
  267. ;# #
  268. ;###############################################################################################
  269.  
  270. ;---------------------------------------------------------------------------------------------------------------------------
  271. ; If an Administrator attempts a protected action - Silently Succeed
  272.  
  273. [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System]
  274. "ConsentPromptBehaviorAdmin"=dword:00000000
  275.  
  276.  
  277. ;----------------------------------------------------------------------------------------------------------------------------
  278. ; Add Notepad as a Right Click Item
  279.  
  280. [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Directory\shell\Notepad]
  281. @="Notepad"
  282.  
  283.  
  284. ;----------------------------------------------------------------------------------------------------------------------------
  285. ; Disable Tracking of Broken Shortcut Links
  286.  
  287. [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer]
  288. "NoResolveTrack"=dword:00000001
  289.  
  290.  
  291. ;----------------------------------------------------------------------------------------------------------------------------
  292. ; Windows will tell you exactly what it is doing when it is shutting down or is booting
  293.  
  294. [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\policies\system]
  295. "verbosestatus"=dword:00000001
  296.  
  297.  
  298. ;----------------------------------------------------------------------------------------------------------------------------
  299. ; Search All File Types
  300.  
  301. [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\ContentIndex]
  302. "FilterFilesWithUnknownExtensions"=dword:00000001
  303.  
  304.  
  305. ;----------------------------------------------------------------------------------------------------------------------------
  306. ; Make the Windows registration with Microsoft unnecessary
  307.  
  308. [HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion]
  309. "RegDone"="1"
  310.  
  311.  
  312. ;----------------------------------------------------------------------------------------------------------------------------
  313. ; Disable the Windows Mail splash screen
  314.  
  315. [HKEY_CURRENT_USER\Software\Microsoft\Windows Mail]
  316. "NoSplash"=dword:00000001
  317.  
  318.  
  319. ;###############################################################################################
  320. ;# #
  321. ;# IE8 #
  322. ;# #
  323. ;###############################################################################################
  324.  
  325. ;---------------------------------------------------------------------------------------------------------------------------
  326. ; IE8 - Unlock IE8 toolbars
  327.  
  328. [HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Toolbar]
  329. "Locked"=dword:00000000
  330.  
  331.  
  332. ;---------------------------------------------------------------------------------------------------------------------------
  333. ; IE8 - Do not notify when downloads complete
  334.  
  335. [HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main]
  336. "NotifyDownloadComplete"="no"
  337.  
  338.  
  339. ;---------------------------------------------------------------------------------------------------------------------------
  340. ; IE8 - Gets rid of annoying popup for running files you download from internet
  341.  
  342. [HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Download]
  343. "CheckExeSignatures"="no"
  344. "RunInvalidSignatures"=dword:00000001
  345.  
  346.  
  347. ;---------------------------------------------------------------------------------------------------------------------------
  348. ; IE8 - Add Government and Military to auto url searches
  349.  
  350. [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\Main\UrlTemplate]
  351. "5"="www.%s.gov"
  352. "6"="www.%s.mil"
  353.  
  354. ;---------------------------------------------------------------------------------------------------------------------------
  355. ; IE8 - Set Google.com as homepage
  356.  
  357. [HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main]
  358. "Start Page"="http://www.google.com/"
  359.  
  360.  
  361. ;---------------------------------------------------------------------------------------------------------------------------
  362. ; IE8 - Save session on exit
  363.  
  364. [HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main]
  365. "Save_Session_History_On_Exit"="yes"
  366.  
  367.  
  368. ;---------------------------------------------------------------------------------------------------------------------------
  369. ; IE8 - Disable 'Send information to the Internet' prompt
  370.  
  371. [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings\Zones\3]
  372. "1601"=dword:00000000
  373.  
  374.  
  375. ;---------------------------------------------------------------------------------------------------------------------------
  376. ; IE8 - Disable Internet Explorer Cookie 'Privacy Icon' prompt
  377.  
  378. [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings]
  379. "PrivDiscUiShown"=dword:00000001
  380.  
  381.  
  382. ;---------------------------------------------------------------------------------------------------------------------------
  383. ; IE8 - Disable Internet Explorer 'Auto-Complete' prompt
  384.  
  385. [HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\IntelliForms]
  386. "AskUser"=dword:00000000
  387.  
  388.  
  389. ;---------------------------------------------------------------------------------------------------------------------------
  390. ; IE8 - Increase Simultaneous Downloads
  391.  
  392. [HKEY_USERS\.DEFAULT\Software\Microsoft\Windows\CurrentVersion\Internet Settings]
  393. "MaxConnectionsPerServer"=dword:00000014
  394. "MaxConnectionsPer1_0Server"=dword:00000014
  395.  
  396. [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings]
  397. "MaxConnectionsPerServer"=dword:00000014
  398. "MaxConnectionsPer1_0Server"=dword:00000014
  399.  
  400.  
  401. ;---------------------------------------------------------------------------------------------------------------------------
  402. ; IE8 - Disable script debugging in applications using IE
  403.  
  404. [HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main]
  405. "DisableScriptDebuggerIE"="yes"
  406.  
  407.  
  408. ;---------------------------------------------------------------------------------------------------------------------------
  409. ; IE8 - Do not display a notification about every script error
  410.  
  411. [HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main]
  412. "Error Dlg Displayed On Every Error"="no"
  413.  
  414.  
  415. ;---------------------------------------------------------------------------------------------------------------------------
  416. ; IE8 - Enable page transitions
  417.  
  418. [HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main]
  419. "Page_Transitions"=dword:00000001
  420.  
  421.  
  422. ;---------------------------------------------------------------------------------------------------------------------------
  423. ; IE8 - Enable personalized favourites menu
  424.  
  425. [HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main]
  426. "FavIntelliMenus"="NO"
  427.  
  428.  
  429. ;---------------------------------------------------------------------------------------------------------------------------
  430. ; IE8 - Enable visual styles on buttons and controls in web pages
  431.  
  432. [HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main]
  433. "UseThemes"=dword:00000001
  434.  
  435.  
  436. ;---------------------------------------------------------------------------------------------------------------------------
  437. ; IE8 - Show friendly HTTP error messages
  438.  
  439. [HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main]
  440. "Friendly http errors"="yes"
  441.  
  442.  
  443. ;---------------------------------------------------------------------------------------------------------------------------
  444. ; IE8 - Use Smooth Scrolling
  445.  
  446. [HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main]
  447. "SmoothScroll"=dword:00000001
  448.  
  449.  
  450. ;---------------------------------------------------------------------------------------------------------------------------
  451. ; IE8 - Enable automatic image resizing
  452.  
  453. [HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main]
  454. "Enable AutoImageResize"="yes"
  455.  
  456.  
  457. ;---------------------------------------------------------------------------------------------------------------------------
  458. ; IE8 - Show image download placeholders
  459.  
  460. [HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main]
  461. "Show image placeholders"=dword:00000001
  462.  
  463.  
  464. ;---------------------------------------------------------------------------------------------------------------------------
  465. ; IE8 - Use http 1.1 through proxy settings
  466.  
  467. [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings]
  468. "ProxyHttp1.1"=dword:00000000
  469.  
  470.  
  471. ;---------------------------------------------------------------------------------------------------------------------------
  472. ; IE8 - Warn about invalid site certificates
  473.  
  474. [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings]
  475. "WarnonBadCertRecving"=dword:00000001
  476.  
  477.  
  478. ;---------------------------------------------------------------------------------------------------------------------------
  479. ; IE8 - Disable FTP folder view (for faster browsing)
  480.  
  481. [HKEY_CURRENT_USER\Software\Microsoft\Ftp]
  482. "Use Web Based FTP"="yes"
  483.  
  484.  
  485. ;---------------------------------------------------------------------------------------------------------------------------
  486. ; IE8 - Show friendly/Full URL
  487.  
  488. [HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main]
  489. "Show_FullURL"="yes"
  490.  
  491.  
  492. ;---------------------------------------------------------------------------------------------------------------------------
  493. ; IE8 - Smart image dithering
  494.  
  495. [HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer]
  496. "SmartDithering"=dword:00000001
  497.  
  498.  
  499. ;---------------------------------------------------------------------------------------------------------------------------
  500. ; IE8 - Disallow spying by web-sites
  501.  
  502. [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings\ZoneMap\ProtocolDefaults]
  503. "about"=dword:00000004
  504.  
  505.  
  506. ;---------------------------------------------------------------------------------------------------------------------------
  507. ; IE8 - IE toolbar layout (small icons, no text)
  508.  
  509. [HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Toolbar]
  510. "ShowDiscussionButton"="no"
  511.  
  512.  
  513. ;###############################################################################################
  514. ;# #
  515. ;# NETWORK #
  516. ;# #
  517. ;###############################################################################################
  518.  
  519. ;---------------------------------------------------------------------------------------------------------------------------
  520. ; Use SSL 2.0 (Checked) + SSL 3.0 (Checked) + TSL 1.0 (unchecked)
  521.  
  522. [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings]
  523. "SecureProtocols"=dword:00000028
  524.  
  525.  
  526. ;---------------------------------------------------------------------------------------------------------------------------
  527. ; Do not save encrypted pages to disk
  528.  
  529. [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings]
  530. "DisableCachingOfSSLPages"=dword:00000001
  531.  
  532.  
  533. ;---------------------------------------------------------------------------------------------------------------------------
  534. ; Check for server certificate revocation
  535.  
  536. [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings]
  537. "CertificateRevocation"=dword:00000000
  538.  
  539.  
  540. ;---------------------------------------------------------------------------------------------------------------------------
  541. ; Stop caching negative responses
  542.  
  543. [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Dnscache\Parameters]
  544. "MaxNegativeCacheTtl "=dword:00000000
  545.  
  546.  
  547. ;---------------------------------------------------------------------------------------------------------------------------
  548. ; Force keep positive entries in DNS Cache for only 4 hours instead of the default 24 hours
  549.  
  550. [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Dnscache\Parameters]
  551. "MaxCacheTtl "=dword:00003840
  552.  
  553.  
  554. ;---------------------------------------------------------------------------------------------------------------------------
  555. ; Increase Network Throughput
  556.  
  557. [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\lanmanworkstation\parameters]
  558. "MaxCmds"=dword:00000064
  559. "MaxThreads"=dword:00000064
  560. "MaxCollectionCount"=dword:00000064
  561.  
  562. [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\AFD\Parameters]
  563. "BufferMultiplier"=dword:00000400
  564.  
  565.  
  566. ;---------------------------------------------------------------------------------------------------------------------------
  567. ; Increase RPC Packet Size
  568.  
  569. [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Rpc]
  570. "MaxRpcSize"=dword:00100000
  571.  
  572.  
  573. ;---------------------------------------------------------------------------------------------------------------------------
  574. ; Mount net-drives first, when they are needed
  575.  
  576. [HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\NetworkProvider]
  577. "RestoreConnection"=dword:00000000
  578.  
  579.  
  580. ;###############################################################################################
  581. ;# #
  582. ;# SECURITY #
  583. ;# #
  584. ;###############################################################################################
  585.  
  586. ;---------------------------------------------------------------------------------------------------------------------------
  587. ; Disable Default Hidden Shares - This keeps Windows from creating the Admin$, C$, etc. shares
  588. ; (which are security holes) automatically on start-up.
  589.  
  590. [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\LanmanServer\parameters]
  591. "AutoShareWks"=dword:00000000
  592.  
  593. [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\LanmanServer\Parameters]
  594. "AutoShareServer"=dword:00000000
  595.  
  596.  
  597. ;###############################################################################################
  598. ;# #
  599. ;# DISABLED SERVICES FOR SPEED AND SECURITY #
  600. ;# #
  601. ;###############################################################################################
  602.  
  603. ; 00000002 = Automatic Startup (Service starts with Windows)
  604. ;
  605. ; 00000003 = Manual Startup (Service only starts when called upon by a program requiring the service)
  606. ;
  607. ; 00000004 = Disabled (Service never starts, unless changed to Manual or Automatic)
  608.  
  609. ;---------------------------------------------------------------------------------------------------------------------------
  610. ; Remote Registry
  611.  
  612. [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\RemoteRegistry]
  613. "Start"=dword:00000004
  614.  
  615.  
  616. ;---------------------------------------------------------------------------------------------------------------------------
  617. ; Windows Error Reporting Service...
  618.  
  619. [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\WerSvc]
  620. "Start"=dword:00000004
  621.  
  622.  
  623. ;---------------------------------------------------------------------------------------------------------------------------
  624. ; Windows Search
  625.  
  626. [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\WSearch]
  627. "Start"=dword:00000004
  628.  
  629.  
  630. ;###############################################################################################
  631. ;# #
  632. ;# START MENU #
  633. ;# #
  634. ;###############################################################################################
  635.  
  636. ;---------------------------------------------------------------------------------------------------------------------------
  637. ; Remove 'Recent Items' from Start Menu
  638.  
  639. [-HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\RecentDocs]
  640.  
  641. [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced]
  642. "Start_ShowRecentDocs"=dword:00000000
  643. "Start_TrackDocs"=dword:00000000
  644.  
  645. [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\explorer\RecentDocs]
  646.  
  647. [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Modules\GlobalSettings\Sizer]
  648. "PageSpaceControlSizer"=hex:d0,00,00,00,00,00,00,00,00,00,00,00
  649.  
  650. ;---------------------------------------------------------------------------------------------------------------------------
  651. ; Do not 'Use large icons' on Start Menu
  652.  
  653. [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced]
  654. "Start_LargeMFUIcons"=dword:00000000
  655.  
  656.  
  657. ;---------------------------------------------------------------------------------------------------------------------------
  658. ; Do not show 'Search the Internet' on Start Menu
  659.  
  660. [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced]
  661. "Start_SearchInternet"=dword:00000000
  662.  
  663.  
  664. ;---------------------------------------------------------------------------------------------------------------------------
  665. ; Do not show 'Search' on Start Menu
  666.  
  667. [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced]
  668. "Start_ShowSearch"=dword:00000000
  669.  
  670.  
  671. ;---------------------------------------------------------------------------------------------------------------------------
  672. ; Do not show 'Default Programs' on Start Menu
  673.  
  674. [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced]
  675. "Start_ShowSetProgramAccessAndDefaults"=dword:00000000
  676.  
  677.  
  678. ;---------------------------------------------------------------------------------------------------------------------------
  679. ; Do not show 'Games' on Start Menu
  680.  
  681. [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced]
  682. "Start_ShowMyGames"=dword:00000000
  683.  
  684.  
  685. ;---------------------------------------------------------------------------------------------------------------------------
  686. ; Do not show 'Help and Support' on Start Menu
  687.  
  688. [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced]
  689. "Start_ShowHelp"=dword:00000000
  690.  
  691.  
  692. ;---------------------------------------------------------------------------------------------------------------------------
  693. ; Do not show "My Music" on Start Menu
  694.  
  695. [HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer]
  696. "Start_ShowMyMusic"=dword:00000000
  697.  
  698. [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced]
  699. "Start_ShowMyMusic"=dword:00000000
  700.  
  701.  
  702. ;---------------------------------------------------------------------------------------------------------------------------
  703. ; Do not show "Devices and Printers" on Start Menu
  704.  
  705. [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced]
  706. "Start_AdminToolsTemp"=dword:00000000
  707. "Start_ShowPrinters"=dword:00000000
  708.  
  709.  
  710. ;---------------------------------------------------------------------------------------------------------------------------
  711. ; Show "Administrative Tools" on the Start Menu
  712.  
  713. [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced]
  714. "Start_AdminToolsRoot"=dword:00000001
  715.  
  716.  
  717. ;###############################################################################################
  718. ;# #
  719. ;# SYSTEM #
  720. ;# #
  721. ;###############################################################################################
  722.  
  723. ;---------------------------------------------------------------------------------------------------------------------------
  724. ; Typing Long File Names In DOS
  725.  
  726. [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Command Processor]
  727. "CompletionChar"=dword:00000009
  728.  
  729.  
  730. ;---------------------------------------------------------------------------------------------------------------------------
  731. ; Turn off system beeps
  732.  
  733. [HKEY_CURRENT_USER\Control Panel\Sound]
  734. "beep"="no"
  735.  
  736.  
  737. ;---------------------------------------------------------------------------------------------------------------------------
  738. ; Remove new BMP file
  739.  
  740. [-HKEY_CLASSES_ROOT\.bmp\ShellNew]
  741.  
  742.  
  743. ;---------------------------------------------------------------------------------------------------------------------------
  744. ; This adds an option in the right-click menu to open any folder on your computer in a new window
  745.  
  746. [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Directory\shell\openNew]
  747. @="Open In New &Window"
  748.  
  749. [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Directory\shell\openNew\Command]
  750. @="explorer %1"
  751.  
  752.  
  753. ;---------------------------------------------------------------------------------------------------------------------------
  754. ; Disable screensavers
  755.  
  756. [HKEY_CURRENT_USER\Control Panel\Desktop]
  757. "ScreenSaveActive"="0"
  758. [HKEY_CURRENT_USER\Control Panel\Desktop]
  759. "SCRNSAVE.EXE"=""
  760. [HKEY_USERS\.DEFAULT\Control Panel\Desktop]
  761. "ScreenSaveActive"="0"
  762. [HKEY_USERS\.DEFAULT\Control Panel\Desktop]
  763. "SCRNSAVE.EXE"=""
  764.  
  765. ;---------------------------------------------------------------------------------------------------------------------------
  766. ; Disable kernel paging
  767. ; Optimize Core System Performance
  768.  
  769. [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management]
  770. "DisablePagingExecutive"=dword:00000001
  771.  
  772.  
  773. ;---------------------------------------------------------------------------------------------------------------------------
  774. ; Change the Clock to 24 Hour time format
  775.  
  776. [HKEY_CURRENT_USER\Control Panel\International]
  777. "iTime"="1"
  778. "iTLZero"="0"
  779. "sTime"=":"
  780. "sTimeFormat"="H:mm:ss"
  781. "iTimePrefix"="0"
  782.  
  783.  
  784. ;---------------------------------------------------------------------------------------------------------------------------
  785. ; Allow renaming and removing of Recycle Bin
  786.  
  787. [HKEY_CLASSES_ROOT\CLSID\{645FF040-5081-101B-9F08-00AA002F954E}\ShellFolder]
  788. "Attributes"=hex:70,10,00,20
  789. "CallForAttributes"=dword:00000040
  790.  
  791.  
  792. ;---------------------------------------------------------------------------------------------------------------------------
  793. ; All items have an "edit.." on right-click sending to notepad
  794.  
  795. [HKEY_CLASSES_ROOT\*\shell\open]
  796. @="Edit.."
  797. [HKEY_CLASSES_ROOT\*\shell\open\command]
  798. @="notepad.exe %1"
  799.  
  800.  
  801. ;---------------------------------------------------------------------------------------------------------------------------
  802. ; Add register / unregister to the context menu for .ocx files
  803.  
  804. [HKEY_CLASSES_ROOT\.ocx]
  805. @="ocxfile"
  806. [HKEY_CLASSES_ROOT\ocxfile]
  807. @="OCX"
  808. [HKEY_CLASSES_ROOT\ocxfile\Shell\Register\command]
  809. @="regsvr32.exe \"%1\""
  810. [HKEY_CLASSES_ROOT\ocxfile\Shell\UnRegister\command]
  811. @="regsvr32.exe /u \"%1\""
  812.  
  813.  
  814. ;---------------------------------------------------------------------------------------------------------------------------
  815. ; Add register / unregister to the context menu for .dll files
  816.  
  817. [HKEY_CLASSES_ROOT\.dll]
  818. "Content Type"="application/x-msdownload"
  819. @="dllfile"
  820. [HKEY_CLASSES_ROOT\dllfile]
  821. @="Application Extension"
  822. [HKEY_CLASSES_ROOT\dllfile\Shell\Register\command]
  823. @="regsvr32.exe \"%1\""
  824. [HKEY_CLASSES_ROOT\dllfile\Shell\UnRegister\command]
  825. @="regsvr32.exe /u \"%1\""
  826.  
  827.  
  828. ;---------------------------------------------------------------------------------------------------------------------------
  829. ; Opens 16-bit apps in a separate memory space
  830. ; This increases stability when dealing with 16-bit apps.
  831. ; (No = disabled, Yes = enabled)
  832.  
  833. [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\WOW]
  834. "DefaultSeparateVDM"="Yes"
  835.  
  836.  
  837. ;---------------------------------------------------------------------------------------------------------------------------
  838. ; Notepad saves window position
  839.  
  840. [HKEY_CURRENT_USER\Software\Microsoft\Notepad]
  841. "fSaveWindowPositions"=dword:00000001
  842.  
  843.  
  844. ;---------------------------------------------------------------------------------------------------------------------------
  845. ; Makes a right click option for unknown files (Open with notepad)
  846.  
  847. [HKEY_CLASSES_ROOT\*\shell]
  848. @="\"notepad.exe %1\""
  849. [HKEY_CLASSES_ROOT\*\shell\open]
  850. @="Open &With Notepad"
  851. [HKEY_CLASSES_ROOT\*\shell\open\command]
  852. @="notepad.exe %1"
  853.  
  854.  
  855. ;---------------------------------------------------------------------------------------------------------------------------
  856. ; Add new CMD file to right click > New
  857.  
  858. [HKEY_CLASSES_ROOT\.cmd\ShellNew]
  859. "NullFile"=""
  860.  
  861.  
  862. ;---------------------------------------------------------------------------------------------------------------------------
  863. ; Disable 'Windows Defender' startup
  864.  
  865. [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run]
  866. "Windows Defender"=-
  867.  
  868.  
  869. ;---------------------------------------------------------------------------------------------------------------------------
  870. ; Enable Status bar in Notepad
  871.  
  872. [HKEY_CURRENT_USER\Software\Microsoft\Notepad]
  873. "StatusBar"=dword:00000001
  874.  
  875.  
  876. ;---------------------------------------------------------------------------------------------------------------------------
  877. ; Enable Status Bar in all windows
  878.  
  879. [HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main]
  880. "StatusBarOther"=dword:00000001
  881.  
  882.  
  883. ;---------------------------------------------------------------------------------------------------------------------------
  884. ; Enable search system folders in Search
  885.  
  886. [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Search\Preferences]
  887. "SystemFolders"=dword:00000001
  888.  
  889.  
  890. ;---------------------------------------------------------------------------------------------------------------------------
  891. ; Kill hung services after 5 seconds
  892.  
  893. [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control]
  894. "WaitToKillServiceTimeout"="5000"
  895.  
  896.  
  897. ;---------------------------------------------------------------------------------------------------------------------------
  898. ; Open NFO files with notepad
  899.  
  900. [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.nfo]
  901.  
  902. [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.nfo\OpenWithList]
  903. "a"="NOTEPAD.EXE"
  904. "MRUList"="a"
  905.  
  906. [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.nfo\OpenWithProgids]
  907. "MSInfoFile"=hex(0):
  908.  
  909. [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.nfo\UserChoice]
  910. "Progid"="Applications\\notepad.exe"
  911.  
  912.  
  913. ;---------------------------------------------------------------------------------------------------------------------------
  914. ; Open HTA files (used for WPI) with MSHTA.EXE
  915.  
  916. [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.hta]
  917.  
  918. [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.hta\OpenWithList]
  919.  
  920. [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.hta\OpenWithProgids]
  921. "htafile"=hex(0):
  922.  
  923.  
  924. ;---------------------------------------------------------------------------------------------------------------------------
  925. ; Remove the annoying clicking sound
  926.  
  927. [HKEY_CURRENT_USER\AppEvents\Schemes\Apps\Explorer\Navigating\.Current]
  928. @=""
  929.  
  930. [HKEY_CURRENT_USER\AppEvents\Schemes\Apps\Explorer\Navigating\.Default]
  931. @=""
  932.  
  933.  
  934. ;---------------------------------------------------------------------------------------------------------------------------
  935. ; Remove warning about showing hidden system folders
  936.  
  937. [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced\Folder\SuperHidden]
  938. "WarningIfNotDefault"=-
  939.  
  940.  
  941. ;---------------------------------------------------------------------------------------------------------------------------
  942. ; Restore previous folder windows at logon
  943.  
  944. [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced]
  945. "PersistBrowsers"=dword:00000001
  946.  
  947.  
  948. ;---------------------------------------------------------------------------------------------------------------------------
  949. ; Speed up shell response
  950.  
  951. [HKEY_CURRENT_USER\Control Panel\Desktop]
  952. "MenuShowDelay"="50"
  953.  
  954. [HKEY_USERS\S-1-5-19\Control Panel\Desktop]
  955. "MenuShowDelay"="50"
  956.  
  957. [HKEY_USERS\S-1-5-20\Control Panel\Desktop]
  958. "MenuShowDelay"="50"
  959.  
  960. [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced]
  961. "Start_ShowRun"=dword:00000001
  962.  
  963.  
  964. ;---------------------------------------------------------------------------------------------------------------------------
  965. ; Stops the 'Welcome Center' loading (for current user) when Windows starts
  966.  
  967. [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run]
  968. "WindowsWelcomeCenter"=-
  969.  
  970.  
  971. ;---------------------------------------------------------------------------------------------------------------------------
  972. ; Disable User Accounts Control (UAC)
  973. ; (Stops the annoying 'are you sure' warnings when you run executable files)
  974.  
  975. [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System]
  976. "EnableLUA"=dword:00000000
  977.  
  978.  
  979. ;---------------------------------------------------------------------------------------------------------------------------
  980. ; Disable automatic restart in the event of a blue screen
  981.  
  982. [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CrashControl]
  983. "AutoReboot"=dword:00000000
  984.  
  985.  
  986. ;---------------------------------------------------------------------------------------------------------------------------
  987. ; Disable Automatic Updates (not the ability to update - just
  988. ; disables the automatic background updates and balloon tips)
  989.  
  990. [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update]
  991. "AUOptions"=dword:00000001
  992. "IncludeRecommendedUpdates"=dword:00000000
  993. "SetupWizardLaunchTime"=-
  994. "BalloonTime"=-
  995. "BalloonType"=-
  996.  
  997.  
  998. ;---------------------------------------------------------------------------------------------------------------------------
  999. ; Stop Windows Sidebar starting with Windows
  1000.  
  1001. [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run]
  1002. "Sidebar"=-
  1003.  
  1004.  
  1005. ;---------------------------------------------------------------------------------------------------------------------------
  1006. ; Fix for compatibility with older versions of "Windows Post Install Wizard" (WPI)
  1007.  
  1008. [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Setup]
  1009. "SourcePath"=""
  1010.  
  1011.  
  1012. ;---------------------------------------------------------------------------------------------------------------------------
  1013. ; Small icons on the Taskbar
  1014.  
  1015. [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced]
  1016. "TaskbarSmallIcons"=dword:00000001
  1017.  
  1018.  
  1019. ;---------------------------------------------------------------------------------------------------------------------------
  1020. ; Remove blank icon from desktop
  1021.  
  1022. [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Desktop\NameSpace\{98D99750-0B8A-4c59-9151-589053683D73}]
  1023.  
  1024.  
  1025. ;---------------------------------------------------------------------------------------------------------------------------
  1026. ; Do not allow Windows to turn off Network Adapters
  1027.  
  1028. [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4D36E972-E325-11CE-BFC1-08002BE10318}\0000]
  1029. "PnPCapabilities"=dword:00000018
  1030.  
  1031. [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4D36E972-E325-11CE-BFC1-08002BE10318}\0001]
  1032. "PnPCapabilities"=dword:00000018
  1033.  
  1034. [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4D36E972-E325-11CE-BFC1-08002BE10318}\0002]
  1035. "PnPCapabilities"=dword:00000018
  1036.  
  1037. [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4D36E972-E325-11CE-BFC1-08002BE10318}\0003]
  1038. "PnPCapabilities"=dword:00000018
  1039.  
  1040. [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4D36E972-E325-11CE-BFC1-08002BE10318}\0004]
  1041. "PnPCapabilities"=dword:00000018
  1042.  
  1043. [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4D36E972-E325-11CE-BFC1-08002BE10318}\0005]
  1044. "PnPCapabilities"=dword:00000018
  1045.  
  1046. [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4D36E972-E325-11CE-BFC1-08002BE10318}\0006]
  1047. "PnPCapabilities"=dword:00000018
  1048.  
  1049. [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4D36E972-E325-11CE-BFC1-08002BE10318}\0007]
  1050. "PnPCapabilities"=dword:00000018
  1051.  
  1052. [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4D36E972-E325-11CE-BFC1-08002BE10318}\0008]
  1053. "PnPCapabilities"=dword:00000018
  1054.  
  1055. [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4D36E972-E325-11CE-BFC1-08002BE10318}\0009]
  1056. "PnPCapabilities"=dword:00000018
  1057.  
  1058. [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4D36E972-E325-11CE-BFC1-08002BE10318}\0010]
  1059. "PnPCapabilities"=dword:00000018
  1060.  
  1061. [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4D36E972-E325-11CE-BFC1-08002BE10318}\0011]
  1062. "PnPCapabilities"=dword:00000018
  1063.  
  1064. [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4D36E972-E325-11CE-BFC1-08002BE10318}\0012]
  1065. "PnPCapabilities"=dword:00000018
  1066.  
  1067. [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4D36E972-E325-11CE-BFC1-08002BE10318}\0013]
  1068. "PnPCapabilities"=dword:00000018
  1069.  
  1070. [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4D36E972-E325-11CE-BFC1-08002BE10318}\0014]
  1071. "PnPCapabilities"=dword:00000018
  1072.  
  1073. [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4D36E972-E325-11CE-BFC1-08002BE10318}\0015]
  1074. "PnPCapabilities"=dword:00000018
  1075.  
  1076. [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4D36E972-E325-11CE-BFC1-08002BE10318}\0016]
  1077. "PnPCapabilities"=dword:00000018
  1078.  
  1079. [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4D36E972-E325-11CE-BFC1-08002BE10318}\0017]
  1080. "PnPCapabilities"=dword:00000018
  1081.  
  1082. [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4D36E972-E325-11CE-BFC1-08002BE10318}\0018]
  1083. "PnPCapabilities"=dword:00000018
  1084.  
  1085. [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4D36E972-E325-11CE-BFC1-08002BE10318}\0019]
  1086. "PnPCapabilities"=dword:00000018
  1087.  
  1088. [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4D36E972-E325-11CE-BFC1-08002BE10318}\0020]
  1089. "PnPCapabilities"=dword:00000018
  1090.  
  1091. [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4D36E972-E325-11CE-BFC1-08002BE10318}\0021]
  1092. "PnPCapabilities"=dword:00000018
  1093.  
  1094. [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4D36E972-E325-11CE-BFC1-08002BE10318}\0022]
  1095. "PnPCapabilities"=dword:00000018
  1096.  
  1097. [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4D36E972-E325-11CE-BFC1-08002BE10318}\0023]
  1098. "PnPCapabilities"=dword:00000018
  1099.  
  1100. [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4D36E972-E325-11CE-BFC1-08002BE10318}\0024]
  1101. "PnPCapabilities"=dword:00000018
  1102.  
  1103. [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4D36E972-E325-11CE-BFC1-08002BE10318}\0025]
  1104. "PnPCapabilities"=dword:00000018
  1105.  
  1106. [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4D36E972-E325-11CE-BFC1-08002BE10318}\0026]
  1107. "PnPCapabilities"=dword:00000018
  1108.  
  1109. [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4D36E972-E325-11CE-BFC1-08002BE10318}\0027]
  1110. "PnPCapabilities"=dword:00000018
  1111.  
  1112. [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4D36E972-E325-11CE-BFC1-08002BE10318}\0028]
  1113. "PnPCapabilities"=dword:00000018
  1114.  
  1115. [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4D36E972-E325-11CE-BFC1-08002BE10318}\0029]
  1116. "PnPCapabilities"=dword:00000018
  1117.  
  1118. [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4D36E972-E325-11CE-BFC1-08002BE10318}\0030]
  1119. "PnPCapabilities"=dword:00000018
  1120.  
  1121.  
  1122. ;---------------------------------------------------------------------------------------------------------------------------
  1123. ; Remove Explorer, IE8 and WMP12 icons from the Taskbar
  1124.  
  1125. [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\StartPage2]
  1126. "ProgramsCacheTBP"=hex:01,00,00,00,09,00,00,00,02,
  1127.  
  1128. [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Taskband]
  1129. "Favorites"=hex:ff,
  1130.  
  1131. [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Taskband]
  1132. "FavoritesChanges"=dword:00000009
  1133.  
  1134.  
  1135. ;---------------------------------------------------------------------------------------------------------------------------
  1136. ; Gadgets Fix (thanks to r0manian)
  1137.  
  1138. [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Sidebar]
  1139.  
  1140. [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Sidebar\Compatibility]
  1141.  
  1142. [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Sidebar\Settings]
  1143.  
  1144.  
  1145. ;===========================================================================================================================
  1146. ;======================================================= END ===============================================================
  1147. ;===========================================================================================================================
  1148.  
  1149. ;---------------------------------------------
  1150. ;eXPerience Windows 7 Registry Tweaks (C) 2011
  1151. ;---------------------------------------------
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement