Files
cheatsheet-tldr/tldr/windows/iscc

23 lines
498 B
Plaintext
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
syntax: markdown
tags: [tldr, windows]
source: https://github.com/tldr-pages/tldr.git
---
# iscc
> Compiler for Inno Setup installers.
> It compiles an Inno Setup scripts into an Windows installer executable.
> More information: <https://jrsoftware.org/isinfo.php>.
- Compile an Inno Setup script:
`iscc {{path o ile.iss}}`
- Quietly compile an Inno Setup installer:
`iscc /Q {{path o ile.iss}}`
- Compile a signed Inno Setup installer:
`iscc /S={{name}}={{command}} {{path o ile.iss}}`