Create OU with Workflow

Hello all !

I hope you are well :)

I have a quick question.

I created a new OU creation form.
With a Worflows which creates sub OU, groups, ...

Do you know how I can link Access Templates and Policies to the OUs I created?
The Access Templates are already created, the Trustee group too. Same for the Policy they are already created.
I did not find an action in the Workflow that allows it.
In script can be?

Thank you in advance for your help ;)
Gégé
Parents Reply
  • No problem, my message may not be clear and my English is not perfect.
    
    I already have global policy that I link with a script and it work fine.
    And I also have to create specific policy (provisioning and deprovisioning) that what I want to create them by script.
    I tried with the "ADd Entries" script but I cannot make an attribute "must be" and give values.
Children
  • Hello Johnny, Hello all ;)

    I found how to create provisionning policy and a deprovisioning policy.

    I give commands if that can help someone.

    Provisioning:
    New-QADObject -ParentContainer XXX -Proxy -Name YYY -Type "edsPolicyObject"


    Deprovisioning:
    New-QADObject -ParentContainer XXX -Proxy -Name YYYY -Type "edsPolicyObject" -ObjectAttributes @{edsaPolicyType="1"}

    I just have to found how to add paramerts in policy (attributes must be, ....).

    Gégé