Get-WsusClassification

업데이트 날짜: 2013년 10월

적용 대상: Windows 8.1, Windows PowerShell 4.0, Windows Server 2012 R2

Get-WsusClassification

Get the list of all Windows Server Update Services (WSUS) classifications currently available in the system.

구문

Parameter Set: Default
Get-WsusClassification [-UpdateServer <IUpdateServer> ] [ <CommonParameters>]

자세한 설명

The Get-WsusClassification cmdlet gets the list of all Windows Server Update Services (WSUS) classifications. This list can be filtered using the Where-Object cmdlet with the results piped into the Set-WsusClassification cmdlet.

매개 변수

-UpdateServer<IUpdateServer>

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

별칭

Server

필수 여부

false

위치

named

기본값

없음

파이프라인 입력 적용 여부

true (ByValue)

와일드카드 문자 허용 여부

false

<CommonParameters>

이 cmdlet은 일반 매개 변수 -Verbose, -Debug, -ErrorAction, -ErrorVariable, -OutBuffer 및 -OutVariable을 지원합니다. 자세한 내용은 다음을 참조하세요. about_CommonParameters(https://go.microsoft.com/fwlink/p/?LinkID=113216).

입력

입력 유형은 cmdlet에 파이프할 수 있는 개체의 유형입니다.

  • Microsoft.UpdateServices.Commands.IUpdateServer

    IUpdateServer

출력

출력 유형은 cmdlet이 내보내는 개체의 유형입니다.

예제

EXAMPLE 1

This example gets all classifications and prints them to the screen.

PS C:\> Get-WsusServer | Get-WsusClassification

EXAMPLE 2

This example gets the classification with a title of Drivers.

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

관련 항목

Set-WsusClassification

Where-Object