Category: jscript
In the Windows environment, all three types of scripts (PowerShell, VBScript, and JScript) use CreateObject to invoke the COM object WScript.Shell in order to simulate keystrokes. For example, you …
The quickest way to determine the version of Microsoft Word installed on the current PC is to run the following VBScript. Dim objWord Set objWord = CreateObject("Word.Application") WScript.Echo "Version: …
I have raised a question in SO: How can the OS use all cores for my application? basically, my single-threaded applications seem not utilizing all the cores if running …
The GUID represents an unique identifier, and you can get the API to generate one for you. In WSH (Windows Scripting Host) environment, it turns out to be very …
In here, we have presented a simple and powerful Parallel Job Runner written in C#. Based on similar idea, we present a parallel job (script) runner written purely in …