Remove-RASAdminAccount
Removes an administrator account from the farm.
Remove-RASAdminAccount [-Id] <uint> [-ForceDelete <SwitchParameter>] [<CommonParameters>]
Remove-RASAdminAccount [-InputObject] <AdminAccount> [-ForceDelete <SwitchParameter>] [<CommonParameters>]
Remove-RASAdminAccount [-Name] <string> [-ForceDelete <SwitchParameter>] [<CommonParameters>]
Removes an administrator account from the Parallels RAS farm.
-Name <string> The user name of an administrator to remove from the farm.
-Id <uint> The ID of an administrator to remove from the farm.
To obtain the ID, use the Get-RASAdminAccount cmdlet.
-InputObject <AdminAccount> An object representing a Parallels RAS administrator to remove from the farm.
To obtain the object, use the Get-RASAdminAccount command."
-ForceDelete <SwitchParameter> Force the administrator deletion.
If supplied, any logged on sessions owned by this administrator will be logged off and then the administrator will be deleted.
<CommonParameters>
-none-
---------- EXAMPLE 1 ----------
Remove-RASAdminAccount "Jane"
Removes the specified administrator account from the farm. ---------- EXAMPLE 2 ----------
Remove-RASAdminAccount -Id 10
Removes a RAS farm administrator account specified by ID. To obtain the ID, use the Get-RASAdminAccount cmdlet. ---------- EXAMPLE 3 ----------
Get-RASAdminAccount -Id 10 | Remove-RASAdminAccount
Removes a RAS farm administrator account identified by an object obtained from the pipeline output.