lyy2182
lyy2182
发布于 2026-06-02 / 10 阅读
0

Advanced Installer Tutorial

Advanced Installer Tutorial

Introduction

Advanced Installer is an extremely easy-to-use installer creation tool.

In this article, I will use a sample app to explain how to use Advanced Installer to package an installer.

Here is the directory structure of the sample app, named "Sample":

sample
  ├── abc.dll
  └── main.ps1

It contains:

  • A main.ps1 file, assumed to be the main executable file of the app.
  • An abc.dll file, assumed to be a dependency file of the app.

Tutorial

Main Page

  1. Double-click Installer Project to create a new empty installer project.

  2. Fill in the fields (some fields are optional).

Name is the name of the application.

Version is the version of the application.

Publisher is the publisher of the application (i.e., your name).

Product Support Info can be filled in as needed.

Example: I filled it out as shown below:

Empty Project

  1. Set up the app files to be installed in Files and Folders.
    Right-click Application Files, select Add Files, and choose all your app files in the file selector.

Files

  1. Configure shortcuts in Shortcuts.
    In Shortcuts, right-click Shortcuts List and select Installed File.

Select your main program in the file selector, for example, main.ps1.

Additionally, you can go back to the Application Shortcut Folder, copy the shortcut inside, and paste it into Desktop so users can easily open it from the desktop.

Shortcuts

  1. Other Configurations
    In Install Parameters, configure the installer to the AMD64 version, which is currently the most common.
    Find Package type under the Installation Options section and change it to 64-bit package for x64 processors (AMD64, EM64T).

  2. Final Steps
    Click the File option in the top-left corner to save the project to a location.

Go back to the Product Details page, verify that the configuration is correct, and then click Build in the top-left corner to build the project into an msi installation package.

Advanced Installer will create a directory named <App Name>-SetupFiles where the project was saved, containing your installation package!

You can now send this installation package to your friends to use.