Search found 12 matches

Go to advanced search

by mhorowitz
Sat Aug 15, 2009 12:35 am
Forum: Common Problems
Topic: After updater run, application runs twice, on vista
Replies: 3
Views: 3748
 
Jump to post

Re: After updater run, application runs twice, on vista

Bump. Is there a way to avoid the double-run at the end of an update?
by mhorowitz
Fri Jul 17, 2009 6:41 pm
Forum: Common Problems
Topic: After updater run, application runs twice, on vista
Replies: 3
Views: 3748
 
Jump to post

Re: After updater run, application runs twice, on vista

A little more background:

I did some logging, and I can see that updater.exe is exiting with status 0 (which seems right), and then the mutex is signalled almost immediately after (which seems wrong). My code for the mutex check looks like this:


HANDLE mutex = 0;

while (!m_cancelled) {
mutex ...
by mhorowitz
Fri Jul 17, 2009 6:16 pm
Forum: Common Problems
Topic: Is there a way to streamline the installer process?
Replies: 1
Views: 3918
 
Jump to post

Is there a way to streamline the installer process?

I think the best way to explain what I'm asking is to paste what my product manager said to me:

On a related note, the installer upgrade experience seems not to really understand that I'm upgrading installed software rather than doing a fresh install. In particular, I get asked questions for which ...
by mhorowitz
Fri Jul 17, 2009 5:40 pm
Forum: Common Problems
Topic: After updater run, application runs twice, on vista
Replies: 3
Views: 3748
 
Jump to post

After updater run, application runs twice, on vista

We have integrated the updater into our application as in http://www.advancedinstaller.com/user-guide/qa-wait-updater.html. We are seeing two problems when there is an update pending:

1. When we run this code, sometimes (often on vista, sometimes on XP), the code runs through to the end while the ...
by mhorowitz
Wed Jul 01, 2009 7:04 am
Forum: Common Problems
Topic: merge modules getting removed on update in vista: KB905239
Replies: 3
Views: 3080
 
Jump to post

Re: merge modules getting removed on update in vista: KB905239

In the 7.0.1 version of Advanced Installer you can try using the "Install new version first and then uninstall old version" option in the Upgrades page. Please note this works as expected only if the packages use the automated upgrade feature.

I gave this a try. It broke, but in a different way ...
by mhorowitz
Fri Jun 26, 2009 11:34 pm
Forum: Common Problems
Topic: merge modules getting removed on update in vista: KB905239
Replies: 3
Views: 3080
 
Jump to post

merge modules getting removed on update in vista: KB905239

I am experiencing the problem described at http://support.microsoft.com/kb/905238 on Vista. I tried ordering RemoveExistingComponents after InstallFinalize, as suggested in that page as workaround method 2, but after doing an update, most of my product is gone; all that remains is updater.exe and ...
by mhorowitz
Thu Jun 25, 2009 10:19 pm
Forum: Common Problems
Topic: Updater always thinks there's a new version
Replies: 5
Views: 3976
 
Jump to post

Re: Updater always thinks there's a new version

Hi,

The docs do say that FilePath and RegistryKey are mutually exclusive, but the failure mode could be improved a lot (printing an error, instead of just silently doing something inscrutable).
If an error would be shown when the criteria is not met, the Updater would always show an error when ...
by mhorowitz
Thu Jun 25, 2009 9:09 am
Forum: Common Problems
Topic: Updater always thinks there's a new version
Replies: 5
Views: 3976
 
Jump to post

Re: Updater always thinks there's a new version

I think I figured out the problem: I had a FilePath setting in the updates.txt file, and this was messing things up. The documentation on this is all very confusing. http://www.advancedinstaller.com/user-guide/updates-configuration-examples.html shows a "Common Configuration" which includes FilePath ...
by mhorowitz
Thu Jun 25, 2009 8:40 am
Forum: Common Problems
Topic: Updater always thinks there's a new version
Replies: 5
Views: 3976
 
Jump to post

Updater always thinks there's a new version

I'm trying to set up the updater, and everything is working, except that it always thinks there's an update to take. My updates.txt file has this:

[MixApp]
...
RegistryKey = HKLM\SOFTWARE\Square Products Corporation\MixApp\CurrentVersion
Version = 0.8.5

The registry key exists, and has the same ...
by mhorowitz
Mon May 18, 2009 6:04 am
Forum: Common Problems
Topic: MSVCR90.DLL missing after install
Replies: 7
Views: 9222
 
Jump to post

MSVCR90.DLL missing after install

When I create an installer and use it on my dev machine, it works great. When I install it on a more vanilla machine, the app fails to run (with the nice vague error message "This application has failed to start because the application configuration is incorrect. Reinstalling the application may fix ...
by mhorowitz
Wed Jul 30, 2008 5:31 pm
Forum: Common Problems
Topic: command line build completes after command returns
Replies: 4
Views: 4151
 
Jump to post

Re: command line build completes after command returns

Oh, that's much better. Status output, too! I guess I didn't pay close enough attention to the docs, and since it more or less worked, I didn't realize it was my fault. Thanks!
by mhorowitz
Sat Jul 26, 2008 8:26 am
Forum: Common Problems
Topic: command line build completes after command returns
Replies: 4
Views: 4151
 
Jump to post

command line build completes after command returns

I am trying to set up a build using the AdvancedInstaller.exe /build ... command as a part of a script. It appears that this command starts the build, but exits more or less immediately and does not wait for it to complete.

If I run the build command at the command line and run dir *immediately ...

Go to advanced search