MovGP0        Über mich        Hilfen        Artikel        Weblinks        Literatur        Zitate        Notizen        Programmierung        MSCert        Physik      


Windows Server Update Services (WSUS)

Bearbeiten
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()

|}