Niel_Pieterse
Posts: 3
Joined: Thu May 21, 2020 8:59 am

Build Advanced Installer package on Azure DevOps Failing

I keep on getting the following error when I'm trying to run my "Build Advanced Installer package Advanced Installer" step on Azure DevOps.



Can you please assist?
I am out of ideas on how to get this working now...
Last edited by Catalin on Thu Feb 25, 2021 4:05 pm, edited 1 time in total.
Catalin
Posts: 6592
Joined: Wed Jun 13, 2018 7:49 am

Re: Build Advanced Installer package on Azure DevOps Failing

Hello Niel and welcome to our forums,

First of all, please note that you have forgot to take the license key out of the screenshot, therefore I have removed it.

The problem here seems to be related to the parsing of your string - "YourPackageName 4.0".

When passed to the command line, most likely, after the dot character, it is expecting the extension of your setup - be it either MSI or EXE.

In your case, after the dot character comes the "0" character, therefore the thrown error.

To fix this, please use a package name such as:

Code: Select all

YourPackageName 4.0.msi
if it is an MSI file or:

Code: Select all

YourPackageName 4.0.exe
if it is an EXE file.

Hope this helps!

Best regards,
Catalin
Catalin Gheorghe - Advanced Installer Team
Follow us: Twitter - Facebook - YouTube

Return to “Building Installers”