In my wpf application, I ask the user to download the update if there is one. The file is downloaded via my program using this code:
WebClient wc = new WebClient();
wc.DownloadProgressChanged += new DownloadProgressChangedEventHandler(wc_DownloadProgressChanged);
wc.DownloadFileAsync(new Uri(textBox1.Text.Trim()), tempUrl + "Downloaded." + Path.GetExtension(textBox1.Text));
I would like to know if it is possible to run the setup installer in silent mode and to get the progress installation on my wpf application. I would like to display a progress bar on my wpf application. I'm using InnoSetup, I know how to start it in silent mode but I don't know how to get the installation progress value.