Invoke-RASSitePromoteToLicensing
NAME
Invoke-RASSitePromoteToLicensing
SYNOPSIS
Promotes a RAS Site to Licensing.
SYNTAX
Invoke-RASSitePromoteToLicensing [Id] (uint) -Email (string) -Key (string) -Password (SecureString) [Force (SwitchParameter)] [MacAddress (string)] [RASAdminPassword (SecureString)] [RASAdminUsername (string)] [(CommonParameters)]
Invoke-RASSitePromoteToLicensing [Name] (string) -Email (string) -Key (string) -Password (SecureString) [MacAddress (string)] [RASAdminPassword (SecureString)] [RASAdminUsername (string)] [(CommonParameters)]
DESCRIPTION
Promotes a RAS Site to Licensing.
PARAMETERS
Name (string)
The name of the site to promote.
Required? true
Position? 0
Default value
Accept pipeline input? false
Accept wildcard characters? false
Id (uint)
The ID of the site to promote.
Required? true
Position? 0
Default value 0
Accept pipeline input? false
Accept wildcard characters? false
Email (string)
The email address you use to log in to Parallels My Account.
Required? true
Position? named
Default value
Accept pipeline input? false
Accept wildcard characters? false
Password (SecureString)
Your Parallels account password.
Required? true
Position? named
Default value
Accept pipeline input? false
Accept wildcard characters? false
Key (string)
Parallels RAS License Key. The key must be registered in Parallels My Account.
If you omit this parameter, the current license key will be used in activation.
Required? true
Position? named
Default value
Accept pipeline input? false
Accept wildcard characters? false
MacAddress (string)
Bind the license activation with a specific MAC address.
The MAC address should be in the format XX-XX-XX-XX-XX-XX.
To select a MAC address automatically, omit this parameter.
Required? false
Position? named
Default value
Accept pipeline input? false
Accept wildcard characters? false
RASAdminUsername (string)
Parallels RAS administrator username.
If this parameter is omitted, your RAS admin username (and password) will be used.
Required? false
Position? named
Default value
Accept pipeline input? false
Accept wildcard characters? false
RASAdminPassword (SecureString)
Parallels RAS administrator username.
Required? false
Position? named
Default value
Accept pipeline input? false
Accept wildcard characters? false
Force (SwitchParameter)
Force site promotion (without access to Licensing Site).
Required? false
Position? named
Default value False
Accept pipeline input? false
Accept wildcard characters? false
(CommonParameters)
This cmdlet supports the common parameters: Verbose, Debug,
ErrorAction, ErrorVariable, WarningAction, WarningVariable,
OutBuffer, PipelineVariable, and OutVariable. For more information, see
about_CommonParameters documentation.
INPUTS
-none-
OUTPUTS
-none-
EXAMPLES
**---------- EXAMPLE 1 ----------
Invoke-RASSitePromoteToLicensing -Id 5 -Email "[email protected]" -Password $SecretPass
Promotes the specified RAS Site (by ID) to Licensing and activates a new RAS Site license with same license key.
The $SecretPass variable must contain a password as SecureString.
If you omit the -Password parameter, you'll be asked to enter it when you execute the cmdlet. **---------- EXAMPLE 2 ----------
Invoke-RASSitePromoteToLicensing -Name Site2 -Email "[email protected]" -Password $SecretPass -Key "QPWO-WRET-XVBC-IOUP"
Promotes the specified RAS Site (by Name) to Licensing and activates a new RAS Site license using the specified key.
The $SecretPass variable must contain a password as SecureString.
If you omit the -Password parameter, you'll be asked to enter it when you execute the cmdlet.
RELATED LINKS
Last updated