want to make uninstaller
-
Hello I want to make an Uninstaller in Visual Studio. I have already made the Installer in Visual Studio. Reply me asap. Thanks
Devesh Mishra
-
Hello I want to make an Uninstaller in Visual Studio. I have already made the Installer in Visual Studio. Reply me asap. Thanks
Devesh Mishra
The installer IS the uninstaller. Your program will get added to the add/remove programs list when you install it
Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog "I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )
-
The installer IS the uninstaller. Your program will get added to the add/remove programs list when you install it
Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog "I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )
Thanks for ur reply.. Yah i know that my program will get added to the add/remove programs list when i install it. But i dont want to uninstall it from control panel. I want to uninstall it from start menu. Thanks
Devesh Mishra
-
Thanks for ur reply.. Yah i know that my program will get added to the add/remove programs list when i install it. But i dont want to uninstall it from control panel. I want to uninstall it from start menu. Thanks
Devesh Mishra
Just add a shortcut of the uninstaller to the right folder Drive:\Documents and Settings\YourUser\Start Menu\Programs\YourAppFolder\Uninstall.exe //for a specific user "usually current by matching the current user
System.Environment.UserName
with the special folder" or: Drive:\Documents and Settings\All Users\Start Menu\Programs\YourAppFolder\Uninstall.exe //for all users ps. Of course you'll have to check your folders locations usingSystem.Environment.SpecialFolder.ProgramFiles
Smile: A curve that can set a lot of things straight! (\ /) (O.o) (><)
-
Just add a shortcut of the uninstaller to the right folder Drive:\Documents and Settings\YourUser\Start Menu\Programs\YourAppFolder\Uninstall.exe //for a specific user "usually current by matching the current user
System.Environment.UserName
with the special folder" or: Drive:\Documents and Settings\All Users\Start Menu\Programs\YourAppFolder\Uninstall.exe //for all users ps. Of course you'll have to check your folders locations usingSystem.Environment.SpecialFolder.ProgramFiles
Smile: A curve that can set a lot of things straight! (\ /) (O.o) (><)
I think u r not getting me what i need... I want to make Uninstall.exe using Visual studio.You are saying to add me the shortcut of Uninstaller. But i dont have Uninstaller.exe. Got it ??? Reply me asap. Thanks
Devesh Mishra
-
I think u r not getting me what i need... I want to make Uninstall.exe using Visual studio.You are saying to add me the shortcut of Uninstaller. But i dont have Uninstaller.exe. Got it ??? Reply me asap. Thanks
Devesh Mishra
All you have to do is add ashortcut with the command line to invoke
msiexec/x
option and the correct .MSI file name OR Product Code.msiexec /x filename.msi
or
msiexec /x productcode
A guide to posting questions on CodeProject[^]
Dave Kreskowiak Microsoft MVP Visual Developer - Visual Basic
2006, 2007 -
All you have to do is add ashortcut with the command line to invoke
msiexec/x
option and the correct .MSI file name OR Product Code.msiexec /x filename.msi
or
msiexec /x productcode
A guide to posting questions on CodeProject[^]
Dave Kreskowiak Microsoft MVP Visual Developer - Visual Basic
2006, 2007Thanks for ur reply... I am doing the same whatever you are saying to do...But its not happening.... I got a message box and it shows "This installation package could not be opened" Now what should i do... Thanks
Devesh Mishra
-
Thanks for ur reply... I am doing the same whatever you are saying to do...But its not happening.... I got a message box and it shows "This installation package could not be opened" Now what should i do... Thanks
Devesh Mishra
Did you supply the FULL path to the .MSI file? A better option would be to use the Product code instead.
A guide to posting questions on CodeProject[^]
Dave Kreskowiak Microsoft MVP Visual Developer - Visual Basic
2006, 2007