Advertisement
zero2dash

win7 tweaks

Aug 9th, 2018
279
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 3.58 KB | None | 0 0
  1. REM Administrative Templates (Computers)
  2. REM     Network
  3. REM         Network Connections
  4. REM             Windows Defender Firewall
  5. REM                 Standard Profile
  6. REM                     Windows Defender Firewall: Allow inbound Remote Desktop exceptions
  7.                             REG ADD "HKLM\SOFTWARE\Policies\Microsoft\WindowsFirewall\StandardProfile\Services\RemoteDesktop" /v Enabled /t REG_DWORD /d 1 /f
  8.  
  9. REM     System
  10. REM         Driver Installation
  11. REM             Turn off Windows Update device driver search prompt
  12.                     REG ADD "HKLM\Software\Policies\Microsoft\Windows\DriverSearching" /v DontPromptForWindowsUpdate /t REG_DWORD /d 1 /f
  13. REM         Internet Communication Management
  14. REM             Internet Communication Settings
  15. REM                 Turn off Windows Customer Experience Improvement Program
  16.                         REG ADD "HKLM\Software\Policies\Microsoft\SQMClient\Windows" /v CEIPEnable /t REG_DWORD /d 0 /f
  17. REM                 Turn off Windows Error Reporting
  18.                         REG ADD "HKLM\Software\Policies\Microsoft\PCHealth\ErrorReporting" /v DoReport /t REG_DWORD /d 0 /f
  19.                         REG ADD "HKLM\Software\Policies\Microsoft\Windows\Windows Error Reporting" /v Disabled /t REG_DWORD /d 1 /f
  20. REM                 Turn off Windows Update device driver searching
  21.                         REG ADD "HKLM\Software\Policies\Microsoft\Windows\DriverSearching" /v DontSearchWindowsUpdate /t REG_DWORD /d 1 /f
  22.  
  23. REM     Windows Components
  24. REM         AutoPlay Policies
  25. REM             Turn off Autoplay
  26.                     REG ADD "HKLM\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer" /v NoDriveTypeAutoRun /t REG_DWORD /d 255 /f
  27. REM         Internet Explorer
  28. REM             Prevent participation in the Customer Experience Improvement Program
  29.                     REG ADD "HKLM\Software\Policies\Microsoft\Internet Explorer\SQM" /v DisableCustomerImprovementProgram /t REG_DWORD /d 0 /f
  30. REM         Location and Sensors
  31. REM             Turn off location
  32.                     REG ADD "HKLM\Software\Policies\Microsoft\Windows\LocationAndSensors" /v DisableLocation /t REG_DWORD /d 1 /f
  33. REM             Turn off sensors
  34.                     REG ADD "HKLM\Software\Policies\Microsoft\Windows\LocationAndSensors" /v DisableSensors /t REG_DWORD /d 1 /f
  35. REM         Remote Desktop Services
  36. REM             Remote Desktop Session Host
  37. REM                 Connections
  38. REM                     Allow users to connect remotely using Remote Desktop Services
  39.                             REG ADD "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\Terminal Services" /v fDenyTSConnections /t REG_DWORD /d 0 /f
  40. REM                 Security
  41. REM                     Require user authentication for remote connections by using Network Level Authentication
  42.                             REG ADD "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\Terminal Services" /v UserAuthentication /t REG_DWORD /d 1 /f
  43. REM         Windows Defender
  44. REM             Turn off Windows Defender
  45.                     REG ADD "HKLM\Software\Policies\Microsoft\Windows Defender" /v DisableAntiSpyware /t REG_DWORD /d 1 /f
  46. REM         Windows Error Reporting
  47. REM             Disable Windows Error Reporting
  48.                     REG ADD "HKLM\SOFTWARE\Policies\Microsoft\Windows\Windows Error Reporting" /v Disabled /t REG_DWORD /d 1 /f
  49. REM         Windows Update
  50. REM             Turn off the upgrade to the latest version of Windows through Windows Update
  51.                     REG ADD "HKLM\Software\Policies\Microsoft\Windows\WindowsUpdate" /v DisableOSUpgrade /t REG_DWORD /d 1 /f
  52. REM             Configure Automatic Updates
  53.                     REG ADD "HKLM\Software\Policies\Microsoft\Windows\WindowsUpdate\AU" /v NoAutoUpdate /t REG_DWORD /d 1 /f
  54. REM             No auto-restart with logged on users for scheduled automatic updates installations
  55.                     REG ADD "HKLM\Software\Policies\Microsoft\Windows\WindowsUpdate\AU" /v NoAutoRebootWithLoggedOnUsers /t REG_DWORD /d 1 /f
  56. REM             Turn on recommended updates via Automatic Updates
  57.                     REG ADD "HKLM\Software\Policies\Microsoft\Windows\WindowsUpdate\AU" /v IncludeRecommendedUpdates /t REG_DWORD /d 0 /f
  58.  
  59. pause
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement