Hi Nicholas
Thanks for your advice.
Can you point me to an example of such a utility?
Thanks
Doug
"Nicholas Paldino [.NET/C# MVP]" <mvp@spam.guard.caspershouse.com> wrote in
message news:eMcsVTMvHHA.4732@TK2MSFTNGP06.phx.gbl...
> Jerry,
>
> Since your installer should create an MSI package, you should be able
> to write a small utility which will call MSIEXEC to uninstall your
> program. You will want to execute the following on the command line from
> your utility (you can spawn this off in a new process from your uninstall
> program):
>
> msiexec/x {Package | ProductCode}
>
> You can use the package or product code to specify your product.
>
>> Hi
>>
>> I have noticed that my apps don't have an uninstall capacity in the users
>> programs shortcuts. While users can remove the program in the control
>> panel, add remove programs, I would like to have an uninstall as an
>> option in the program menu.
>>
>> I am using VS2005 and using the setup deployment project type.
>>
>> Thanks
>>
>> Doug
Michael Nemtsev - 04 Jul 2007 14:21 GMT
Hello jerry,
As I understand it's just the cmd file which call "msiexec /uninstall product_msi.msi
</qn>"
---
WBR, Michael Nemtsev [.NET/C# MVP].
My blog: http://spaces.live.com/laflour
Team blog: http://devkids.blogspot.com/
"The greatest danger for most of us is not that our aim is too high and we
miss it, but that it is too low and we reach it" (c) Michelangelo
j> for your advice.
j> Can you point me to an example of such a utility?