Get-SCOperatingSystem
VMM 데이터베이스에서 유효한 운영 체제 개체를 가져옵니다.
Syntax
Get-SCOperatingSystem
[-VMMServer <ServerConnection>]
[<CommonParameters>]
Get-SCOperatingSystem
[-VMMServer <ServerConnection>]
-ID <Guid>
[<CommonParameters>]
Get-SCOperatingSystem
[-VMMServer <ServerConnection>]
-ApplicationProfile <ApplicationProfile>
[<CommonParameters>]
Description
Get-SCOperatingSystem cmdlet은 VMM(Virtual Machine Manager) 데이터베이스에서 하나 이상의 운영 체제 개체를 가져옵니다. 운영 체제 개체는 특정 가상 하드 디스크에 설치된 운영 체제를 식별하는 데 사용됩니다.
예제
예제 1: VMM 환경에서 모든 운영 체제 개체 가져오기
PS C:\> Get-SCOperatingSystem -VMMServer "VMMServer01.Contoso.com"
이 명령은 VMMServer01의 VMM 데이터베이스에서 모든 운영 체제 개체를 가져오고 이러한 운영 체제 개체에 대한 정보를 사용자에게 표시합니다.
예제 2: 지정된 프로세서 아키텍처를 사용하여 VMM 환경에서 모든 운영 체제 개체 가져오기
PS C:\> Get-OperatingSystem -VMMServer "VMMServer01.Contoso.com" | where {$_.Architecture -eq "amd64"} | Format-Table -Property Name,Architecture
이 명령은 VMMServer01에서 모든 운영 체제 개체를 가져오고 amd64 프로세서 아키텍처가 있는 운영 체제만 선택합니다. 이 명령은 Format-Table cmdlet을 사용하여 선택한 각 운영 체제의 이름 및 아키텍처 속성만 표시합니다.
매개 변수
-ApplicationProfile
애플리케이션 프로필 개체를 지정합니다.
Type: | ApplicationProfile |
Position: | Named |
Default value: | None |
Required: | True |
Accept pipeline input: | True |
Accept wildcard characters: | False |
-ID
특정 개체의 숫자 식별자를 전역적으로 고유한 식별자 또는 GUID로 지정합니다.
Type: | Guid |
Position: | Named |
Default value: | None |
Required: | True |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-VMMServer
VMM 서버 개체를 지정합니다.
Type: | ServerConnection |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
출력
OperatingSystem
이 cmdlet은 OperatingSystem 개체를 반환합니다 .