Category: batch script
The following is a batch script (save as *.bat or *.cmd) that can almost run on every Windows Version and the output will be a string that indicates which …
In previous post, we talk about the method to obtain a character from its ASCII code. In this post, we want the opposite, e.g. to get the ASCII code …
The Chr Function takes a integer input and convert it to a character using ASCII table lookup. The basic ASCII table defines from 1 to 128 where the characters …
On windows, platform, the resource files (*.rc) can be used to define version and file information. The *.rc are compiled to *.res (binary) using e.g. brcc32.exe (the delphi resource …
Can you use arrays in the simple windows batch programming? The answer is yes, but we have to use some tricks to emulate the arrays. @echo off :: helloacm.com …