I have a workflow that is required to run command line arguments and also requires the user of a username and password. The best way that I currently run it is copy and paste a command line code into CMD prompt which has the username and password baked in. For security reasons this is clearly not the best approach. However, I would like to have a workflow run the prompt unattended and on a schedule. With that said, I do not want to hard code the username and password within the workflow.
Example command line:
"\\server\Book\fax" srcuser="klturi421" srcDomain="nlsn" srcpw="somepassword" destserver="server2" destuser="klturi421" destpw="somepassword" debug="False" simulate_write="False"
What I am trying to figure out is how to use the Set Credentials within the command line. Is this possible?