Get-VamtProductKey
Retrieves product-key records from a VAMT database.
Syntax
Get-VamtProductKey
[-DbConnectionString <String>]
[-DbCommandTimeout <Int32>]
[<CommonParameters>]
Description
The Get-VamtProductKey cmdlet retrieves product key records from a dep_nextref_vamt database. You can use this cmdlet to retrieve a single product key or a list of product keys. The results are saved to a file, or a Microsoft.Licensing.VolumeActivation.Product object is returned.
Examples
Example 1: Get MAK keys
PS C:\>$MakKeys = Get-VamtProductKey | where { $_.keytype -eq 'mak' }
This command gets a list of MAK keys.
Parameters
-DbCommandTimeout
Indicates how long dep_nextref_vamt waits for a response from the database before timing out. The default value is 30 seconds.
Type: | Int32 |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | True |
Accept wildcard characters: | False |
-DbConnectionString
Specifies the database that the product key or list of product keys is retrieved from. If no database connection string is provided, dep_nextref_vamt attempts to use the database that the dep_nextref_vamt user console used on the local computer. If dep_nextref_vamt does not find a database, it returns an error. You can find the connection string in the dep_nextref_vamt UI in the Preferences dialog box. On the menu bar, click View, and then click Preferences to open the Volume Activation Management Tool Preferences dialog box. The connection string is in the Database Settings section under Current connection string.
Type: | String |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | True |
Accept wildcard characters: | False |