Is it possible to uninstall an application in windows using a Perl script?
+4
A:
I dont think there is any standard Perl module which accepts the application name and uninstall it. To uninstall an application you need to know its uninstaller application name/path. You can launch the uninstaller application from the Perl script by calling it in the System function.
GJ
2009-12-14 11:45:41
Also if unuinstaller does not support silent uninstalling, you'd have to click buttons it wants then.
n0rd
2009-12-15 11:10:01
A:
You need to know every step you did in the installation process like inserting registry keys and which files and directories were generated in the installation proccess.
dan
2009-12-14 17:00:21