Get-VamtConfirmationId

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

Syntax

Get-VamtConfirmationId
   [-FileName] <String>
   [-ProxyPassword <String>]
   [-ProxyUserName <String>]
Get-VamtConfirmationId
   [-Products] <Product[]>
   [-ProxyPassword <String>]
Get-VamtConfirmationId
   [-ProxyUserName <String>]

Description

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.

Examples

Example 1

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

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

Example 2

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

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

Parameters

-FileName

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.

Type:String
Position:1
Default value:None
Required:True
Accept pipeline input:True
Accept wildcard characters:False

-Products

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

Type:Product[]
Position:1
Default value:None
Required:True
Accept pipeline input:True
Accept wildcard characters:False

-ProxyPassword

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

Type:String
Position:Named
Default value:None
Required:False
Accept pipeline input:True
Accept wildcard characters:False

-ProxyUserName

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

Type:String
Position:Named
Default value:None
Required:False
Accept pipeline input:True
Accept wildcard characters:False