This repository has been archived on 2024-09-06. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
win10-privacy-script/modules.d/GPO_WindowsUpdate.conf

70 lines
2.7 KiB
Text

{
"Name" : "Windows Update (GPO)",
"Description" : "Disable sone Windows Update features like GPO does.",
"actions" :
[
{
"_comment" : "Disable Download Optimization",
"action" : "AddRegKey",
"path" : "HKLM:\\SOFTWARE\\Policies\\Microsoft\\Windows\\DeliveryOptimization",
"key" : "DODownloadMode",
"value" : "0"
},
{
"_comment" : "Disable Peer to Peer connection for Windows Update",
"action" : "AddRegKey",
"path" : "HKLM:\\SOFTWARE\\Policies\\Microsoft\\Windows\\Peernet",
"key" : "Disabled",
"value" : "1"
},
{
"_comment" : "Notify Update download and installation",
"action" : "AddRegKey",
"path" : "HKLM:\\SOFTWARE\\Policies\\Microsoft\\Windows\\WindowsUpdate\\AU",
"key" : "AUOptions",
"value" : "2"
},
{
"_comment" : "Activate Windows Update all day ( 0:All days, 1:sunday, 2:monday, ...",
"action" : "AddRegKey",
"path" : "HKLM:\\SOFTWARE\\Policies\\Microsoft\\Windows\\WindowsUpdate\\AU",
"key" : "ScheduledInstallDay",
"value" : "0"
},
{
"_comment" : "Define hour of installation",
"action" : "AddRegKey",
"path" : "HKLM:\\SOFTWARE\\Policies\\Microsoft\\Windows\\WindowsUpdate\\AU",
"key" : "ScheduledInstallTime",
"value" : "12"
},
{
"_comment" : "Enable Defered Updates (Windows Pro and +) (https://docs.microsoft.com/en-us/windows/deployment/update/waas-configure-wufb)",
"action" : "AddRegKey",
"path" : "HKLM:\\SOFTWARE\\Policies\\Microsoft\\Windows\\WindowsUpdate",
"key" : "DeferFeatureUpdates",
"value" : "1"
},
{
"_comment" : "Select CBB branch for Defered Updates",
"action" : "AddRegKey",
"path" : "HKLM:\\SOFTWARE\\Policies\\Microsoft\\Windows\\WindowsUpdate",
"key" : "BranchReadinessLevel",
"value" : "32"
},
{
"_comment" : "Defer Feature installation for 1 year",
"action" : "AddRegKey",
"path" : "HKLM:\\SOFTWARE\\Policies\\Microsoft\\Windows\\WindowsUpdate",
"key" : "DeferFeatureUpdatesPeriodInDays",
"value" : "365"
},
{
"_comment" : "Disable drivers update",
"action" : "AddRegKey",
"path" : "HKLM:\\SOFTWARE\\Policies\\Microsoft\\Windows\\WindowsUpdate\\AU",
"key" : "ExcludeWUDriversInQualityUpdate",
"value" : "1"
}
]
}