Get-VMConnectAccess

Get-VMConnectAccess

Gets entries showing users and the virtual machines to which they can connect on one or more Hyper-V hosts.

구문

Parameter Set: VMName
Get-VMConnectAccess [[-VMName] <String[]> ] [-ComputerName <String[]> ] [-UserName <String[]> ] [ <CommonParameters>]

Parameter Set: VMId
Get-VMConnectAccess [-VMId] <Guid[]> [-ComputerName <String[]> ] [-UserName <String[]> ] [ <CommonParameters>]

Parameter Set: VMObject
Get-VMConnectAccess [-VM] <VirtualMachine[]> [-ComputerName <String[]> ] [-UserName <String[]> ] [ <CommonParameters>]

자세한 설명

The Get-VMConnectAccess cmdlet gets entries showing users and the virtual machines to which they can connect on one or more Hyper-V hosts. This cmdlet is intended for use in providing other applications with the appropriate permissions required to initiate a session with the Virtual Machine Connection protocol. Examples of such applications are Virtual Machine Manager.

매개 변수

-ComputerName<String[]>

Specifies one or more virtual machine hosts on which connect access entries are being sought. NetBIOS names, IP addresses, and fully-qualified domain names are allowable. The default is the local computer — use “localhost” or a dot (“.”) to specify the local computer explicitly.

별칭

없음

필수 여부

false

위치

named

기본값

.

파이프라인 입력 적용 여부

false

와일드카드 문자 허용 여부

false

-UserName<String[]>

Specifies the user or users for whom connect access entries are being sought, in one of the following forms:

Local User Account:
     john
     ComputerName\john

Domain User Account:
     CONTOSO\john
     Contoso.com\john

User Principal Name (UPN):
     john@contoso.com

Security Identifier:
     S-1-5-21-3165297888-301567370-576410423-1103

별칭

UserId,Sid

필수 여부

false

위치

named

기본값

없음

파이프라인 입력 적용 여부

True (ByPropertyName)

와일드카드 문자 허용 여부

false

-VM<VirtualMachine[]>

Specifies an array of virtual machine objects. The cmdlet gets the connect access entries for the virtual machines that you specify. To obtain a virtual machine object, use the Get-VM cmdlet.

별칭

없음

필수 여부

true

위치

1

기본값

없음

파이프라인 입력 적용 여부

True (ByValue)

와일드카드 문자 허용 여부

false

-VMId<Guid[]>

Specifies the unique identifier of a virtual machine for which connect access entries are being sought.

별칭

없음

필수 여부

true

위치

1

기본값

없음

파이프라인 입력 적용 여부

True (ByValue, ByPropertyName)

와일드카드 문자 허용 여부

false

-VMName<String[]>

Specifies the name of the virtual machine for which connect access entries are being sought.

별칭

없음

필수 여부

false

위치

1

기본값

없음

파이프라인 입력 적용 여부

True (ByValue)

와일드카드 문자 허용 여부

false

<CommonParameters>

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

입력

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

출력

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

  • Microsoft.HyperV.PowerShell.VMConnectAce

예제

Example 1

This command gets a list of all the users who have access to connect to any virtual machine on the local computer. The example assumes that the Grant-VMConnectAccess has been run previously for at least one user account.

PS C:\> Get-VMConnectAccess

Example 2

This command gets a list of all the users who have access to connect to virtual machine VM1. The example assumes that the Grant-VMConnectAccess has been run previously for at least one user account for virtual machine VM1.

PS C:\> Get-VMConnectAccess –VMName VM1

Example 3

This command gets a list of all the virtual machines on the local computer that user Contoso\John has access to connect to. The example assumes that the Grant-VMConnectAccess has been run previously to grant access to Contoso\John.

PS C:\> Get-VMConnectAccess –UserName CONTOSO\John