Skip to content

Quick Tutorial: Create a Simple Package

Paquet Builder includes many features, so the easiest way to learn it is to build a simple package first. This quick tutorial walks you through the shortest path from a blank project to a working .exe.

Goal: add source files to a package and compile the final output.

  1. Start Paquet Builder and create a new project

    Open Paquet Builder. On the Home screen, click New Package.

    Welcome screen inside Paquet Builder

    Select Standard Package — the most common type, used to extract files into a specified folder. Then click Continue.

    Choosing Standard Package as the project type

  2. Enter a package title

    The project opens on the About Your Package page. Fill in the Package Title (e.g. My First Setup Tutorial) and optionally the Author/Company Name and Legal Copyright fields. This information is embedded in the executable’s version metadata.

    Use the File Manager button in the toolbar to open the File Manager at any time.

    About Your Package — package title and company information

  3. Add the files you want to distribute

    In the File Manager, click Add then choose Add File(s) to browse for individual files, Add Folder to include an entire directory, or simply drag files from Windows Explorer into the list.

    File Manager — Add menu with file, folder and wildcard options

    Once your files appear in the list, click Close to return to the main project view.

    File Manager — files added and ready to close

  4. Select the installation scope

    Navigate to General > Select Installation Scope. Choose whether the package installs for the current user only or for all users. This setting affects administrator privileges (UAC), destination paths, shortcuts, and registry entries.

    For this tutorial, keep the default Current user only — no admin rights are required.

    Select Installation Scope — current user selected with preview

  5. Set the destination folder

    Navigate to General > Set Main Destination Folder. Enter the path where your files will be unpacked on the end user’s machine. Use the %PBINSTALLSCOPEDIR% variable so the path adapts automatically to the installation scope you selected.

    %PBINSTALLSCOPEDIR%\Your App

    For a current-user install, this resolves to something like C:\Users\John\AppData\Local\Programs\Your App.

    Set Main Destination Folder — path with scope variable

  6. Add a welcome screen (optional)

    Navigate to General > Modify Welcome Screen. Choose TemplatePackage files will be extracted, then click Edit to open the Rich Content Editor.

    Modify Welcome Screen — enabling the welcome dialog

    Write a short welcome message — the title and body text are fully customizable with rich formatting. Click OK when done.

    Rich Content Editor — editing the welcome screen text

  7. Configure the output and compile

    Navigate to Build > EXE Output Configuration. Set the Output Directory (where the compiled file will be saved) and the Package Filename.

    EXE Output Configuration — output directory, filename and format

    Click Build Now in the toolbar (or press the Compile button at the bottom of the page) to build the package.

    Clicking Build Now to compile the package

  8. Check the compilation result

    The Compilation Log tab opens automatically. When the build succeeds, you see a green confirmation with the package path and final file size. You can now click Run in the toolbar to test it.

    Compilation finished successfully — package path and size shown

  9. Test the result

    Running the compiled .exe launches your package. The end user sees the Welcome Screen you configured:

    Runtime — Welcome screen displayed to the end user

    After clicking Next, the user is prompted to confirm or change the Destination Folder before extraction begins:

    Runtime — Destination Folder prompt shown to the end user

Once the package builds successfully, you can continue by customizing the package appearance, adding additional screens, or enabling more advanced behavior.