binarycreator ... --silent-installer MyAppSilent.exe For online installers, add a repository URL so the app can self-update:
binarycreator --verbose -c config.xml -p packages output.exe It will dump every file it packs and every XML node it reads. | Problem | Likely Cause | |---------|---------------| | "Could not find package 'A'" | You forgot -p or the folder name doesn't match <Name> in package.xml | | Installer crashes on launch | The stub architecture mismatches the target (e.g., using Windows stub on macOS) | | Files missing after install | Forgot to put them in data/ or used symlinks (not followed) | | Script errors are silent | Enable --verbose during build and run installer with --verbose too | Alternatives to binarycreator If you are evaluating packaging tools, here is how binarycreator compares: binarycreator
binarycreator -c config/config.xml -p packages -e myapp.core,myapp.docs MyAppOnlineInstaller.exe And for an (single big file with everything): --exclude-regex "(
binarycreator ... --exclude-regex "(.*\.git.*|.*\.pyc$|.*\.DS_Store)" Generate an installer that runs without UI (for enterprise deployment): binarycreator