Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add more examples of installer switches to docs #4535

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 10 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,17 @@

| 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) |
| Squirrel | `--silent` or `-s` ||
| 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 210 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 210 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 210 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 211 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 211 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 213 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 213 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 214 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 215 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
Loading