Changes for page Windows Server Update Services (WSUS)
Last modified by Sebastian Marsching on 2022/05/30 12:44
From version 3.1
edited by Sebastian Marsching
on 2022/05/30 12:27
on 2022/05/30 12:27
Change comment:
There is no comment for this version
To version 4.1
edited by Sebastian Marsching
on 2022/05/30 12:28
on 2022/05/30 12:28
Change comment:
There is no comment for this version
Summary
-
Page properties (1 modified, 0 added, 0 removed)
Details
- Page properties
-
- Content
-
... ... @@ -36,7 +36,6 @@ 36 36 37 37 ```bat 38 38 "%programfiles%\Update Services\Tools\WsusUtil.exe" configuressl <FQDN> 39 - 40 40 ``` 41 41 42 42 Require SSL (SSL Settings => Require SSL) for the following endpoints: ... ... @@ -55,9 +55,17 @@ 55 55 56 56 ```bat 57 57 cscript "%programfiles%\update services\setup\DynamicCompression.vbs" /enable "%programfiles%\Update Services\WebServices\suscomp.dll" 58 - 59 59 ``` 60 60 59 +# Importing updates into WSUS 60 + 61 + $wsus = Get-WsusServer 62 + $wsus.ImportUpdateFromCatalogSite('<Update ID>', '<Full path to update file>') 63 + 64 +(see https://www.windowspro.de/wolfgang-sommergut/updates-manuell-wsus-importieren-ie-powershell (in German)) 65 + 66 +Strong cryptography for the .NET Framework has to be enabled in order for this to work, but even then I somehow couldn’t make this method work, so I resorted to opening the Microsoft Update Catalog in Internet Explorer and directly importing the updates from there (that method worked for me). 67 + 61 61 # Resources 62 62 63 63 * WSUS Best Practices: <https://docs.microsoft.com/en-US/troubleshoot/mem/configmgr/windows-server-update-services-best-practices>