Category: batch script
June 17, 2012
batch script, beginner, code, code library, implementation, programming languages, technical, VBA, vbscript, windows
VBScript has been in use widely on every version of windows. It is said Bill Gates favor VBScript, which may be one of the reasons that it is shipped …
June 15, 2012
batch script, beginner, code, code library, delphi, implementation, programming languages, technical, VBA, vbscript
MSScript Control is provided in msscript.ocx. It is a very handy tool to run VBScript/JScript without relying on CScript.exe or WScript.exe. However, many current scripts have used WScript object …
June 14, 2012
batch script, beginner, I/O File, implementation, javascript, programming languages, technical, tools / utilities, VBA, vbscript
There are currently 3 ways to hide your Script Code (VBScript or Javascript) if you don’t want others to access to your code easily. For example, you might want …
BASH script under linux supports the for loops. There are quite a few ways to write for loops. 1. List the Values for I in 1 2 3; do …
Defining a function/procedure in Linux BASH is quite similar to other high-level languages. functionName() { # content goes here } However, passing parameters inside the function is somehow different, …