i want to pass parameters to winword to read it in my vsto addin by using Environment.GetCommandLineArgs()
if a parameter-value contains a space im not able to escape the strings.
this is working: winword.exe /myVar1:C:\folder\whatever1.doc /myVar2:C:\folder\somethingelese.txt C:\example.doc
this is not working: winword.exe /myVar1:"C:\folder with space\whatever1.doc" /myVar2:"C:\folder with space 2\somethingelese.txt" C:\example.doc