Popular Post free780 Posted July 4, 2019 Popular Post Posted July 4, 2019 (edited) https://techcommunity.microsoft.com/t5/Configuration-Manager-Blog/WSUS-synchronization-endpoint-being-decommissioned-on-Monday/ba-p/737039 https://support.microsoft.com/en-us/help/4482416/wsus-synchronization-fails-with-soapexception Run this Powershell Script on your WSUS/SUP Servers. $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 Hopefully will save anyone having issues on Monday. Also if your Installing the WSUS/SUP role in the future you may need to run the script. Edited July 4, 2019 by free780 QUOTE Tag Error 5
Arthur Posted July 4, 2019 Posted July 4, 2019 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 4
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now