Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How the below scenario can be achieved,

1) There should be only one exe which should execute some code

2) Also, it should add an entry in the add/remove programs

3) When i uninstall the entry from add/remove programs, i need to call some functions/api's to complete the uninstallation.

share|improve this question

1 Answer

If the "call some functions/api's" you need is as simple as removing files at next reboot - make it a "delete on reboot" as explained here:

Windows Registry Editor Version 5.00 [HKEY_CLASSES_ROOT*\shell\Delete on reboot\command] @="CMD /E:OFF /C REG ADD >HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\Currentversion\RunOnce /v \"Del %1 >OnNextReboot\" /d ^\"cmd.exe /c DEL /F /Q \\"%1\\"\" /f\"" [HKEY_CLASSES_ROOT*\shell\Open] [HKEY_CLASSES_ROOT\Folder\shell\Delete on reboot\command] @="CMD /E:OFF /C REG ADD >HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\Currentversion\RunOnce /v \"Del %1 >OnNextReboot\" /d ^\"cmd.exe /c RD /S /Q \\"%1\\"\" /f\""

To remove registry entries on reboot use this (explained here):

[HKEY_CLASSES_ROOT*\shell\Delete on reboot\command] @="CMD /E:OFF /C REG ADD >HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\Currentversion\RunOnce /v \"Del %1 >OnNextReboot\" /d ^\"cmd.exe /c DEL /F /Q \\"%1\\"\" /f\"" [HKEY_CLASSES_ROOT*\shell\Open] [HKEY_CLASSES_ROOT\Folder\shell\Delete on reboot\command] @="CMD /E:OFF /C REG ADD >HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\Currentversion\RunOnce /v \"Del %1 >OnNextReboot\" /d ^\"cmd.exe /c RD /S /Q \\"%1\\"\" /f\""

share|improve this answer
I dont want to remove the files on reboot, I want to call some function call or Api. (For example, need to delete a certficate from the certificcate store, or call an exe ) – 2vision2 Jul 14 '12 at 9:57
Those can be done by your very program, no? Either write a separate binary to run at "uninstall-time" or have your main binary employ a special mode for uninstallation (using a command-line switch would probably be the easiest). That way what you do during uninstall is you call your necessary clean-up subroutines and then proceed with the regular uninstall process. – YePhIcK Jul 14 '12 at 11:12
ya I can do it with my program. My question here is how to call that binary automatically while I'm uninstalling my package in control panel? – 2vision2 Jul 17 '12 at 5:33

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.