Benutzer:MovGP0/Core Server/WSUS
aus Wikipedia, der freien Enzyklopädie
Windows Server Update Services (WSUS)
Install-WindowsFeature -Name UpdateServices -IncludeManagementTools
New-Item -Path C:\WSUS -ItemType Directory
.\wsutil.exe postinstall CONTENT_DIR=C:\WSUS
# sync with Microsoft Update server
Set-WsusServerSyncronisation -SyncFromMU
$wsusConfig.AllUpdate-LanguagesEnabled = $false
$wsusConfig.SetEnabledUpdateLanguages(@("en","de"))
$wsusConfig.Save()
$subscription = $wsusConfig.GetSubscription()
$subscription.StartSynchronization()
|