Forrest logo
tool overview
On this page you find all important commands for the CLI tool iscc. If the command you are looking for is missing please ask our AI.

iscc

ISCC (Inno Setup Compiler Command-line Compiler) is a command line tool designed to compile Inno Setup scripts into executable files. Inno Setup is a popular open-source software tool for creating Windows installers. The ISCC tool is included in the Inno Setup package and can be used to automate the build process of installers.

With ISCC, you can compile your Inno Setup script by specifying the path to the script file as a command line argument. It allows you to define various options such as setting the output file name, specifying the output directory, and specifying the version information.

ISCC supports a wide range of features, including the ability to digitally sign the installer, define custom pre-processor symbols, and control the compression method and level of the installer. It also provides options to enable/disable components, tasks, and languages to customize the installation process.

Additionally, ISCC provides a verbose output mode for debugging purposes, allowing you to see detailed information about the compilation process. It also supports an uninstallation mode for generating uninstallation scripts.

Overall, ISCC is a powerful command line tool that simplifies the process of compiling Inno Setup scripts, allowing for easy creation of professional Windows installers.

List of commands for iscc:

  • iscc:tldr:48a11 iscc: Quietly compile an Inno Setup installer.
    $ iscc /Q ${path\to\file-iss}
    try on your machine
    explain this command
  • iscc:tldr:7228e iscc: Compile an Inno Setup script.
    $ iscc ${path\to\file-iss}
    try on your machine
    explain this command
  • iscc:tldr:74375 iscc: Compile a signed Inno Setup installer.
    $ iscc /S=${name}=${command} ${path\to\file-iss}
    try on your machine
    explain this command
tool overview