Agent Example
Last updated
Last updated
#Establish a connection with Parallels RAS (Replace Administrator with your RAS root account). Administrator
#Adding two RAS RDSs -Server "rds1.company.dom" -Username administrator -Server "rds2.company.dom" -Username administrator
#Apply all settings. This cmdlet performs the same action as the Apply button in the RAS console.
# Get all available RAS Agents information
# Get the RAS Agent information (by server name 'rds1.company.dom') -Server rds1.company.dom | Format-Table
#Update RDS RAS Agent (by input object) $rdsAgent = -Server rds1.company.dom -InputObject $rdsAgent -Username administrator
© 2025 Parallels International GmbH. Parallels and the Parallels logo are trademarks or registered trademarks of Parallels International GmbH in Canada, the U.S., and/or elsewhere.
#Update RDS RAS Agent (by server name 'rds2.company.dom') -Server rds2.company.dom -Username administrator
# Get all RAS Agents information of type RDS -ServerType RDS | Format-Table
# Removing RAS Agent (by server name 'rds2.company.dom') -Server rds2.company.dom -Username administrator
#Apply all settings. This cmdlet performs the same action as the Apply button in the RAS console.
# Get all available RAS Agents information
#End the current RAS session.