--
You received this message because you are subscribed to the Google Groups "innosetup" group.
To unsubscribe from this group and stop receiving emails from it, send an email to innosetup+...@googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/innosetup/8121210b-1256-49b7-8424-21a66d66ee8dn%40googlegroups.com.
I want to ask a password before uninstalling my application but am facing following challenges.
Mine is a Client Server Application (Data Backups) and the Password will be set on the Server by the Customer's IT head who in turn does not want his end users to uninstall the application.
Many Antivirus's do likewise.
--
You received this message because you are subscribed to the Google Groups "innosetup" group.
To unsubscribe from this group and stop receiving emails from it, send an email to innosetup+...@googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/innosetup/25040e29-8857-47ad-85d8-0db78b08695dn%40googlegroups.com.
--
You received this message because you are subscribed to the Google Groups "innosetup" group.
To unsubscribe from this group and stop receiving emails from it, send an email to innosetup+...@googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/innosetup/acf5772b-8c3b-48b5-9554-2128a213290an%40googlegroups.com.
Regarding the Passwords, they will come from the Server, set by the IT Head. Only he can come to the End User Machine and Uninstall.
I can decrypt this using Delphi but is it possible using the Scripting InitializeUninstall() or can I exit at a later stage in [UninstallRun]
On Tuesday, May 6, 2025, 06:51:50, Gavin Lambert wrote:
No, only viruses.
Several corporate antivirus products do ask for uninstall password. They can all be bypassed the manual way, but it involves quite a bit of work (and using Safe Mode for specific products).
On Monday, May 5, 2025, 13:14:29, Allan Fernandes wrote:
1) Scripting into InitializeUninstall(), I can ask the user for a Password, but may be an overkill to validate the password from a Database. I cannot store the password in a text file either as it will be unsafe.
Hash the password and store the hash in Registry. When user enters the password, hash it, and compare with stored hash.
On Tuesday, May 6, 2025, 06:51:50, Gavin Lambert wrote:
No, only viruses.Several corporate antivirus products do ask for uninstall password. They can all be bypassed the manual way, but it involves quite a bit of work (and using Safe Mode for specific products).