Problem Starting Application Using VBScript?

Today, someone asked me about a problem he had running an application from VBScript. Here is the text of my reply:
Adding the parameters to the end of the .exe name should work. Often, however, the problem is spaces / quotes in the command line. The following recipe should deal with all such problems.

Write out the command you want to execute in full, e.g.
C:Program FilesJavaThingyJava.exe -silent -otherParameters:”value” -finalParameter

If there is a space in the path to the executable, put this bit in quotes.

“C:Program FilesJavaThingyJava.exe” -silent -otherParameters:”value” -finalParameter

Then, double all quotes in the whole line

“”C:Program FilesJavaThingyJava.exe”” -silent -otherParameters:””value”” -finalParameter

Put another set of quotes around the whole thing, and add the WshShell.Run gubbins:

WshShell.Run “””C:Program FilesJavaThingyJava.exe”” -silent -otherParameters:””value”” -finalParameter”, 1

Useful Web Development Plugins for IE

Info on a couple of IE plugins that I find useful:
First, I couldn’t live without the Internet Explorer Developer Toolbar. It is a collection of useful little tool for all kinds of web page development, free from Microsoft. Great for digging into the workings (or failings) of a web page. Follow the link for more information:
http://www.microsoft.com/downloads/details.aspx?familyid=e59c3964-672d-4511-bb3e-2d5e1db91038&displaylang=en
Second, the Web Development Helper useful. It was written by independent developer,Nikhil Kothari, and is also free. Not as useful as the Microsoft one, but still handy to have around. Its strength is its ability to log the traffic between the browser and the server: good if you want to know what a form is sending to the server, or what a server is sending back.
http://projects.nikhilk.net/Projects/WebDevHelper.aspx