Category: windows
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 …
By Default, the Delphi IDE stores the file information (version) directly in compiled Resource File (*.res), which is binary so you can’t easily edit it using text editors. Sometimes, …
The purpose is to limit the concurrent usage of a piece of software on the same machine (Physically) by other user sessions. This is to virtually limit that only …
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 …
Under WSH (Windows Scripting Host), we can do a lot of tasks by using VBScript/JScript. The COM object WScript.Shell provides a useful method Exec that can be used to …