Jump to content

***WSUS Important*** - Synchronization Endpoint being Decommissioned 8/07/2019


Recommended Posts

Posted
Run this Powershell Script on your WSUS/SCUP Servers.

The script you posted above has been messed up by the quote tags (the last three lines have been merged into one).

 

$server = Get-WsusServer
$config = $server.GetConfiguration()

# Check current settings before you change them 
$config.MUUrl
$config.RedirectorChangeNumber

# Update the settings if MUUrl is https://fe2.update.microsoft.com/v6
$config.MUUrl = "https://sws.update.microsoft.com"
$config.RedirectorChangeNumber = 4002
$config.Save()
iisreset
Restart-Service *Wsus* -v

  • Thanks 4

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now



×
×
  • Create New...