How can I make a command string work using globing patterns also in the given arguments?
powershell.exe -c "&'c:\wind?ws\System32\more.com' C:\path\to\something.txt | findstr 'something'" -> this works
This is what I would like to do, for example:
powershell.exe -c "&'c:\wind?ws\System32\more.com' C:\wind?ws\w?n.ini | findstr 'something'"
I tried using another &, but seems like is gets interpreted in the wrong way