Hardie82
Hardie82

Reputation: 880

Unattended update: how to pass throught user settings to new installer?

I have to implement the following scenario:

  1. Application is installed with user specific values like installation directory, server url, user home and more
  2. User should start a stand-alone updater
  3. updater should automatically check for update, download file and start the new installer in silent mode
  4. After installation there should be a status message whether update was successful or not

Therefore I took the updater of the Hello sample app and removed the user input forms. Now the check is succesful and the file will be downloaded. But how to pass through the user input values to the new installer? Should I use the response file and set this one as an argument for the silent installation?

Thanks in adnvance
Hardie

Upvotes: 1

Views: 370

Answers (1)

Ingo Kegel
Ingo Kegel

Reputation: 48005

The new installer will read the existing response file from old installation if you add a "Load a response file" action to the "Installation location" screen. The default project template already has this action in place.

Upvotes: 1

Related Questions