Parallels RAS PowerShell - Basic Example

#Establish a connection with Parallels RAS (Replace Administrator with your RAS root account). New-RASSession Administrator
#Add a RAS Secure Gateway (replace 'gw.company.dom' with a valid FQDN, computername, or IP address). New-RASGateway -Server "gw.company.dom"
#Add an RD Session Host server (replace 'rds.company.dom' with a valid FQDN, computer name, or IP address). New-RASRDS -Server "rds.company.dom"
#Add a published desktop. New-RASPubRDSDesktop -Name "PubDesktop"
#Activate Parallels RAS as a trial (you will have to provide a valid Parallels My Account email and password). Invoke-RASLicenseActivate
#Apply all settings. This cmdlet performs the same action as the Apply button in the RAS console. Invoke-RASApply
#End the current RAS session. Remove-RASSession