Question:
There’s an in-house program we use and it’s stored on a UNC share so that updates are transparent. I’d like to supply it some command line parameters like so:
1 2 |
\\server\share\in_house_thingy.exe myusername mypassword |
But I can’t seem to get it to work in either CMD or PowerShell or via a shortcut.
Anyone got any ideas?
Answer:
For a shortcut, change the target to be like:
1 2 |
"\\server\share\in_house_thingy.exe" myusername mypassword |
unless you really do want to have to use powershell to make this work.