Skip to content

Commit

Permalink
Add more examples of installer switches
Browse files Browse the repository at this point in the history
  • Loading branch information
SpecterShell committed Jun 4, 2024
1 parent 59b794b commit 3544e27
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions doc/windows/package-manager/package/manifest.md
Original file line number Diff line number Diff line change
Expand Up @@ -202,10 +202,16 @@ You can often figure out what silent `Switches` are available for an installer b

| Installer | Command | Documentation |
| :--- | :-- | :--- |
| MSI | `/q` | [MSI Command-Line Options](https://docs.microsoft.com/windows/win32/msi/command-line-options) |
| InstallShield | `/s` | [InstallShield Command-Line Parameters](https://docs.flexera.com/installshield19helplib/helplibrary/IHelpSetup_EXECmdLine.htm) |
| Inno Setup | `/SILENT or /VERYSILENT` | [Inno Setup documentation](https://jrsoftware.org/ishelp/) |
| MSI | `/passive` (`/qb`) or `/quiet` (`/qn`) | [MSI Command-Line Options](https://docs.microsoft.com/windows/win32/msi/command-line-options) |
| InstallShield (EXE) | `/s` or `/S /V/passive` or `/S /V/quiet` | [InstallShield Command-Line Parameters](https://docs.revenera.com/installshield/helplibrary/IHelpSetup_EXECmdLine.htm) |

Check failure on line 206 in doc/windows/package-manager/package/manifest.md

View workflow job for this annotation

GitHub Actions / Check Spelling

`revenera` is not a recognized word. (unrecognized-spelling)
| Inno Setup | `/SILENT` or `/VERYSILENT` | [Inno Setup documentation](https://jrsoftware.org/ishelp/) |
| Nullsoft | `/S` | [Nullsoft Silent Installers/Uninstallers](https://nsis.sourceforge.io/Docs/Chapter4.html#silent) |
| Advanced Installer (EXE) | `/exenoui /passive` or `/exenoui /quiet` | [Advanced Installer Command-Line Switches](https://www.advancedinstaller.com/user-guide/exe-setup-file.html) |

Check failure on line 209 in doc/windows/package-manager/package/manifest.md

View workflow job for this annotation

GitHub Actions / Check Spelling

`advancedinstaller` is not a recognized word. (unrecognized-spelling)

Check failure on line 209 in doc/windows/package-manager/package/manifest.md

View workflow job for this annotation

GitHub Actions / Check Spelling

`exenoui` is not a recognized word. (unrecognized-spelling)

Check failure on line 209 in doc/windows/package-manager/package/manifest.md

View workflow job for this annotation

GitHub Actions / Check Spelling

`exenoui` is not a recognized word. (unrecognized-spelling)
| InstallBuilder | `--mode unattended --unattendedmodeui minimal` or `--mode unattended --unattendedmodeui none` ||

Check failure on line 210 in doc/windows/package-manager/package/manifest.md

View workflow job for this annotation

GitHub Actions / Check Spelling

`unattendedmodeui` is not a recognized word. (unrecognized-spelling)

Check failure on line 210 in doc/windows/package-manager/package/manifest.md

View workflow job for this annotation

GitHub Actions / Check Spelling

`unattendedmodeui` is not a recognized word. (unrecognized-spelling)
| install4j | `-q -splash ""` or `-q` | [install4j Command-Line Options](https://www.ej-technologies.com/resources/install4j/help/doc/installers/options.html) |
| Setup Factory | `/S` | [Setup Factory Command-Line Options](https://www.indigorose.com/webhelp/suf9/Program_Reference/Command_Line_Options.htm) |

Check failure on line 212 in doc/windows/package-manager/package/manifest.md

View workflow job for this annotation

GitHub Actions / Check Spelling

`webhelp` is not a recognized word. (unrecognized-spelling)

Check failure on line 212 in doc/windows/package-manager/package/manifest.md

View workflow job for this annotation

GitHub Actions / Check Spelling

`indigorose` is not a recognized word. (unrecognized-spelling)
| Actual Installer | `/S` | [Actual Installer Command-Line Parameters](https://www.actualinstaller.com/help/command-line.html) |

Check failure on line 213 in doc/windows/package-manager/package/manifest.md

View workflow job for this annotation

GitHub Actions / Check Spelling

`actualinstaller` is not a recognized word. (unrecognized-spelling)
| InstallMate | `/q1` or `/q2` | [InstallMate Command-Line Syntax](https://tarma.com/support/im9/setup/cmdline.htm) |

Check failure on line 214 in doc/windows/package-manager/package/manifest.md

View workflow job for this annotation

GitHub Actions / Check Spelling

`tarma` is not a recognized word. (unrecognized-spelling)

## Tips and best practices

Expand Down

0 comments on commit 3544e27

Please sign in to comment.