Skip to content

TechDirectArchive

Hands-on IT, Cloud, Security & DevOps Insights

  • Home
  • About
  • Advertise With US
  • Reviews
  • Contact
  • Toggle search form
Home » Windows Server » Handy WSUS Commands: Windows Server Update Services Commands, WAUACLT, PowerShell and USOClient

Handy WSUS Commands: Windows Server Update Services Commands, WAUACLT, PowerShell and USOClient

Posted on 05/02/202008/04/2025 Christian By Christian 4 Comments on Handy WSUS Commands: Windows Server Update Services Commands, WAUACLT, PowerShell and USOClient
WSUS Commands

Working with Windows Update Automatic Update (WSUS) is not a relatively easy task, for ease of troubleshooting and fixing updates errors, there is a need to know a bunch of useful commands such as the WAUACLT, PowerShell, and USOClient. Please see How to disable Ads in Windows 11, How to apply Windows Updates with PowerShell, How to configure Windows server update services, and How to install WSUS on Windows Server 2022.

For more documentation on WSUS, take a look at the following hyperlinks. WSUS clients appear then disappear in the console, how to Start, Stop and Restart Windows Server Update Services (WSUS) via PowerShell and CMD,

Windows Update Automatic Update (WSUS) Client – WUAUCLT

This refers to the Windows Update Automatic Update Client.  This command has been replaced in the most recent versions of Windows OS with the USOclient. Note: (WUAUCLT tool still works very well to date on Windows 2016. I tested and they worked great.

Please find below a list of commands that can be used alongside WUACLT and their explanations below. The first three (3) are probably the most used commands of WUAUCLT.

WUAUCLT /detectnow: Detect and download updates that are available
WUAUCLT /ReportNow: Tell the client to report its status back to the WSUS server
WUAUCLT /UpdateNow  : Install updates now
WUAUCLT /ShowSettingsDialog :  Show Windows Update settings dialog
WUAUCLT /ShowWindowsUpdate: Shows the windows update dialog box or web page
WUAUCLT /ResetAuthorization : when an update check occurs a cookie is stored that prevents a new update or check for 1 hour. So, you should use this to delete this cookie
WUAUCLT /ResetEulas : Resets the accepted EULA
WUAUCLT /SelfUpdateManaged : Scan for windows updates using WSUS
WUAUCLT / SelfUpdateUnmanaged : Triggers a windows update scan using the windows update website
WUAUCLT /ShowOptions : Open the windows update settings window
WUAUCLT /ShowFeaturedOptInDialog : Show Opt-In dialog for featured updates
WUAUCLT /DemoUI : Show the icons for windows update
WUAUCLT / ShowFeaturedUpdates : Open windows update dialog and shows the featured updates

Please see Windows 2016 Servers do not show up on the WSUS console. Also, see applying Updates Deployed by WSUS to Workstations using AWS RunCommand.

PowerPoint: Administering Windows Update Via PowerShell

Powershell will give you the most flexibility in installing windows updates. The other methods are fine for simply downloading and installing all updates.

However, with the PowerShell cmdlets, you can do things like get a list of updates, search for updates with a specific word in them, then only install those updates(WSUS Command Line Tips).

First Phase 1: Install the module from the gallery by running

Install-module PSWindowsUpdate

For links to some documentation on WSUS by myself on where some of these commands have been used previously, take a look at the following hyperlinks.

Important Areas to Master on WSUS, Configuring WSUS Email Notification to Work With Office365, Configuring WSUS Email Notification to Work With Office365 – IIS SMTP Relay Server and how to configure SSL between WSUS servers (Upstream and Downstream Servers).

Step 2: Import the windows update module

Import-Module PSWindowsUpdate

Step 3: Install the Microsoft Update service.

Note: This can also be done via the command

Add-WUServiceManager -ServiceID 7971f918-a847-4430-9279-4a52d1efe18

Step 4: To get a list of the available cmdlets in the PSWindowsUpdate module with the following command:

Get-command -module PSWindowsUpdate

Examples of how to use this tool

1: Download and install updates from Microsoft Update, then reboot:

Get-WUInstall –MicrosoftUpdate –AcceptAll –AutoReboot

2: Check if a reboot is required

Get-wurebootstatus

3:  To view available Updates from the Microsoft catalog

Get-WUInstall-MicrosoftUpdate – ListOnly

USOClient: Administering Windows Update Via USOClient

USO stands for Update Session Orchestrator. The usoclient.exe file or the Windows 10 Update Orchestrator is in the System32 folder. This tool was introduced in Windows 10 and Server 2016, and it replaces the deprecated WUACLT tool.

Furthermore, Ensure to run these commands with the Admin rights (elevated command prompt)

usoclient.exe StartScan
usoclient.exe StartDownload
usoclient.exe StartInstall
usoclient.exe RefreshSettings
usoclient.exe ResumeUpdate
usoclient.exe ScanInstallWait
usoclient.exe StartInteractiveScan
usoclient.exe RestartDevice

I hope you found this blog poston how to use WSUS Commands: WAUACLT and PowerShell and USOClient helpful. Please let me know in the comment session if you have any questions.

5/5 - (1 vote)

Thank you for reading this post. Kindly share it with others.

  • Share on X (Opens in new window) X
  • Share on Reddit (Opens in new window) Reddit
  • Share on LinkedIn (Opens in new window) LinkedIn
  • Share on Facebook (Opens in new window) Facebook
  • Share on Pinterest (Opens in new window) Pinterest
  • Share on Tumblr (Opens in new window) Tumblr
  • Share on Telegram (Opens in new window) Telegram
  • Share on WhatsApp (Opens in new window) WhatsApp
  • Share on Mastodon (Opens in new window) Mastodon
  • Share on Bluesky (Opens in new window) Bluesky
  • Share on Threads (Opens in new window) Threads
  • Share on Nextdoor (Opens in new window) Nextdoor
Windows Server Tags:Microsoft Windows

Post navigation

Previous Post: How to schedule and run update via Windows Admin Center
Next Post: Auto Logon Error “Username and password specified is not valid”

Related Posts

  • screenshot 2020 04 27 at 13.30.17
    What are the differences between a Role and a Feature Windows Server
  • windows 10 spying 1200x687 1
    Error 183: Specified image is being serviced by another DISM operation Windows Server
  • erroradkupdate
    An error has occurred in the script on this page: HTA applications report a Script error after upgrading to ADK for Windows 11, version 22H2 Windows Server
  • Distributed File System DFS
    All About Distributed File System Windows
  • fgbv
    Export and Import Scheduled Tasks in Windows Windows Server
  • addanewlang
    How to change or add another keyboard language in Windows Server Windows Server

More Related Articles

screenshot 2020 04 27 at 13.30.17 What are the differences between a Role and a Feature Windows Server
windows 10 spying 1200x687 1 Error 183: Specified image is being serviced by another DISM operation Windows Server
erroradkupdate An error has occurred in the script on this page: HTA applications report a Script error after upgrading to ADK for Windows 11, version 22H2 Windows Server
Distributed File System DFS All About Distributed File System Windows
fgbv Export and Import Scheduled Tasks in Windows Windows Server
addanewlang How to change or add another keyboard language in Windows Server Windows Server

Comments (4) on “Handy WSUS Commands: Windows Server Update Services Commands, WAUACLT, PowerShell and USOClient”

  1. Avatar photo Nigel says:
    06/10/2020 at 12:16 AM

    good information – a few typos

    C:\windows\system32>WUACLT /ReportNow
    'WUACLT' is not recognized as an internal or external command,
    operable program or batch file.
    
    
    

    in fact all the WUAUCLT commands are missing the U

    Log in to Reply
    1. chris Christian says:
      06/10/2020 at 8:03 PM

      Thank you very much for the nice comment and for pointing the errors out. I will update the article.

      Log in to Reply
    2. Avatar photo eric says:
      02/11/2022 at 1:33 PM

      wuauclt.exe /reportnow

      Log in to Reply
      1. chris Christian says:
        02/11/2022 at 3:48 PM

        Thank you Eric for this!

Leave a Reply Cancel reply

You must be logged in to post a comment.

Microsoft MVP

VEEAMLEGEND

vexpert-badge-stars-5

Virtual Background

GoogleNews

Categories

veeaam100

Veeam Vanguard

  • How to download install and use Kitty SSH Client on Windows
    Video on how to Download and Use KiTTY SSH Client on Windows Network | Monitoring
  • Opswork blog 1440x800 1
    AWS Opsworks For Chef Automate Configuration Management Tool
  • Install error 0x800700b7
    How to fix Windows update Install error 0x800700b7 Windows
  • windows store icon
    Application User Model ID: How to find the AUMID of an installed UWP App Windows
  • DC 3
    How to demote and remove a Domain Controller on Windows Servers Windows Server
  • Feature image LSA
    How to configure additional LSA Protection Security | Vulnerability Scans and Assessment
  • Fatal Refusing to Merge
    How to Fix Fatal Git Error Refusing to Merge Unrelated Histories Version Control System
  • We cannot fine camera
    Fix we could not find a camera compatible with Windows Hello Face Windows

Subscribe to Blog via Email

Enter your email address to subscribe to this blog and receive notifications of new posts by email.

Join 1,821 other subscribers
  • RSS - Posts
  • RSS - Comments
  • About
  • Authors
  • Write for us
  • Advertise with us
  • General Terms and Conditions
  • Privacy policy
  • Feedly
  • Telegram
  • Youtube
  • Facebook
  • Instagram
  • LinkedIn
  • Tumblr
  • Pinterest
  • Twitter
  • mastodon

Tags

Active Directory Azure Bitlocker Microsoft Windows PowerShell WDS Windows 10 Windows 11 Windows Deployment Services Windows Server 2016

Copyright © 2025 TechDirectArchive

 

Loading Comments...
 

You must be logged in to post a comment.