From cda56fd4454efb46f7542cf2973d9233b52d8d50 Mon Sep 17 00:00:00 2001 From: Andrei-George Stoica <5600871+andreiztm@users.noreply.github.com> Date: Tue, 11 Jan 2022 21:43:10 +0200 Subject: [PATCH] Update and document real behavior for AllowMUUpdateService policy Also document workaround to revert configuration made by the policy. --- windows/client-management/mdm/policy-csp-update.md | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/windows/client-management/mdm/policy-csp-update.md b/windows/client-management/mdm/policy-csp-update.md index 36e1d8215a..f8f820ea47 100644 --- a/windows/client-management/mdm/policy-csp-update.md +++ b/windows/client-management/mdm/policy-csp-update.md @@ -536,9 +536,18 @@ ADMX Info: 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") +``` +