Skip to content

Quasic/wshta

Repository files navigation

wshta

Miscellaneous Scripts for Windows, and a base for the library

Various templates are in the templates folder.

JScript, VBScript, HTML, and XML

These scripts are for

  • WSH (Windows Script Hosts WScript.exe or CScript.exe)
  • HTA (HyperText Applications running in mshta.exe)
  • ASP (untested)
  • IE (Internet Explorer) to some extent
  • other applications using at least one of the same script engines, such as Visual Pinball.

System Requirements

Windows 95+, which came with WSH 1.0+, though WSH 5.6 is recommended

JScript 3.0 is needed for the ActiveXObject.

VBScript 2.0 is needed for CreateObject

Internet Explorer 4+ will provide the above languages, as well.

I'm working on a system test script to check for problems, or you can just try it to see if it works, and post the error log or message if it doesn't.

Languages

HTML

Besides the odd .htm or .html file for IE, most HTML is in .hta format. Neither one has the WScript object, but they have window.

XML

.wsf .wsc

JScript

The JavaScript in here is the JScript flavor, for environments with ActiveXObject. JScript is the base language, due to its ability to create objects. The base code is in require(module,console).js, though most of the scripts work without it. Each .js filename lists the names of the global objects it creates if loaded in a script tag. So, the base script creates 3 global objects, named require, module, and console. Most scripts create only one object. The base script's require function is very similar to node.js's, though it currently doesn't provide full node.js support. The base can also be included without script tag support.

VBScript

VBScript provides its MsgBox function. It also handles objects a bit differently. Each .vbs filename lists the names of classes, subs, and/or functions, or common prefixes, contained in the file. VBScript can load the base objects.

Other Languages

I may add some PerlScript or others, though these languages need to be installed separately, which means fewer will benefit from them, so they are not high priority. It may be better to use a separate "add-on" repo to avoid confusion.

Special object support

Scripts requiring the WScript object, provided by both WScript.exe and CScript.exe, are included in the wsh subfolder. Other scripts may also use it, if available. CScript uses a text-based display. WScript.stdin, WScript.stdout, and WScript.stderr can be used with the library.

Scrpts requiring the window object, or the DOM, provided by HTA and IE, are found in the dom subfolder. These are designed to work with Quasic/dom scripts, which don't require ActiveXObject.

Base

The base require(module,console).js script provides an environment resembling node.js, with a console object resembling those found in browsers.

The console object was developed for reporting problems over a network, or debugging in conditions where a debugger isn't available or won't do, such as when the script encounters an intermittant problem outside of a debugger. It takes more resources than the default error handler, and doesn't provide the full functionality of a debugger.

The require and module objects are just for convenience. For a simpler approach without the console, see templates/require.md, which can be used to import any script, not just this one.

BATch and PowerShell

These are mostly utility scripts.

History

I've been using these and their predecessors on a LAN for a long time and thought why not share them publicly? They were originally planned to be released in a general scripts collection, but I thought that was too bulky.

About

Miscellaneous JScript, VBScript, WSF XML, HTA HTML, PowerShell, Batch, etc. for Windows

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published