# Remove-AdminRight
Removes rights from an administrator.
Syntax
Remove-AdminRight -Scope <String> -Role <String> -Administrator <String> [-LoggingId <Guid>] [-AdminAddress <String>] [<CommonParameters>] Remove-AdminRight -Role <String> -Administrator <String> [-All] [-LoggingId <Guid>] [-AdminAddress <String>] [<CommonParameters>] Remove-AdminRight [-InputObject] <Right[]> -Administrator <String> [-LoggingId <Guid>] [-AdminAddress <String>] [<CommonParameters>]
Detailed Description
This command removes rights from the specified administrator.
For convenience, you can use the -All parameter to specify the 'All' scope.
Use the Get-AdminAdministrator cmdlet to determine what rights an administrator has.
Related Commands
Parameters
Name | Description | Required? | Pipeline Input | Default Value |
---|---|---|---|---|
InputObject | Specifies the rights to remove. | true | true (ByValue) | |
Scope | Specifies the scope name or scope identifier. | true | false | |
Role | Specifies the role name or role identifier. | true | false | |
Administrator | Specifies the name or SID of the administrator. | true | false | |
All | Specifies the 'All' scope. This parameter avoids localization issues or having to type the identifier of the 'All' scope. | false | false | |
LoggingId | Specifies the identifier of the high-level operation this cmdlet call forms a part of. Citrix Studio and Director typically create high-level operations. PowerShell scripts can also wrap a series of cmdlet calls in a high-level operation by way of the Start-LogHighLevelOperation and Stop-LogHighLevelOperation cmdlets. | false | false | |
AdminAddress | Specifies the address of a XenDesktop controller the PowerShell snap-in will connect to. You can provide this as a host name or an IP address. | false | false | Localhost. Once a value is provided by any cmdlet, this value becomes the default. |
Input Type
Citrix.DelegatedAdmin.Sdk.Right
You can pipe the rights to be removed into this command.
Return Values
None
Examples
EXAMPLE 1
C:\PS> RemoveAdminRight -Role 'Help Desk Administrator' -Scope London -Administrator DOMAIN\Admin1
Description
-----------
Removes the 'Help Desk Administrator' role and 'London' scope from user 'Admin1'
EXAMPLE 2
C:\PS> $admin = Get-AdminAdministrator -Name DOMAIN\Admin C:\PS> Remove-AdminRight -InputObject $admin.Rights -Administrator DOMAIN\Admin
Description
-----------
Removes all rights from administrator 'Admin'.