Yesterday, I showed you how to script the WSUS Cleanup Wizard with Powershell. Today, the WSUS fun continues! Here’s how to use powershell to “manually” synchronize your WSUS server, i.e. download the latest updates.

#Region VARIABLES
 
# WSUS Connection Parameters:
[String]$updateServer = "myWSUSServer.domain.local"
[Boolean]$useSecureConnection = $False
[Int32]$portNumber = 80
 
#EndRegion VARIABLES
 
#Region SCRIPT
 
# Load .NET assembly
[void][reflection.assembly]::LoadWithPartialName("Microsoft.UpdateServices.Administration")
 
# Connect to WSUS Server
$Wsus = [Microsoft.UpdateServices.Administration.AdminProxy]::getUpdateServer($updateServer,$useSecureConnection,$portNumber)
 
# Perform Synchronization
$Subscription = $Wsus.GetSubscription()
$Subscription.StartSynchronization()
 
#EndRegion SCRIPT

Download the script here: Synchronize-Wsus (rename to .ps1)

Enjoy!
Hugo

»crosslinked«

No related posts.

  5 Responses to “Synchronize WSUS with Powershell”

  1. Thanks for the sync script. One question. Does it sync with Microsoft or an upstream server?

  2. Whichever you configured the server to sync with. It does the same thing as clicking on Synchronize Now in the WSUS console.

  3. Hi,

    I am seeking a way to sync computer in WSUS with AD OUs but no luck, do you think to make one script for that?…I’d love too but it seem out of my capability.

    TIA.

  4. Hi Chairuou,
    I am not sure what you mean. If you configured GPO’s to assign computers to a specific WSUS group, the computers should automatically appear in the proper group in WSUS. You can force a computer to talk to WSUS by running: wuauclt /detectnow on the computer.
    Hugo

  5. thanks for the script! very handy for me

 Leave a Reply

(required)

(required)

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong> <pre lang="" line="" escaped="" highlight="">

   
© 2012 PeetersOnline Suffusion theme by Sayontan Sinha