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.

Is there a "Start In" Directory Feature?

Is there a way to set a "start in" directory with PDQ Deploy? For instance, I have an installer that basically copies files to a specific folder, but it has to start in the folder above it. For instance, I need the files copied to C:\TestFolder\2013, but in order for that to happen, it has to start running in C:\TestFolder\2012... Is there a way for PDQ Deploy to copy the installer file to the 2012 directory before launch?

0

Comments

1 comment
Date Votes
  • Use a command step:

    start /wait /DC:\TestFolder\2012 <command and parameters>

    0