Let's say I have a batch file named hello.bat that takes two parameters.
According to the answer here: passing a second parameter in a batch file, I can use the following to pass two parameters using powershell:
start-process hello "test test2"
Now, considering that the two parameters are separated by space, how would I pass a parameter with a space. For instance what if the first parameter was test one instead of test? I have tried start-process hello "test","test 2", does not seem to work.
start-process hello """test one"",test2"