Skip to content

Install-PoshProToolsLicense

SYNOPSIS

Installs a PowerShell Pro Tools license.

SYNTAX

License

Install-PoshProToolsLicense -License <String> [-StoreInMemory] [<CommonParameters>]

Path

Install-PoshProToolsLicense -Path <String> [-StoreInMemory] [<CommonParameters>]

DESCRIPTION

Installs a PowerShell Pro Tools license.

EXAMPLES

Example 1

PS C:\> Install-PoshProToolsLicense -License "<License><Terms>asdfas</Terms></License>"

Installs the specified PowerShell Pro Tools license.

Example 2

PS C:\> Install-PoshProToolsLicense -Path .\license.txt

Installs the specified PowerShell Pro Tools license from a file.

PARAMETERS

-License

License to install. This should be the content of the license and not a path.

Type: System.String
Parameter Sets: License
Aliases:

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

-Path

Path to the license to install.

Type: System.String
Parameter Sets: Path
Aliases:

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

-StoreInMemory

Stores the license in memory and not on disk.

Type: System.Management.Automation.SwitchParameter
Parameter Sets: (All)
Aliases:

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

CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

INPUTS

None

OUTPUTS

System.Object

NOTES

Back to top