Jak zlecić serwerowi WSUS synchronizację używając PowerShell?
Okazuje się, że bardzo prosto:
$wsusserver = ‘MYWSUS’
[reflection.assembly]::LoadWithPartialName(“Microsoft.UpdateServices.Administration”)
$wsus = [Microsoft.UpdateServices.Administration.AdminProxy]::getUpdateServer($wsusserver,$False)
$wsus.GetSubscription().StartSynchronization();
Ten i dużo dużo kolejnych pomysłów na wykorzystanie API serwera WSUS znalazłem w MSDN Library.
0 Responses
Stay in touch with the conversation, subscribe to the RSS feed for comments on this post.