Search found 605 matches

Go to advanced search

by Ionut
Wed Feb 04, 2009 11:04 pm
Forum: Common Problems
Topic: How to schedule an action at the end of uninstallation
Replies: 2
Views: 4802
 
Jump to post

Re: How to schedule an action at the end of uninstallation

Hi Chris, Note that you can create "File Removal" operations in the Files and Folders page in order to delete files that have not been installed by the package. Similarly, for a registry key you can select the option "Delete (if present) at uninstall" in the "Registry Key&qu...
by Ionut
Wed Feb 04, 2009 10:51 pm
Forum: Common Problems
Topic: how to start the application after setuo in the users contex
Replies: 1
Views: 4262
 
Jump to post

Re: how to start the application after setuo in the users contex

Hi Chris, The application should be launched with the same execution level the installer UISequence has used (which should be the same as the user performing the installation, unless you are using the EXE Bootstrapper and you have set the Execution Level to "Require Administrator" in the M...
by Ionut
Wed Feb 04, 2009 10:32 pm
Forum: Common Problems
Topic: Tiny MSI made.
Replies: 5
Views: 6085
 
Jump to post

Re: Tiny MSI made.

Hi Steve,

Please send the AIP file to support at advancedinstaller dot com in order to investigate this issue. Have you tried reinstalling AI and/or building the project on a clean machine?

Regards,
Ionut
by Ionut
Wed Feb 04, 2009 10:22 pm
Forum: Common Problems
Topic: oracle problem in prereuisite list
Replies: 5
Views: 5619
 
Jump to post

Re: oracle problem in prereuisite list

Hi,
is there any way to put .aip file and other related files in two different paths at the time of building automatically.
I am not sure I understand what you mean. Please give me more details.

Regards,
Ionut
by Ionut
Wed Feb 04, 2009 10:17 pm
Forum: Common Problems
Topic: [custom actions] - execution condition
Replies: 3
Views: 5209
 
Jump to post

Re: [custom actions] - execution condition

Hi Nick, The user guide contains a how-to article regarding the removal of an older version of a package . In your case, the old package is most likely not MSI-based. I think I may be going about this all wrong - is there a way to check for files (that aren't part of the MSI) on the destination comp...
by Ionut
Wed Feb 04, 2009 9:51 pm
Forum: Common Problems
Topic: Can't "repair" from control panel?
Replies: 5
Views: 8509
 
Jump to post

Re: Can't "repair" from control panel?

Hi Chris, I would not use [AppDataFolder][|Manufacturer]\[|ProductName]\install because - on vista as user with no admin right this cannot be accessed and though will result in a error box - this is in the roaming profile and though would be synced with the server with a server profile Note that the...
by Ionut
Wed Feb 04, 2009 9:07 pm
Forum: Common Problems
Topic: Command line: -buildslist and /SetVersion
Replies: 1
Views: 4597
 
Jump to post

Re: Command line: -buildslist and /SetVersion

Hi, After trial and error, I found out that this is neither the space nor the colon nor the comma but the semicolon. Please add this simple piece of information to your help file! You are correct and thank you for bringing this to our attention. The missing information about the builds separator cha...
by Ionut
Wed Feb 04, 2009 8:26 pm
Forum: Common Problems
Topic: how to check if the uninstallation has been called with...
Replies: 1
Views: 4213
 
Jump to post

Re: how to check if the uninstallation has been called with...

Hi Chris,

You can use the UILevel Property in order to determine the level of the user interface. For instance, you can use an Execution Condition for the Custom Action such as the following:

Code: Select all

UILevel = 5
or even:

Code: Select all

UILevel > 3
Hope this helps.

Regards,
Ionut
by Ionut
Wed Feb 04, 2009 8:22 pm
Forum: Common Problems
Topic: Shortcut name with install parameter
Replies: 8
Views: 7774
 
Jump to post

Re: Shortcut name with install parameter

Hi Arto,

Most likely you have defined a Private Property instead of a Public one. Make sure that you are using a Public Property (only upper-case letters in its name).

Regards,
Ionut
by Ionut
Fri Jan 23, 2009 10:59 pm
Forum: Common Problems
Topic: Exception - Enter details about your product
Replies: 3
Views: 5032
 
Jump to post

Re: Exception - Enter details about your product

Hi Cecil,

Indeed, the misleading error message is shown when the AIC file does not exist. This will be fixed in a future version. Thank you for bringing this to our attention.

Regards,
Ionut
by Ionut
Fri Jan 16, 2009 4:07 pm
Forum: Common Problems
Topic: How do I start a service i've added?
Replies: 3
Views: 5047
 
Jump to post

Re: How do I start a service i've added?

Hi Simon, Use the Services page to install and control Windows services. In order to start the service when the package is installed, create a new Service Control operation using the "New Operation" toolbar button, enter the name of the service in the "Service Name" field and set...
by Ionut
Wed Jan 14, 2009 6:20 pm
Forum: Common Problems
Topic: How to Apply Hidden Attribute to a file/folder
Replies: 1
Views: 4182
 
Jump to post

Re: How to Apply Hidden Attribute to a file/folder

Hi, In the Files and Folders page you can specify file attributes by opening the "Edit File" dialog (double-click on a file in order to open this dialog). You can also select multiple files and then select "Properties" from their context-menu in order to set attributes for all of...
by Ionut
Tue Jan 13, 2009 11:24 pm
Forum: Common Problems
Topic: Does Advanced Installer create a log?
Replies: 1
Views: 5091
 
Jump to post

Re: Does Advanced Installer create a log?

Hi, The AI command line executable ("AdvancedInstaller.com") writes all error messages to the standard output. Thus, you can redirect the standard output (and optionally, standard error) to a file, if required: AdvancedInstaller.com /build project.aip > output.log AdvancedInstaller.com /bu...
by Ionut
Wed Dec 24, 2008 8:11 pm
Forum: Common Problems
Topic: ASP.NET site and permissions - install issue
Replies: 8
Views: 15229
 
Jump to post

Re: ASP.NET site and permissions - install issue

Hi Lior, How can I tell advanced installer to grant the permissions to ASPNET on XP and to NETWORK SERVICE on Vista? Note that the "Domain" and "Username" fields from the "Permission" dialog are Formatted and thus you can specify a Property in both of them. For instance...
by Ionut
Mon Dec 22, 2008 4:58 pm
Forum: Common Problems
Topic: Updating Action Text in a VBS Custom Action ...
Replies: 6
Views: 12710
 
Jump to post

Re: Updating Action Text in a VBS Custom Action ...

Hi Trey, Sorry for the late reply. For Immediate Custom Actions you can use the MsiProcessMessage function or the Session.Message method to send ActionStart and ActionData messages to the installer . I have attached a sample project and VB Script Custom Action illustrating this approach. The code fr...

Go to advanced search