getting user feedback on uninstall
Hi, is there any plugin or example to request the user for feedback on uninstalling the app? I.e. to ask why they uninstalled.
(I guess it would post to a web form or something)
Archive: getting user feedback on uninstall
getting user feedback on uninstall
Hi, is there any plugin or example to request the user for feedback on uninstalling the app? I.e. to ask why they uninstalled.
(I guess it would post to a web form or something)
It's ok, I think I will just open a web browser window to a webpage on uninstall, that will probably be much easier.
except, there is a problem with opening browsers in the uninstaller, mainly, the add/remove program window waits for every uninstaller child process
Really? I just tried on XP and there didn't seem to be a problem.
I did use this technique: http://nsis.sourceforge.net/Open_lin...browser_window
Which is better than plain ol' ShellExecute.
Originally posted by xDanThat code is both wrong and stupid, ExecShell is the correct choice
Really? I just tried on XP and there didn't seem to be a problem.
I did use this technique: http://nsis.sourceforge.net/Open_lin...browser_window
Which is better than plain ol' ShellExecute.
Yeah, ow, use ExecShell as Anders says.
So are you going to bother to back that up with facts? Why exactly is it stupid?
Originally posted by xDanExecShell calls ShellExecute and that is correct way to open a url. Parsing the registry on your own is so error prone and not future proof.
So are you going to bother to back that up with facts? Why exactly is it stupid?
Well, ok then, I didn't realise that. ShellExecute is still annoying, though, in that in some cases it will use an already open window.
Originally posted by xDanThat is not ShellExecute's fault, it depends on the end user's setup (default browser and how this browser is registered)
Well, ok then, I didn't realise that. ShellExecute is still annoying, though, in that in some cases it will use an already open window.
You could try
rundll32 url.dll,FileProtocolHandler http://example.com
probably not documented and might just call ShellExecute internally, I don't knowThanks anyway. I guess this isn't really a critical situation, I can live with a few problems if they are uninstalling the software trial anyway.