PS Script to sync with local WSUS

Bullet07

New Member
Hello,

We are trying to build a powershell script which will be executed on any client which should be able to search/install windows updates from a wsus server which resides in our network but it is not the default option in the clients configuration. The severs are configured with let's say wsus server X and we are trying to sync with wsus server Z and very important, we should not modify the client configuration.

We tried to find a module/option to achive what we described without any luck.

Did anyone tried something similar ? if yes, any hints ?

Thanks in advance
 
WSUS doesn't act any different than updates from Microsoft. As long as you have WSUS settings enabled via GPO or other configuration tool. Getting and installing updates is no different. If you want you could leverage the Powershell module PSWindowsUpdate which would make your script a one liner of
Code:
Install-WindowsUpdate
 
Back
Top