From 45d9a048c864a9e2acf8ad10eaf523fccc9ff2bc Mon Sep 17 00:00:00 2001 From: simeononsecurity <4913771+simeononsecurity@users.noreply.github.com> Date: Wed, 2 Feb 2022 05:48:15 +0000 Subject: [PATCH] Update windows10.ps1 --- windows10.ps1 | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/windows10.ps1 b/windows10.ps1 index ff688be..d96b158 100644 --- a/windows10.ps1 +++ b/windows10.ps1 @@ -456,6 +456,11 @@ Start-Job -Name "Configuring Windows - Optimizations, Debloating, and Hardening" #netsh interface ipv6 set teredo type=disabled #netsh interface ipv6 6to4 set state disabled + #Hardware accelerated scheduling + New-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Control\GraphicsDrivers" -Name "HwSchMode" -Value 2 -Force - + #Get Insider Updates without joining the Insider Program and without having Telemetry enabled + New-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate" -Name "BranchReadinessLevel" -Value 2 -Force + New-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate" -Name "ManagePreviewBuilds" -Value 1 -Force + New-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate" -Name "ManagePreviewBuildsPolicyValue" -Value 2 -Force }