On Sep 19, 1:38*pm, Alhambra Eidos Desarrollo
<AlhambraEidosDesarro...@discussions.microsoft.com wrote:
Quote:
Hi anyone,
>
I have installed a winforms application vs 2005. It appears in Control Panel
-Add / Remove Programs.
>
I have another application .NET and I want uninstall the application
installed programatically using only the name of application that appearsin
Control Panel -Add /Remove Programas (the product name).
>
Is it possible ?? Any suggestion about it ? Anyone has any ideas ?
>
thanks in advance, greetings, regards
--http://www.alhambra-eidos.es/web2005/index.htmlwww.kiquenet.com/churrosofthttp://www.setbb.com/putainformatica/viewtopic.php?p=843www.trabajobasura.com/solusoft
Get the uninstallation string from HKLM\Software\Microsoft\Windows
\CurrentVersion\Uninstall\SOFTWARENAME\UninstallSt ring
and load it in a process...
Process p = new Process();
p.StartInfo.Arguments = uninstallstring; //may be some tweaks
required as per your application
p.Start();
-cnu