Set-RASHALBDevicePriority
Last updated
Last updated
Set-RASHALBDevicePriority
Changes the priority (order) of a specified HALB device within the list of HALB devices.
Set-RASHALBDevicePriority [] (uint) [] (uint) [-] {Up | Down} [()]
Set-RASHALBDevicePriority [-] () [] (uint) [-] {Up | Down} [()]
Set-RASHALBDevicePriority [] (string) [[-] (uint)] [] (uint) [-] {Up | Down} [()]
Changes the priority (order) of a specified HALB device within the list of HALB devices.
The HALB Virtual Server ID.
The HALB Virtual Server Name.
The Site ID where the HALB Virtual Server resides.
The HALB Device ID.
Specifies in which direction to move the specified HALB Device.
Possible values: Up, Down
An object of type HALBSettings.
The object is obtained using the Get-RASHALB cmdlet.
(CommonParameters)
-none-
**---------- EXAMPLE 1 ----------
Set-RASHALBDevicePriority -HALBId 1 -DeviceId 2 -Direction Up
Increase priority of the HALB Device with ID 2 (Move it closer to the head of the list) of the HALB Virtual Server with ID 1. **---------- EXAMPLE 2 ----------
Set-RASHALBDevicePriority -HALBName "HALB-VS" -SiteId 1 -DeviceId 2 -Direction Up
Increase priority of Device with ID 2 (Move it closer to the tail of the list) of the HALB Virtual Server with name "HALB-VS" of site ID 1. **---------- EXAMPLE 3 ----------
Set-RASHALBDevicePriority -HALBId 1 -DeviceId 2 -Direction Down
Decrease priority of the HALB Device with ID 2 (Move it closer to the head of the list) of the HALB Virtual Server with ID 1. **---------- EXAMPLE 4 ----------
Set-RASHALBDevicePriority -HALBName "HALB-VS" -SiteId 1 -DeviceId 2 -Direction Down
Decrease priority of Device with ID 2 (Move it closer to the tail of the list) of the HALB Virtual Server with name "HALB-VS" of site ID 1.