Disable "Update Orchestrator Service" ("UsoSvc")
- Single actionThis page belongs to a script, containing basic changes to achieve a task.
- Windows onlyThis script improves your privacy on Windows
- Impact: HighSystem Functionality Loss Risk: High
This action improves privacy with high impact when you run the recommended script. - Batch (batchfile)These changes use Windows system commands to update your settings.
- Fully reversible
You can fully restore this action (revert back to the original behavior) using this website.
The restore/revert methods provided here can help you fix issues.
Overview
This script disables the Update Orchestrator Service, also known as "Update Orchestrator Service for Windows Update" 1. This service is in charge of managing the download and installation of Windows updates 1 2.
By default, the service is enabled and set to start up manually 1.
While updates can be crucial for the security of your system, this service can sometimes install them without your approval. This lack of control can pose risks to your privacy, as data might be sent from your system without your knowledge.
Windows updates relies on this service 1 3. If stopped, your devices will not be able to download and install latest updates 1.
Turning off this service can affect the update process and might cause issues like freezing during update scanning 3.
This script directly affects the orchestration and scheduling of Windows updates. This can lead to irregularities in receiving updates, potentially causing delays or failures in obtaining critical security patches and feature updates specific to Windows functionalities.
Overview of default service statuses
OS Version | Status | Start type |
---|---|---|
Windows 10 (≥ 22H2) | 🟢 Running | Automatic |
Windows 11 (≥ 23H2) | 🟢 Running | Automatic |
- Not Advised
This script should only be used by advanced users.
This script is not recommended for daily use as it breaks important functionality.
Consider creating a system restore point before doing any changes.
- Security Trade-off
This action prioritizes privacy over certain security features. It's not recommended and should only be used by advanced users after understanding its implications.
Increased Privacy
Enhanced privacy through reduced data collection and trackingDecreased Security
Some security features will be disabled or limitedThis script can be reversed, this allows you to restore the default system security.
Sources
- Security guidelines for system services in Windows Server 2016. Microsoft Learn. (2023).
Original: https://learn.microsoft.com/en-us/windows-server/security/windows-services/security-guidelines-for-disabling-system-services-in-windows-server
Archived: https://web.archive.org/web/20231004161147/https://learn.microsoft.com/en-us/windows-server/security/windows-services/security-guidelines-for-disabling-system-services-in-windows-server - Windows devices may fail to boot after installing October 10 version of KB 4041676 or 4041691 that contained a publishing issue - Windows Client. Microsoft Learn. (2023).
Original: https://learn.microsoft.com/en-us/troubleshoot/windows-client/performance/windows-devices-fail-boot-after-installing-kb4041676-kb4041691
Archived: https://web.archive.org/web/20230905120348/https://learn.microsoft.com/en-us/troubleshoot/windows-client/performance/windows-devices-fail-boot-after-installing-kb4041676-kb4041691 - Prepare to deploy Windows - Windows Deployment. Microsoft Learn. (2023).
Original: https://learn.microsoft.com/en-us/windows/deployment/update/prepare-deploy-windows
Archived: https://web.archive.org/web/20231001150100/https://learn.microsoft.com/en-us/windows/deployment/update/prepare-deploy-windows
Apply Now
Choose one of three ways to apply:
Download script
Download and run the script directly- No app needed
- Offline usage
- Easy-to-apply
- Free
- Open-source
Help
How to apply or restore "Disable "Update Orchestrator Service" (UsoSvc)" using script
- ≈ 2 min to complete
- Tools: Web Browser
- Difficulty: Simple
- ≈ 5 instructions
- 1
Download
Download the script file by clicking on thebutton above.
Use button above to restore changes. - 2
Keep the file
If warned by your browser, keep the file. - 3
Open
Open the downloaded file. - 4
Exit
Once it's done, press any key to exit the window. - 5
Restart
Restart your computer for all changes to take effect.
Apply with privacy.sexy
Guided, automated application with safety checks- Recommended for most users
- Includes safety checks
- Free
- Open-source
- Popular
- Offline/Online usage
Help
How to apply or restore "Disable "Update Orchestrator Service" (UsoSvc)" using privacy.sexy
- ≈ 3 min to complete
- Tools: privacy.sexy
- Difficulty: Simple
- ≈ 4 instructions
- 2
Choose script
- Search for the script name: Disable "Update Orchestrator Service" (UsoSvc)
- Check the script by clicking on the checkbox.
- 3
Run
Click on ▶️ Run button at the bottom of the page.This button only appears on desktop version (recommended). On browser, use 💾 Save button.
- Apply
- Revert
:: Disable service(s): `UsoSvc`
PowerShell -ExecutionPolicy Unrestricted -Command "$serviceName = 'UsoSvc'; Write-Host "^""Disabling service: `"^""$serviceName`"^""."^""; <# -- 1. Skip if service does not exist #>; $service = Get-Service -Name $serviceName -ErrorAction SilentlyContinue; if(!$service) { Write-Host "^""Service `"^""$serviceName`"^"" could not be not found, no need to disable it."^""; Exit 0; }; <# -- 2. Stop if running #>; if ($service.Status -eq [System.ServiceProcess.ServiceControllerStatus]::Running) { Write-Host "^""`"^""$serviceName`"^"" is running, stopping it."^""; try { Stop-Service -Name "^""$serviceName"^"" -Force -ErrorAction Stop; Write-Host "^""Stopped `"^""$serviceName`"^"" successfully."^""; } catch { Write-Warning "^""Could not stop `"^""$serviceName`"^"", it will be stopped after reboot: $_"^""; }; } else { Write-Host "^""`"^""$serviceName`"^"" is not running, no need to stop."^""; }; <# -- 3. Skip if already disabled #>; $startupType = $service.StartType <# Does not work before .NET 4.6.1 #>; if (!$startupType) { $startupType = (Get-WmiObject -Query "^""Select StartMode From Win32_Service Where Name='$serviceName'"^"" -ErrorAction Ignore).StartMode; if(!$startupType) { $startupType = (Get-WmiObject -Class Win32_Service -Property StartMode -Filter "^""Name='$serviceName'"^"" -ErrorAction Ignore).StartMode; }; }; if ($startupType -eq 'Disabled') { Write-Host "^""$serviceName is already disabled, no further action is needed"^""; Exit 0; }; <# -- 4. Disable service #>; try { Set-Service -Name "^""$serviceName"^"" -StartupType Disabled -Confirm:$false -ErrorAction Stop; Write-Host "^""Disabled `"^""$serviceName`"^"" successfully."^""; } catch { Write-Error "^""Could not disable `"^""$serviceName`"^"": $_"^""; }"
Ijo6IFJlc3RvcmUgc2VydmljZShzKSB0byBkZWZhdWx0IHN0YXRlOiBgVXNvU3ZjYFxuUG93ZXJTaGVsbCAtRXhlY3V0aW9uUG9saWN5IFVucmVzdHJpY3RlZCAtQ29tbWFuZCBcIiRzZXJ2aWNlTmFtZSA9ICdVc29TdmMnOyAkZGVmYXVsdFN0YXJ0dXBNb2RlID0gJ0F1dG9tYXRpYyc7ICRpZ25vcmVNaXNzaW5nT25SZXZlcnQgPSAgJGZhbHNlOyBXcml0ZS1Ib3N0IFwiXlwiXCJSZXZlcnRpbmcgc2VydmljZSBgXCJeXCJcIiRzZXJ2aWNlTmFtZWBcIl5cIlwiIHN0YXJ0IHRvIGBcIl5cIlwiJGRlZmF1bHRTdGFydHVwTW9kZWBcIl5cIlwiLlwiXlwiXCI7IDwjIC0tIDEuIFNraXAgaWYgc2VydmljZSBkb2VzIG5vdCBleGlzdCAjPjsgJHNlcnZpY2UgPSBHZXQtU2VydmljZSAtTmFtZSAkc2VydmljZU5hbWUgLUVycm9yQWN0aW9uIFNpbGVudGx5Q29udGludWU7IGlmICghJHNlcnZpY2UpIHsgaWYgKCRpZ25vcmVNaXNzaW5nT25SZXZlcnQpIHsgV3JpdGUtT3V0cHV0IFwiXlwiXCJTa2lwcGluZzogVGhlIHNlcnZpY2UgYFwiXlwiXCIkc2VydmljZU5hbWVgXCJeXCJcIiBpcyBub3QgZm91bmQuIE5vIGFjdGlvbiByZXF1aXJlZC5cIl5cIlwiOyBFeGl0IDA7IH07IFdyaXRlLVdhcm5pbmcgXCJeXCJcIkZhaWxlZCB0byByZXZlcnQgY2hhbmdlcyB0byB0aGUgc2VydmljZSBgXCJeXCJcIiRzZXJ2aWNlTmFtZWBcIl5cIlwiLiBUaGUgc2VydmljZSBpcyBub3QgZm91bmQuXCJeXCJcIjsgRXhpdCAxOyB9OyA8IyAtLSAyLiBFbmFibGUgb3Igc2tpcCBpZiBhbHJlYWR5IGVuYWJsZWQgIz47ICRzdGFydHVwVHlwZSA9ICRzZXJ2aWNlLlN0YXJ0VHlwZSA8IyBEb2VzIG5vdCB3b3JrIGJlZm9yZSAuTkVUIDQuNi4xICM+OyBpZiAoISRzdGFydHVwVHlwZSkgeyAkc3RhcnR1cFR5cGUgPSAoR2V0LVdtaU9iamVjdCAtUXVlcnkgXCJeXCJcIlNlbGVjdCBTdGFydE1vZGUgRnJvbSBXaW4zMl9TZXJ2aWNlIFdoZXJlIE5hbWU9JyRzZXJ2aWNlTmFtZSdcIl5cIlwiIC1FcnJvckFjdGlvbiBJZ25vcmUpLlN0YXJ0TW9kZTsgaWYgKCEkc3RhcnR1cFR5cGUpIHsgJHN0YXJ0dXBUeXBlID0gKEdldC1XbWlPYmplY3QgLUNsYXNzIFdpbjMyX1NlcnZpY2UgLVByb3BlcnR5IFN0YXJ0TW9kZSAtRmlsdGVyIFwiXlwiXCJOYW1lPSckc2VydmljZU5hbWUnXCJeXCJcIiAtRXJyb3JBY3Rpb24gSWdub3JlKS5TdGFydE1vZGU7IH07IH07IGlmICgkc3RhcnR1cFR5cGUgLWVxIFwiXlwiXCIkZGVmYXVsdFN0YXJ0dXBNb2RlXCJeXCJcIikgeyBXcml0ZS1Ib3N0IFwiXlwiXCJgXCJeXCJcIiRzZXJ2aWNlTmFtZWBcIl5cIlwiIGhhcyBhbHJlYWR5IGV4cGVjdGVkIHN0YXJ0dXAgbW9kZTogYFwiXlwiXCIkZGVmYXVsdFN0YXJ0dXBNb2RlYFwiXlwiXCIuIE5vIGFjdGlvbiByZXF1aXJlZC5cIl5cIlwiOyB9IGVsc2UgeyB0cnkgeyBTZXQtU2VydmljZSAtTmFtZSBcIl5cIlwiJHNlcnZpY2VOYW1lXCJeXCJcIiAtU3RhcnR1cFR5cGUgXCJeXCJcIiRkZWZhdWx0U3RhcnR1cE1vZGVcIl5cIlwiIC1Db25maXJtOiRmYWxzZSAtRXJyb3JBY3Rpb24gU3RvcDsgV3JpdGUtSG9zdCBcIl5cIlwiUmV2ZXJ0ZWQgYFwiXlwiXCIkc2VydmljZU5hbWVgXCJeXCJcIiB3aXRoIGBcIl5cIlwiJGRlZmF1bHRTdGFydHVwTW9kZWBcIl5cIlwiIHN0YXJ0LCB0aGlzIG1heSByZXF1aXJlIHJlc3RhcnRpbmcgeW91ciBjb21wdXRlci5cIl5cIlwiOyB9IGNhdGNoIHsgV3JpdGUtRXJyb3IgXCJeXCJcIkZhaWxlZCB0byBlbmFibGUgYFwiXlwiXCIkc2VydmljZU5hbWVgXCJeXCJcIjogJF9cIl5cIlwiOyBFeGl0IDE7IH07IH07IDwjIC0tIDQuIFN0YXJ0IGlmIG5vdCBydW5uaW5nIChtdXN0IGJlIGVuYWJsZWQgZmlyc3QpICM+OyBpZiAoJGRlZmF1bHRTdGFydHVwTW9kZSAtZXEgJ0F1dG9tYXRpYycgLW9yICRkZWZhdWx0U3RhcnR1cE1vZGUgLWVxICdCb290JyAtb3IgJGRlZmF1bHRTdGFydHVwTW9kZSAtZXEgJ1N5c3RlbScpIHsgaWYgKCRzZXJ2aWNlLlN0YXR1cyAtbmUgW1N5c3RlbS5TZXJ2aWNlUHJvY2Vzcy5TZXJ2aWNlQ29udHJvbGxlclN0YXR1c106OlJ1bm5pbmcpIHsgV3JpdGUtSG9zdCBcIl5cIlwiYFwiXlwiXCIkc2VydmljZU5hbWVgXCJeXCJcIiBpcyBub3QgcnVubmluZywgc3RhcnRpbmcgaXQuXCJeXCJcIjsgdHJ5IHsgU3RhcnQtU2VydmljZSAkc2VydmljZU5hbWUgLUVycm9yQWN0aW9uIFN0b3A7IFdyaXRlLUhvc3QgXCJeXCJcIlN0YXJ0ZWQgYFwiXlwiXCIkc2VydmljZU5hbWVgXCJeXCJcIiBzdWNjZXNzZnVsbHkuXCJeXCJcIjsgfSBjYXRjaCB7IFdyaXRlLVdhcm5pbmcgXCJeXCJcIkZhaWxlZCB0byBzdGFydCBgXCJeXCJcIiRzZXJ2aWNlTmFtZWBcIl5cIlwiLCByZXF1aXJlcyByZXN0YXJ0LCBpdCB3aWxsIGJlIHN0YXJ0ZWQgYWZ0ZXIgcmVib290LmByYG4kX1wiXlwiXCI7IH07IH0gZWxzZSB7IFdyaXRlLUhvc3QgXCJeXCJcImBcIl5cIlwiJHNlcnZpY2VOYW1lYFwiXlwiXCIgaXMgYWxyZWFkeSBydW5uaW5nLCBubyBuZWVkIHRvIHN0YXJ0LlwiXlwiXCI7IH07IH1cIiI=
Help
How to apply or restore "Disable "Update Orchestrator Service" (UsoSvc)" using commands
- ≈ 2 min to complete
- Tools: Command Prompt
- Difficulty: Medium
- ≈ 3 instructions
- 1
Open Command Prompt
Open Command Prompt as Administrator. - 2
Copy code
Copy the code: - 3
Paste & run
Paste the commands into Command Prompt and press Enter to run.Some changes require a system restart to take effect
Similar Guides
Wider Goal
Guides below includes this guide to achieve a wider goal.See other more general settings that includes this one as one of its actions.These plans combine multiple privacy settings, including this one, for stronger protection.
- Disable Windows update services
- Disable automatic updates
- Privacy over security
The scripts in this category offer users the ability to control Windows services related to system updates. These services manage how and when your syste...
Disabling automatic updates is often considered counterintuitive when it comes to securing your system. However, there are substantial arguments to consi...
Same Goal
Other guides in Disable Windows update services See settings that are in the same category as this guide.Using other actions in the same category may help you achieve your goal better.
About the Creators
These people have authored this documentation and written its scripts:
Reviewed By
This guide has undergone comprehensive auditing and peer review:Expert review by undergroundwires
- Verified technical accuracy and editorial standards
- Assessed system impact and user privacy risks
- Audited and verified using automated security tests
Public review by large community
- Privacy enthusiasts and professionals peer-reviewed
- Millions of end-users tested across different environments
- Audited and verified using third-party security software
History
We continually monitor our guides, their impact and other potential privacy options. We update our guides when new information becomes available. On every update, we publicly store who made the change, what has been changed, why the change was made and when the change was made.