Questions tagged [advanced-installer]

Advanced Installer is a setup authoring tool which is primarily used to creates Windows Installer MSI packages. It also includes features and dedicated tools designed for application deployment tasks.

Advanced Installer is a setup authoring tool which creates installers and software packages. It has both free and commercial editions.

It is primarily used for creating Windows Installer MSI packages for Windows applications, but it can also be used to create:

  • Microsoft App-V packages
  • Microsoft UWP packages (.appx)
  • VMware ThinApp packages
  • MAC OS X ZIP packages
  • Windows CE CAB files
  • Microsoft Office and Visual Studio add-in and extension packages
  • Visual Studio add-in/extension packages (.vsix)

Advanced Installer also includes dedicated tools for:

  • delivering application updates
  • integrating a trial period and licensing mechanism into an application
  • repackaging existing packages

Useful links:

277 questions
4
votes
3 answers

Multiple statements inside one BEGIN ... END block

In my installer I have to make a minor change in the schema: IF NOT EXISTS (SELECT * FROM sys.columns WHERE object_id = OBJECT_ID(N'[dbo].[UserProfiles]') AND name = 'AllCheckboxesChecked') BEGIN ALTER TABLE [dbo].[UserProfiles] ADD…
Alexander
  • 18,932
  • 15
  • 54
  • 138
4
votes
3 answers

Advanced installer powershell script set property

I am using advanced installer 10.7.1. I am adding the custom action of 'run windows powershell script'. What this script does is to check if the installer is being run on an azure vm or not. if it is, only then does it allow the user to install. The…
Wasiq Ali
  • 251
  • 1
  • 11
4
votes
1 answer

Installing .NET Framework

I'm currently updating our software installer and have a few questions about getting the .NET framework installed. What are the installer(s) (.exe or .msi) required to install .NET 2.0 SP2? What are the installer(s) (.exe or .msi) required to…
stevehipwell
  • 48,850
  • 5
  • 42
  • 60
4
votes
1 answer

Default program to open file and load Application in C#

I have a C# WinForm application. This program is designed to create and open specific files (.cus). Files are created using this program and can be opened in same program. I am using Advanced Installer to create Installer. After Installation, I need…
Hardik
  • 1,565
  • 4
  • 25
  • 39
4
votes
1 answer

Pin a program to the taskbar using Advanced Installer

I am using Advanced Installer to create the installer of my java desktop application, Looking for a solution to pin the main application shortcut to the task bar of window 7
NoNaMe
  • 5,410
  • 30
  • 73
  • 98
4
votes
3 answers

Using Advanced Installer in Jenkins

Ok I have a new problem. I'm trying to use advanced installer through the Windows Batch command "C:\Program Files\Caphyon\Advanced Installer 8.0.1\bin\x86\advinst.exe" /edit "C:\jenkins\workspace\myProject\Platforms\Win32\Install\myProject.aip"…
themaniac27
  • 1,047
  • 3
  • 13
  • 26
3
votes
2 answers

Silently install Apache through Advanced Installer

I am trying to silently install apache using Advanced Installer 8.9, but it is still prompting me for user interaction even though I pass the command parameters in the Silent (No UI) field. msiexec /i "httpd-2.2.22-win32-x86-no_ssl.msi" /qn…
michelle
  • 2,639
  • 4
  • 28
  • 45
3
votes
1 answer

Setting UI Level in a MSI package

I have WiX project to create a MSI package. I want to set UI level to 3 or 4 or 5 so that it can show success/failure after the setup. Currently it just run and vanishes. Is there a way to set UI level on the package?
3
votes
1 answer

Advanced Installer MSI - The Package Can Only Be Run From A Bootstrapper

I am using advanced installer 11.4.1 to make an msi. I want to run the .msi with msiexec /qn and not the .exe. Advanced Installer makes 2 files as output (a .exe and a .msi) When I run the .exe everything works fine. Client.exe /qn /log…
Nick LaMarca
  • 7,512
  • 28
  • 86
  • 145
3
votes
1 answer

MongoDB as a prerequisite in Advanced Installer

I want to silently install MongoDB as a prerequisite. The problem is to pass the command line arguments. The usual command( without AI ) is: msiexec.exe /q /i mongodb-win32-x86_64-2008plus-ssl 3.6.4-signed.msi INSTALLLOCATION="C:\Program…
Taimoor Raza
  • 128
  • 1
  • 7
3
votes
1 answer

How to encrypt your Connection String in Advanced Installer (13.3) Custom Action

With Advanced Installer, I'm trying to make a Custom Action, that at installationtime, encrypt the Connection String. I seems like I can't use "~" here. (I moved my working code from the MVC project, to here). Is there a simple alternative to that…
radbyx
  • 8,605
  • 18
  • 75
  • 119
3
votes
0 answers

Advanced Installer - Install windows service for Solr5

I'm trying to create a Installation package using Advanced Installer , this package should install new windows service for Solr5. the windows service should run the solr.cmd file with start params. and of course do stop with a given stop…
NetaliG
  • 56
  • 5
3
votes
2 answers

How to create own MSI package with Open Source Software?

does anyone know an Open Source Software for creating own MSI packages? I wanna create an MSI file for installing a 3rd party Software. Currently it's installed via different commands (bat-file) and with different configuration files. Is there a…
3
votes
1 answer

Create a small web installer using Inno Setup

I have created a software suite installer using Inno Setup. What I would like to do is to create a small installer and when executed, will download and execute that software suite installer. I know Advanced Installer has that package type: Web…
Leo Chen
  • 939
  • 8
  • 23
3
votes
1 answer

Advanced Installer: Stop installer from clearing temp files on upgrade

I have run into an issue while going through the process of getting Updating to work. The update method used is to do an uninstall and then install. My problem is as follows: I have several custom actions which rely on files in the Temp folder, and…
Thewads
  • 4,723
  • 11
  • 54
  • 69
1
2
3
18 19