IT Process Automation

  • 1.  PAM Process to open block ports

    Posted Apr 19, 2018 01:30 AM

    Hello,

    did anyone has designed a PAM process to open block ports?

     

    if yes can you please share.

     

    regards

     

    farooq Hussain   



  • 2.  Re: PAM Process to open block ports

    Broadcom Employee
    Posted Apr 19, 2018 08:37 AM

    Can you please elaborate on what you need to accomplish?  Are you attempting to open a port on the operating system, or are you attempting to open a blocked port within a Process instance run?



  • 3.  Re: PAM Process to open block ports
    Best Answer

    Posted Apr 19, 2018 09:34 AM

    Hi, 

    To make this work, you need to first figure out how to do this manually. When you have a working example on cmd or bash, you create a run script operator that uses your command line and replace the fixed values for variables (%1 %2 %3)

     

    So if you have, for example:

     

    robocopy C:\abc C:\def /MIR

    it should be

     

    robocopy %1 %2 /MIR

    passing the parameters as this

     

    Make sure you mark this options 

     

     

    So you can get the output in 

     

    Process[OpName].scriptOutput

     

    This is the way to get things done in Process Automation.

     

     

    Hope it helps