PowerShell Logo Small

Set-WsusClassification



This is the built-in help made by Microsoft for the command 'Set-WsusClassification', in PowerShell version 3 - as retrieved from Windows version 'Microsoft Windows Server 2012 Standard' PowerShell help files on 2016-06-23.

For PowerShell version 3 and up, where you have Update-Help, this command was run just before creating the web pages from the help files.

SYNOPSIS

Sets whether the classifications of updates that Windows Server Update Services (WSUS) synchronizes are enabled or disabled.

SYNTAX


Set-WsusClassification [-Disable] -Classification <WsusClassification> [-Confirm] [-WhatIf] [<CommonParameters>]



Search powershellhelp.space

DESCRIPTION


The Set-WsusClassification cmdlet enables or disables the category of updates (for example security or critical) to be synchronized.


Using this cmdlet without filtering results. The Get-WsusClassification cmdlet must be run, then the results are piped it into this cmdlet.


Using this cmdlet with filtered results. The Get-WsusClassification cmdlet must be run, then results are filtered using the Where-Object
cmdlet and piped into this cmdlet.



<

RELATED LINKS

Online Version: http://go.microsoft.com/fwlink/?LinkId=789406
Where-Object
Get-WsusClassification

REMARKS

<

Examples


EXAMPLE 1

PS C:\> Get-WsusClassification | Where-Object –FilterScript {$_.Classification.Title -Eq "Drivers"} | Set-WsusClassification -Disable



This example specifies that you do not want driver updates.