Archive: User feedback on deinstallation


User feedback on deinstallation
Hallo,

I want the user to give some feedback on the deinstallation page. How do I do that? Is there a plugin available for that task?

best regards,

Hamlet


Create a custom InstallOptions page and use nsisDl to "download" a web page from your server, and use a PHP/ASP/etc script to add the information to your customer database.

;at this point we have $0, $1, and $2 as values read from the InstallOptions INI
nsisDl::download "http://www.yoursite.com/scripts/feedback.php?a=$0&b=$1&c=$2" "$PLUGINSDIR\Result.INI"


If you're using PHP, make sure you use the $_REQUEST var instead of $_POST or $_GET.

-dandaman32