次の方法で共有


Set-WsusDynamicCategory

適用対象: Windows 10, Windows Server Technical Preview

Set-WsusDynamicCategory

Sets the synchronization status of a dynamic category.

構文

Parameter Set: ByName
Set-WsusDynamicCategory -DynamicCategoryType <DynamicCategoryType> {ComputerModel | Device | Application | Any} -Name <String> -Status <WsusDynamicCategoryStatus> [-InformationAction <ActionPreference> {SilentlyContinue | Stop | Continue | Inquire | Ignore | Suspend} ] [-InformationVariable <String> ] [-UpdateServer <IUpdateServer> ] [ <CommonParameters>]

Parameter Set: ByObject
Set-WsusDynamicCategory -InputObject <IDynamicCategory> [-InformationAction <ActionPreference> {SilentlyContinue | Stop | Continue | Inquire | Ignore | Suspend} ] [-InformationVariable <String> ] [-Status <WsusDynamicCategoryStatus> ] [-UpdateServer <IUpdateServer> ] [ <CommonParameters>]

詳細説明

The Set-WsusDynamicCategory cmdlet sets the synchronization status of a dynamic category in a specified Windows Server Update Services (WSUS) server.

パラメーター

-DynamicCategoryType<DynamicCategoryType>

Specifies the type of the dynamic category that this cmdlet modifies. このパラメーターに指定できる値は、次のとおりです。

-- ComputerModel
-- Device
-- Application

Aliases

Type

必須/オプション

true

位置

named

既定値

none

パイプライン入力の受け入れ

false

ワイルドカード文字の受け入れ

false

-InformationAction<ActionPreference>

Specifies how this cmdlet responds to an information event. このパラメーターに指定できる値は、次のとおりです。

-- Continue
-- Ignore
-- Inquire
-- SilentlyContinue
-- Stop
-- Suspend

Aliases

infa

必須/オプション

false

位置

named

既定値

none

パイプライン入力の受け入れ

false

ワイルドカード文字の受け入れ

false

-InformationVariable<String>

Specifies an information variable.

Aliases

iv

必須/オプション

false

位置

named

既定値

none

パイプライン入力の受け入れ

false

ワイルドカード文字の受け入れ

false

-InputObject<IDynamicCategory>

Specifies a dynamic category object. This cmdlet modifies the synchronization settings for the dynamic category that this parameter specifies. To obtain a dynamic category, use the Get-WsusDynamicCategory cmdlet.

Aliases

none

必須/オプション

true

位置

named

既定値

none

パイプライン入力の受け入れ

true (ByValue)

ワイルドカード文字の受け入れ

false

-Name<String>

Specifies the name of the dynamic category to modify.

Aliases

none

必須/オプション

true

位置

named

既定値

none

パイプライン入力の受け入れ

false

ワイルドカード文字の受け入れ

false

-Status<WsusDynamicCategoryStatus>

Specifies the update synchronization status for the dynamic category. このパラメーターに指定できる値は、次のとおりです。

-- Blocked. No updates are being synchronized for this dynamic category.
-- SyncUpdates. Updates are being synchronized for this dynamic category.

Aliases

none

必須/オプション

true

位置

named

既定値

none

パイプライン入力の受け入れ

false

ワイルドカード文字の受け入れ

false

-UpdateServer<IUpdateServer>

Specifies a WSUS server. This cmdlet modifies a dynamic category on the server that this parameter specifies. To obtain a server, use the Get-WsusServer cmdlet. If you do not specify a value for this parameter, the cmdlet modifies dynamic categories on the local server.

Aliases

none

必須/オプション

false

位置

named

既定値

none

パイプライン入力の受け入れ

false

ワイルドカード文字の受け入れ

false

<CommonParameters>

このコマンドレットは共通のパラメーターをサポートしています(-Verbose、-Debug、-ErrorAction、-ErrorVariable、-OutBuffer、および -OutVariable)。詳細については、TechNet の「 「about_CommonParameters」 (https://go.microsoft.com/fwlink/p/?LinkID=113216) を参照してください。

入力

入力型は、コマンドレットにパイプできるオブジェクトの型です。

  • IDynamicCategory

出力

出力型は、コマンドレットが出力するオブジェクトの型です。

  • None

使用例

Example 1: Set the synchronization status of a dynamic category

This command gets a dynamic category from the local server by using the Get-WsusDynamicCategory cmdlet. The command passes the dynamic category to the current cmdlet by using the pipeline operator. The current cmdlet sets the synchronization status to Blocked. This value means that no updates are synchronized for this dynamic category.

PS C:\> Get-WsusDynamicCategory -DynamicCategoryType Device -Name "PCI/Device07" | Set-WsusDynamicCategory -Status Blocked 

関連項目

Add-WsusDynamicCategory

Get-WsusDynamicCategory

Remove-WsusDynamicCategory

Get-WsusServer