Category: windows command shell
Many nice tools are only command line based, and sometimes they do not have a GUI versions. Command-line tools are fine for computer geeks but if you are one …
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 …
On windows command shell, there is a command subst which can be used to make a virtual drive that links to a directory. The usages of this command are: …
Code digital signing is the process mark a file (executables, dlls or other runnable files) as genuine so the file is not modified or altered. The file that is …
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 …