GUI for script

Do you want to print from the JScript (VBScript) program?

  1. You can't print from standard Windows Script Host shell "wscript.exe" - without ActiveX.
  2. I can use advanced Windows Script Host shell (engine.exe). I can print the document file from script.
// JScript - one string
   Window.ShellExecute("print", "4.html", "", "",  1);

// VBScript - one string
   Window.ShellExecute "print", "4.html", "", "",  1
more