Get-VamtConfirmationId

Get-VamtConfirmationId

Acquires confirmation IDs (CIDs) from the Microsoft licensing servers during proxy activation.

구문

Parameter Set: CilX
Get-VamtConfirmationId [-FileName] <String> [-ProxyPassword <String> ] [-ProxyUserName <String> ] [ <CommonParameters>]

Parameter Set: Product
Get-VamtConfirmationId [-Products] <Product[]> [-ProxyPassword <String> ] [ <CommonParameters>]

Parameter Set: Products
Get-VamtConfirmationId [-ProxyUserName <String> ] [ <CommonParameters>]

자세한 설명

The Get-VamtConfirmationID cmdlet acquires the confirmation IDs (CIDs) from the Microsoft licensing servers during proxy activation. All products either in the Windows PowerShell object or in the .cilx file are updated with the results.

매개 변수

-FileName<String>

Specifies the name of the file that contains the products that need CIDs. Use the FileName parameter during proxy activation to acquire CIDs for all products in the specified .cilx file. You cannot use the FileName parameter together with the Products parameter.

별칭

없음

필수 여부

true

위치

1

기본값

없음

파이프라인 입력 적용 여부

true (ByValue, ByPropertyName)

와일드카드 문자 허용 여부

false

-Products<Product[]>

Specifies the products in that need CIDs. By default, if you don't specify a product, CIDs are retrieved for all products in . You cannot use the Products parameter together with the FileName parameter.

별칭

없음

필수 여부

true

위치

1

기본값

없음

파이프라인 입력 적용 여부

true (ByValue, ByPropertyName)

와일드카드 문자 허용 여부

false

-ProxyPassword<String>

Password for a proxy server or gateway, if required for your environment.

별칭

없음

필수 여부

false

위치

named

기본값

없음

파이프라인 입력 적용 여부

true (ByValue, ByPropertyName)

와일드카드 문자 허용 여부

false

-ProxyUserName<String>

User name for a proxy server or gateway, if required for your environment.

별칭

없음

필수 여부

false

위치

named

기본값

없음

파이프라인 입력 적용 여부

true (ByValue, ByPropertyName)

와일드카드 문자 허용 여부

false

<CommonParameters>

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

예제

Example 1

This command gets the CIDs for the products in the specified file.

PS C:\> get-vamtconfirmationid -filename "c:\users\me\desktop\vamtdata.cilx"

Example 2

This command gets a product object with all products and gets the confirmation IDs for these products.

PS C:\> $productinfo = get-vamtproduct
PS C:\> $updatedproductinfo = get-vamtconfirmationid -products $productinfo

관련 항목

Install-VamtConfirmationId