Category: jscript
Sometimes, you want to emulate keystrokes (key presses) for example, you want to automate some tasks which are easier to do by repeating keystrokes than looking up APIs and …
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 …