Run the following command on the WSUS Server in PowerShell:
(get-wsusserver).GetConfiguration().BitsDownloadPriorityForeground
This will show you whether the setting has been enabled or not. We want it to say 'True'.
It will most likely say "False" if you're experiencing slow downloads. Once you've confirmed this, type the following to set this to 'True":
- $Config = (Get-WsusServer).GetConfiguration()
- $Config.BitsDownloadPriorityForeground = $True
- $Config.Save()
Once you've used these three commands, run the first command again to confirm that this has changed over to 'True'. There's no need to restart the services. You should see that the downloads will speed up now.
Contact Winthrop Australia to find out how we can help you with your IT Support needs.
Thanks alot it worked for me
ReplyDeleteCan also report success with this. Thank you Adam.
ReplyDelete