Get-SCDependentLibraryResource
VMM 개체 간의 종속성을 식별합니다.
Syntax
Get-SCDependentLibraryResource
[-VMMServer <ServerConnection>]
[-LibraryResource] <LibObjectBase>
[-OnBehalfOfUser <String>]
[-OnBehalfOfUserRole <UserRole>]
[<CommonParameters>]
Get-SCDependentLibraryResource
[-VMMServer <ServerConnection>]
[-LibraryShare] <LibraryShare>
[-OnBehalfOfUser <String>]
[-OnBehalfOfUserRole <UserRole>]
[<CommonParameters>]
Get-SCDependentLibraryResource
[-VMMServer <ServerConnection>]
[-LibraryServer] <LibraryServer>
[-OnBehalfOfUser <String>]
[-OnBehalfOfUserRole <UserRole>]
[<CommonParameters>]
Description
Get-SCDependentLibraryResource cmdlet은 VMM(Virtual Machine Manager) 개체 간의 종속성을 식별합니다.
Get-SCDependentLibraryResource cmdlet을 사용하여 다음의 존재에 종속된 개체를 식별할 수 있습니다.
지정된 라이브러리 개체입니다.
지정된 라이브러리 공유의 모든 개체입니다.
지정된 라이브러리 서버의 모든 개체입니다.
예제
예제 1: 특정 가상 하드 디스크에 의존하는 모든 개체 찾기
PS C:\> $VHD = Get-SCVirtualHardDisk -VMMServer "VMMServer01.Contoso.com" | where { $_.Name -eq "VHD01" -and $_.LibraryServer.Name -eq "LibraryServer01.Contoso.com" }
PS C:\> Get-SCDependentLibraryResource -LibraryResource $VHD
첫 번째 명령은 VMMServer01의 VMM 라이브러리에서 LibraryServer01의 VHD01이라는 하드 디스크 개체를 가져오고 개체를 $VHD 변수에 저장합니다. 이 예에서는 가상 하드 디스크가 VHD01 하나만 있다고 가정합니다.
두 번째 명령은 VHD01에 종속적인 모든 라이브러리 개체를 반환합니다.
종속 개체가 있는 경우 이 가상 하드 디스크를 제거하면 제거된 가상 하드 디스크를 더 이상 참조하지 않도록 해당 종속 개체가 수정됩니다. 따라서 VHD01에 특정 가상 컴퓨터 또는 특정 템플릿이 연결되어 있는 경우 제거된 VHD01을 더 이상 참조하지 않도록 해당 가상 컴퓨터 또는 템플릿이 수정됩니다.
매개 변수
-LibraryResource
VMM 라이브러리에 저장된 리소스를 지정합니다.
Type: | LibObjectBase |
Aliases: | LibraryObject |
Position: | 0 |
Default value: | None |
Required: | True |
Accept pipeline input: | True |
Accept wildcard characters: | False |
-LibraryServer
VMM 라이브러리 서버 개체를 지정합니다.
Type: | LibraryServer |
Position: | 0 |
Default value: | None |
Required: | True |
Accept pipeline input: | True |
Accept wildcard characters: | False |
-LibraryShare
VMM 라이브러리 공유 개체를 지정합니다.
Type: | LibraryShare |
Position: | 0 |
Default value: | None |
Required: | True |
Accept pipeline input: | True |
Accept wildcard characters: | False |
-OnBehalfOfUser
사용자 이름을 지정합니다. 이 cmdlet은 이 매개 변수가 지정하는 사용자를 대신하여 작동합니다.
Type: | String |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-OnBehalfOfUserRole
사용자 역할을 지정합니다. 사용자 역할을 가져오려면 Get-SCUserRole cmdlet을 사용합니다. 이 cmdlet은 이 매개 변수가 지정하는 사용자 역할을 대신하여 작동합니다.
Type: | UserRole |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-VMMServer
VMM 서버 개체를 지정합니다.
Type: | ServerConnection |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | True |
Accept wildcard characters: | False |
출력
HardwareProfile
이 cmdlet은 HardwareProfile 개체를 반환합니다.