Category: windows scripting host
Sometimes, you want to invoke a messagebox dialog from the windows command line, and here is one that is written in Windows Batch. @echo off rem Example Msgbox "Hello …
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 …
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 …
I write lots of scripts (VBScript or JScript) on windows platform (under Windows Scripting Host environment). They are mainly used to test the COM object (written in Delphi Seattle). …
With WMI Object, we can list the process names and their owners easily. The WMI Query is: Select * from Win32_Process The following VBScript (under Windows Scripting Host environment) …