Important Notice: On February 29th, this community was put into read-only mode. All existing posts will remain but customers are unable to add new posts or comment on existing. Please feel to join our Community Discord for any questions and discussions.

Run perl command

Hi, is it possible to run a perl command using the remote command function in PDQ Deploy?

Jo

0

Comments

2 comments
Date Votes
  • My apologies, but this post needs to be in the PDQ Inventory section. Sorry for that.

    0
  • I'm sure it is. If the perl executable is in the path you can call it with a CMD remote command like:

    perl [args]

    Or a Powershell Step:

    Start-Process perl -ArgumentList '[arg1]' ,'[arg2]'.....etc

    If perl is not in your path just supply the full path to the executable in the command.

    0