Update and document real behavior for AllowMUUpdateService policy

Also document workaround to revert configuration made by the policy.
This commit is contained in:
Andrei-George Stoica 2022-01-11 21:43:10 +02:00 committed by GitHub
parent 6dbadbf0e7
commit cda56fd445
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -536,9 +536,18 @@ ADMX Info:
<!--SupportedValues-->
The following list shows the supported values:
- 0 Not allowed or not configured.
- 0 Not configured.
- 1 Allowed. Accepts updates received through Microsoft Update.
> [!NOTE]
> Setting this policy back to 0 or "Not configured" does not revert the configuration to receive updates from Microsoft Update automatically.
> In order to revert this we can run the PowerShell commands below to remove the Microsoft Update service:
```
$MUSM = New-Object -ComObject "Microsoft.Update.ServiceManager"
$MUSM.RemoveService("7971f918-a847-4430-9279-4a52d1efe18d")
```
<!--/SupportedValues-->
<!--/Policy-->