Small application to visually combine different pdf documents.
You can download the installers from the latest release or checkout the repository and build yourself.
This is application is vibe-coded using claude because I could not find a free, small and easy to use tool to do just this.
Double-click the .msi file to run the standard GUI installer.
The .msi package supports standard Windows Installer command-line switches, which allows fully automated, unattended deployments (e.g. via Group Policy, SCCM, or a CI pipeline).
Silent install – no UI at all:
msiexec /i "PDF Mixer_x.x.x_x64_en-US.msi" /quiet /norestartPassive install – progress bar only, no prompts:
msiexec /i "PDF Mixer_x.x.x_x64_en-US.msi" /passive /norestartSilent install with a verbose log file (useful for troubleshooting):
msiexec /i "PDF Mixer_x.x.x_x64_en-US.msi" /quiet /norestart /l*v install.logSilent uninstall:
msiexec /x "PDF Mixer_x.x.x_x64_en-US.msi" /quiet /norestartReplace x.x.x with the actual version number from the release (e.g. 0.1.0).
| Switch | Effect |
|---|---|
/quiet |
No UI, no prompts. Runs completely silently. |
/passive |
Minimal UI (progress bar only). No user interaction required. |
/norestart |
Suppresses any automatic reboot after installation. |
/l*v <file> |
Writes a verbose log to <file> for troubleshooting. |
/x |
Uninstalls the package instead of installing it. |