Add-RASVDIHostPoolMember
NAME
Add-RASVDIHostPoolMember
SYNOPSIS
Adds one or multiple VDI Host Pool Members to a standalone VDI Host Pool.
SYNTAX
Add-RASVDIHostPoolMember [-VDIHostPoolId] <uint> -Name <string> -Type {AllHostsInProvider | AllGuestsInProvider | Host | Guest | NativePool | Template | TemplateGuest | TemplateVersion} [-NativePoolId <string>] [-NoInstall <SwitchParameter>] [-ProviderId <uint>] [-VMId <string>] [-VMIds <List`1>] [<CommonParameters>]
Add-RASVDIHostPoolMember [-VDIHostPoolId] <uint> -Name <string> -Password <SecureString> -Type {AllHostsInProvider | AllGuestsInProvider | Host | Guest | NativePool | Template | TemplateGuest | TemplateVersion} -Username <string> [-NativePoolId <string>] [-ProviderId <uint>] [-VMId <string>] [-VMIds <List`1>] [<CommonParameters>]
Add-RASVDIHostPoolMember [-InputObject] <VDIHostPool> -Name <string> -Type {AllHostsInProvider | AllGuestsInProvider | Host | Guest | NativePool | Template | TemplateGuest | TemplateVersion} [-NativePoolId <string>] [-NoInstall <SwitchParameter>] [-ProviderId <uint>] [-VMId <string>] [-VMIds <List`1>] [<CommonParameters>]
Add-RASVDIHostPoolMember [-InputObject] <VDIHostPool> -Name <string> -Password <SecureString> -Type {AllHostsInProvider | AllGuestsInProvider | Host | Guest | NativePool | Template | TemplateGuest | TemplateVersion} -Username <string> [-NativePoolId <string>] [-ProviderId <uint>] [-VMId <string>] [-VMIds <List`1>] [<CommonParameters>]
Add-RASVDIHostPoolMember [-VDIHostPoolName] <string> [[-SiteId] <uint>] -Name <string> -Type {AllHostsInProvider | AllGuestsInProvider | Host | Guest | NativePool | Template | TemplateGuest | TemplateVersion} [-NativePoolId <string>] [-NoInstall <SwitchParameter>] [-ProviderId <uint>] [-VMId <string>] [-VMIds <List`1>] [<CommonParameters>]
Add-RASVDIHostPoolMember [-VDIHostPoolName] <string> [[-SiteId] <uint>] -Name <string> -Password <SecureString> -Type {AllHostsInProvider | AllGuestsInProvider | Host | Guest | NativePool | Template | TemplateGuest | TemplateVersion} -Username <string> [-NativePoolId <string>] [-ProviderId <uint>] [-VMId <string>] [-VMIds <List`1>] [<CommonParameters>]
DESCRIPTION
Adds one or multiple VDI Host Pool Members to an existing standalone VDI Host Pool.
PARAMETERS
-VDIHostPoolName <string> The VDI Host Pool name.
-SiteId <uint> Site ID where the VDI Host Pool is located.
If the parameter is omitted, the site ID of the Licensing Server will be used.
-VDIHostPoolId <uint> The VDI Host Pool ID.
-InputObject <VDIHostPool> An object of type VDIHostPool identifying the target VDI Host Pool.
The object is obtained using the Get-RASVDIHostPool cmdlet.
-Type <VDIHostPool> The VDI Host Pool Member Type.
The type can either be: ALLGUESTSINPROVIDER, GUEST, NATIVEPOOL, TEMPLATEGUEST or TEMPLATEVERSION.
Possible values: AllHostsInProvider, AllGuestsInProvider, Host, Guest, NativePool, Template, TemplateGuest, TemplateVersion
-Name <string> The VDI Host Pool Member Name.
-ProviderId <uint> The VDI Host Pool Member Provider ID.
This parameter is only accepted with Types: ALLGUESTSONPROVIDER, GUEST or NATIVEPOOL.
-VMId <string> The VDI Host Pool Member Guest ID.
This parameter is only accepted with Type: GUEST.
-NativePoolId <string> The VDI Host Pool Member Native Pool ID.
This parameter is only accepted with Type: NATIVEPOOL.
-NoInstall <SwitchParameter> Specifies not to install the RAS Guest Agent on the server.
If this parameter is omitted, the agent will be push installed in the VM using your RAS admin credentials.
To specify different credentials for push installation, use the Username and Password parameters.
This parameter can be used in situations when the RAS Guest Agent is already installed in a VM, but the VM is powered down.
By including this parameter, you will simply power up the VM and make it available for Parallels RAS operations.
-Username <string> An administrator account for push installing the RAS Guest Agent in the VM.
If this parameter is omitted, your RAS admin username (and password) will be used.
-Password <SecureString> The password of the account specified in the Username parameter.
-VMIds <List`1> The VDI Host Pool Member Desktops IDs.
This parameter is only accepted with Type: ALLDESKTOPSONPROVIDER.
<CommonParameters>
INPUTS
OUTPUTS
-none-
EXAMPLES
---------- EXAMPLE 1 ----------
Add-RASVDIHostPoolMember -VDIHostPoolName "My VDI Host Pool" -Type ALLGUESTSONPROVIDER -Name "MY VDI Host Pool Member" -ProviderId 1
Adds the specified VDI Host Pool Member to the specified standalone VDI Host Pool.
The Type ALLGUESTSONPROVIDER requires the ProviderId to be specified. ---------- EXAMPLE 2 ----------
Add-RASVDIHostPoolMember -VDIHostPoolName "My VDI Host Pool" -Type GUEST -Name "MY VDI Host Pool Member" -ProviderId 1 -VMId 42312685-05c9-ca51-342d-b3943046edf1
Adds the specified VDI Host Pool Member to the specified standalone VDI Host Pool.
The Type GUEST requires the ProviderId and VDIDesktopId to be specified. ---------- EXAMPLE 3 ----------
Add-RASVDIHostPoolMember -VDIHostPoolName "My VDI Host Pool" -Type NATIVEPOOL -Name "MY VDI Host Pool Member" -ProviderId 1 -NativePoolId 1
Adds the specified VDI Host Pool Member to the specified standalone VDI Host Pool.
The Type NATIVEPOOL requires the ProviderId and NativePoolId to be specified.
RELATED LINKS
Last updated