Cmdlets > Get-DtOnlineActivationRequest

Get-DtOnlineActivationRequest

Returns the server information that is required to activate a license

Syntax

Get-DtOnlineActivationRequest [-ServiceHost] <Server> [<CommonParameters>]

Detailed Description

This cmdlet returns server information, unique to a specific, single server, that is required to activate a Double-Take license. The server must already have an activation code on the server in order to get the server information.

Parameters

Name Type Description Required Pipeline Input
Service
Host
Server

Specify the server object returned from the New-DtServer cmdlet. For this cmdlet, the -ServiceHost could be your source or target server.

true false

Outputs

ServerActivationInformation

Examples

$DtServerObjectAlpha= New-DtServer -Name alpha -UserName domain\administrator -Password password

Get-DtOnlineActivationRequest -ServiceHost $DtServerObjectAlpha

Disconnect-DtServer -ServiceHost $DtServerObjectAlpha

A server object is created for the server alpha using the domain\administrator and password credentials. It assigns the server object to the variable called DtServerObjectAlpha. The server information for the online activation process is returned. The connections for the server object are then closed.