I’m missing something (obvious?) about escaping my strings or spaces in the following Windows Server 2k3 batch command.
FORFILES -m *.wsp -c 'CMD /C C:\Program^ Files\Common^ Files\Microsoft^ Shared\web^ server^ extensions\12\bin\stsadm.exe^ -o^ addsolution^ -filename^ @FILE'
Results in the following error
'C:\Program Files\Common Files\Microsoft Shared\web server extensions\12\bin\stsadm.exe -o addsolution -filename 'foobar.wsp'' is not recognized as an internal or external command,operable program or batch file.
But I can’t figure out why. I’m working off Mr. Simon Sheppard’s fine documentation
The path needs to be quoted, and the quote must be escaped.
A co-worker suggested using the hex for ‘, and I eventually figured out that the hex needed escaping.