BladeSystem - General
1753792 Members
3144 Online
108799 Solutions
New Discussion

Re: PowerShell Cmdlets Add-HPOALDAPGroup

 
livemist
Occasional Visitor

PowerShell Cmdlets Add-HPOALDAPGroup

Hi All,

 

I'm currently working on bulk adding security group to our OA's. However, seems the cmdlet "Add-HPOALDAPGroup" doesn't include the privilege level parameter. By default the added group is set as "User" and I wanted to make this into "Operator". I was already thinking of being hopeless on achieving the task.

 

I would to ask anyone of you if there's a way how will I able to resolve what I've encounter.

 

 

Thanks.

2 REPLIES 2
Psychonaut
Respected Contributor

Re: PowerShell Cmdlets Add-HPOALDAPGroup

Outside of Powershell I know you can create a simple text file (use plink to connect to the OA and run it) with something like this to add the group and set the rights:

 

ADD LDAP GROUP "groupname"
SET LDAP GROUP ACCESS "groupname" OPERATOR
SET LDAP GROUP DESCRIPTION "groupname" ""
ASSIGN SERVER 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,1A,2A,3A,4A,5A,6A,7A,8A,9A,10A,11A,12A,13A,14A,15A,16A,1B,2B,3B,4B,5B,6B,7B,8B,9B,10B,11B,12B,13B,14B,15B,16B LDAP GROUP "groupname"
ASSIGN INTERCONNECT 1,2,3,4,5,6,7,8 LDAP GROUP "groupname"

CarlosChen
Member

Re: PowerShell Cmdlets Add-HPOALDAPGroup

is there a way to do it with HPEOA cmdlet?