shake
shake

Reputation: 1782

Windows Installer msi package

I have a windows installer msi package with the setup.exe bootstrap. Works fine everywhere.
However the client has supposedly uninstalled the application and then tried to run the setup.exe again and gets the following error in the log file: Launching Application. Error: Unable to locate application file 'xyz.msi'.

Now the setup.exe and the msi file are in the same folder. Is this even possible in any scenario?

Upvotes: 0

Views: 961

Answers (2)

Tom Hazel
Tom Hazel

Reputation: 3502

If you're looking for a quick, one-time fix you could also just try to run the .msi directly.

Upvotes: 0

Ryan O'Neill
Ryan O'Neill

Reputation: 5707

I think it is looking somewhere daft for your MSI, probably in the MSI cache or System32.

I'd suggest using procmon to capture the file system searches and then search that output for your MSI file name. You'll see it is not found a few times but that will show you where it is looking.

Ryan

Upvotes: 2

Related Questions