mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-31 08:41:55 +00:00
23 lines
498 B
Plaintext
23 lines
498 B
Plaintext
---
|
||
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 oile.iss}}`
|
||
|
||
- Quietly compile an Inno Setup installer:
|
||
|
||
`iscc /Q {{path oile.iss}}`
|
||
|
||
- Compile a signed Inno Setup installer:
|
||
|
||
`iscc /S={{name}}={{command}} {{path oile.iss}}`
|