Do you want to print from the JScript (VBScript) program?
- You can't print from standard Windows Script Host shell "wscript.exe" - without ActiveX.
- 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", "", "", 1more