• Workflows with if-then, PowerShell scripts, and $work.SavedObjectProperies

    Hi,

    I am working on a workflow to do some automation on our computer objects, and I am running into a weird issue that I am struggling to wrap my head around.

    The error I am receive:

    Executing the 'Run script: DEV New Computer Object Tag Location on…

  • Multiple issues regarding attributes

    I created a virtual attribute and linked it to a class that isn't a user or a group. It's actually a class that was implemented through a schema extension. I also created a workflow policy and the first step is to search for objects of this class. Unfortunately…

  • try catch not working

    I wrote a custom powershell script and have it run in a workflow.

    I'm having an issue with the try catch statement. If I remove try catch and just run the command inside the try method, the workflow executes fine. However, when a try catch is added,…

  • Need to find out all attributed modified in function onPreModify

    Hi all!

    I need to dynamically find all attributes modified in function onPreModify($Request).

    I do NOT want to something like:

    function onPreModify($Request)

    {

    if ((IsAttributeModified "edsva_myattribute" $Request) -eq $true)

            {
                #do something…

  • Modifying Workflow Parameters in a script

    Hello,

    I'm currently running ARS 6.9 and am trying to understand some basic workflow functionality.

     

    For a basic example I have a test workflow like so:

    There's a parameter for it aptly named 'TestParam'. This parameter is set as a string that's…