Edit

Share via


Set-WsusServerSynchronization

Sets whether the WSUS server synchronizes from Microsoft Update or an upstream server.

Syntax

SyncFromMU

Set-WsusServerSynchronization
    [-UpdateServer <IUpdateServer>]
    [-SyncFromMU]
    [-WhatIf]
    [-Confirm]
    [<CommonParameters>]

Upstream

Set-WsusServerSynchronization
    -UssServerName <String>
    [-UpdateServer <IUpdateServer>]
    [-PortNumber <Int32>]
    [-UseSsl]
    [-Replica]
    [-WhatIf]
    [-Confirm]
    [<CommonParameters>]

Description

The Set-WsusServerSynchronization cmdlet sets whether the Windows Server Update Services (WSUS) server synchronizes from Microsoft Update or an upstream server. This cmdlet allows you to specify settings such as the upstream server name, the port number, and whether or not to use Secure Sockets Layer (SSL).

Examples

Example 1: Synchronize from a specified server

PS C:\> Set-WsusServerSynchronization -UssServerName "Test" -PortNumber 42 -UseSSL

This command specifies that the local WSUS Server is to synchronize from another server named Test using port number 42 and the SSL protocol.

Example 2: Synchronize from Microsoft Update

PS C:\> Set-WsusServerSynchronization -SyncFromMU
The Update Server was successfully configured with the following parameters: Synchronize from Microsoft Update

This command specifies that the local WSUS Server is to synchronize from Microsoft Update.

Parameters

-Confirm

Prompts you for confirmation before running the cmdlet.

Parameter properties

Type:SwitchParameter
Default value:False
Supports wildcards:False
DontShow:False
Aliases:cf

Parameter sets

(All)
Position:Named
Mandatory:False
Value from pipeline:False
Value from pipeline by property name:False
Value from remaining arguments:False

-PortNumber

Specifies the port number to use to communicate with the upstream WSUS server.

Parameter properties

Type:Int32
Default value:None
Supports wildcards:False
DontShow:False

Parameter sets

Upstream
Position:Named
Mandatory:False
Value from pipeline:False
Value from pipeline by property name:False
Value from remaining arguments:False

-Replica

Specifies whether the WSUS server is a replica server.

Parameter properties

Type:SwitchParameter
Default value:None
Supports wildcards:False
DontShow:False

Parameter sets

Upstream
Position:Named
Mandatory:False
Value from pipeline:False
Value from pipeline by property name:False
Value from remaining arguments:False

-SyncFromMU

Specifies that the WSUS server synchronizes updates from Microsoft Update.

Parameter properties

Type:SwitchParameter
Default value:None
Supports wildcards:False
DontShow:False

Parameter sets

SyncFromMU
Position:Named
Mandatory:True
Value from pipeline:False
Value from pipeline by property name:False
Value from remaining arguments:False

-UpdateServer

Specifies the object that contains the WSUS server. This value is obtained by calling the Get-WsusServer cmdlet and passing the resulting IUpdateServer object into this cmdlet.

Parameter properties

Type:IUpdateServer
Default value:None
Supports wildcards:False
DontShow:False

Parameter sets

(All)
Position:Named
Mandatory:False
Value from pipeline:True
Value from pipeline by property name:False
Value from remaining arguments:False

-UseSsl

Specifies that the WSUS server should use SSL via HTTPS to communicate with an upstream server.

Parameter properties

Type:SwitchParameter
Default value:None
Supports wildcards:False
DontShow:False

Parameter sets

Upstream
Position:Named
Mandatory:False
Value from pipeline:False
Value from pipeline by property name:False
Value from remaining arguments:False

-UssServerName

Specifies the name of a local server from which to synchronize updates.

Parameter properties

Type:String
Default value:None
Supports wildcards:False
DontShow:False

Parameter sets

Upstream
Position:Named
Mandatory:True
Value from pipeline:False
Value from pipeline by property name:False
Value from remaining arguments:False

-WhatIf

Shows what would happen if the cmdlet runs. The cmdlet is not run.

Parameter properties

Type:SwitchParameter
Default value:False
Supports wildcards:False
DontShow:False
Aliases:wi

Parameter sets

(All)
Position:Named
Mandatory:False
Value from pipeline:False
Value from pipeline by property name:False
Value from remaining arguments:False

CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutBuffer, -OutVariable, -PipelineVariable, -ProgressAction, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

Inputs

Microsoft.UpdateServices.Administration.IUpdateServer

Outputs

Object