I have a huge amount of automated scripts that use Windows Scripting Host. Many of them launch other apps or scripts, of course.
Following some recent Microsoft update, the following *very* common API has changed to require different formatting(!!!). Here's the comparison:
Previously:
wsh.run("C:\Program Files\bob.exe",1,false);
Now Required:
wsh.run('"' + "C:\Program Files\bob.exe" + '"',1,false);
As you can see, I'm simply wrapping the command line in quotes. I'm shocked that this is now required.
Anybody else experiencing a similar failure?!!
Gary

Chowhound
Comic Vine
GameFAQs
GameSpot
Giant Bomb
TechRepublic