How to make an uninstall option in a C # program?

I want to make an uninstall option in my C # program? can help you? and provide some code also

+3
source share
3 answers

You can create an installation project that will automatically add support for removal. In the section Other Project Typesyou have Setup and Deployment. There is InstallShield LE and the Visual Studio installer . If you select Setup Project in a Visual Studio Installer project, you will delete it as part of the embedded project.

0
source

Visual Studio Setup and Deployment Project, . " " .

0

see this video

http://www.youtube.com/watch?v=Z-xFLltALg0

If you want the executable to be deleted. as well as self-destruction. Check out this blog http://blog.pedroliska.com/2010/05/20/c-self-destruct-windows-app/

0
source

All Articles