How to setup 'uninstall' ??

  • Thread starter Thread starter Agnes
  • Start date Start date
A

Agnes

I can deploy the program very well, However, Everything i want to
re-install.
I need to remove it in Control Panel , and then start install,
Can I include(uninstall) function during my deployment ???
THnaks
 
The way that I do my uninstall stuff is that I created a .bat file with
the following line:

"<windows system dir>\MsiExec.exe /I{<productCode (found in .net>}"

the <windows system dir> for windows xp for example is
'c:\windows\system32', that could be different for win98 and nt though.
the productCode (the curly brackets {} are a must) is found in .NET
when you click on your deployment project it is shown in the properties
window.

I put the uninstall shortcut on the users start menu with the actual
program. Hope that helps.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top