Run Start-Process with -ArgumentList when an argument also contains a -a
I’m trying to run this command:
Start-Process C:ProgramDataGrapeCitygclmgclm.exe -ArgumentList ‘”product id” -a “key”‘
But getting the error: Cannot bind parameter because parameter ‘ArgumentList’ is specified more than once.
I’m guessing this is due to the -a in my actual argument list. How can I run this command?
I’m trying to run this command: Start-Process C:ProgramDataGrapeCitygclmgclm.exe -ArgumentList ‘”product id” -a “key”‘But getting the error: Cannot bind parameter because parameter ‘ArgumentList’ is specified more than once.I’m guessing this is due to the -a in my actual argument list. How can I run this command? Read More