Hello
I want a User to runs PowerShell to add himself to specific AD group in ARS.
Add-ADGroupMember -Identity GroupNAME -Member USERNAME
Hello
I want a User to runs PowerShell to add himself to specific AD group in ARS.
Add-ADGroupMember -Identity GroupNAME -Member USERNAME
HOWEVER, the above is only true IF the person executing the script is delegated "regular user" access within Active Roles and is NOT an Active Roles Admin.
like...Add-QADGroupMember?
NAME
Add-QADGroupMember
SYNOPSIS
Add one or more objects to a group in Active Directory. Supported are both Active Directory Domain Services (AD DS) and Active Directory Li…
Add-QADGroupMember -proxy -identity $MyGroup -Member $MyNewMember
'-proxy' redirects the request through Active Roles
like...Add-QADGroupMember?
NAME
Add-QADGroupMember
SYNOPSIS
Add one or more objects to a group in Active Directory. Supported are both Active Directory Domain Services (AD DS) and Active Directory Lightweight
Directory Services (AD LDS).
SYNTAX
Add-QADGroupMember [-Identity] <IdentityParameter> [-Member] <IdentityParameter[]> [-Connection <ArsConnection>] [-ConnectionAccount <string>]
[-ConnectionPassword <SecureString>] [-Control <hashtable>] [-Credential <PSCredential>] [-Proxy] [-Service <string>] [-UseGlobalCatalog] [-Confirm]
[-WhatIf] [<CommonParameters>]
Add-QADGroupMember -proxy -identity $MyGroup -Member $MyNewMember
'-proxy' redirects the request through Active Roles
something like this if the command is running on user's workstation?
Add-QADGroupMember ARSserver1.local -proxy -identity $MyGroup -Member $MyNewMember
something like this if the command is running on user's workstation?
Add-QADGroupMember ARSserver1.local -proxy -identity $MyGroup -Member $MyNewMember