Connect-To: Add WSUS Connection Type #4

Closed
opened 2017-09-26 08:13:27 +02:00 by OCram85 · 0 comments
Owner

General

Add another connection type called WSUS. Should simplify connecting and working with a remote WSUS instance.

Snippets

[void][reflection.assembly]::LoadWithPartialName("Microsoft.UpdateServices.Administration")  
$ServerName = "XXXX"
$useSecureConnection = $false
$portNumber = 8530
$wsus = [Microsoft.UpdateServices.Administration.AdminProxy]::getUpdateServer($serverName, $useSecureConnection, $portNumber)

https://mcpmag.com/articles/2016/01/20/connecting-to-wsus-with-powershell.aspx
https://blogs.technet.microsoft.com/sudheesn/2015/02/26/connect-to-wsus-server-from-powershell/

General --------- Add another connection type called WSUS. Should simplify connecting and working with a remote WSUS instance. Snippets ---------- ```powershell [void][reflection.assembly]::LoadWithPartialName("Microsoft.UpdateServices.Administration") $ServerName = "XXXX" $useSecureConnection = $false $portNumber = 8530 $wsus = [Microsoft.UpdateServices.Administration.AdminProxy]::getUpdateServer($serverName, $useSecureConnection, $portNumber) ``` Related Links --------------- https://mcpmag.com/articles/2016/01/20/connecting-to-wsus-with-powershell.aspx https://blogs.technet.microsoft.com/sudheesn/2015/02/26/connect-to-wsus-server-from-powershell/
Sign in to join this conversation.
No Milestone
No Assignees
1 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: OCram85/PSCredentialStore#4
No description provided.