How do i uninstall Xcelsius from the machine?
Updated: 21 May 2010 | 2 comments
This issue has been solved. See solution.
I have situation wherein i have to remove Xcelsius 2008, which is already installed on the machine. I have to use either a wise script OR a vbscript to do the job.
Any suggestions/directions are appreciated.
Thanks,
Sushma
discussion Filed Under:
Comments
Hey Sushma,find the
Hey Sushma,
find the uninstall string from HKLM\...\Uninstall hive and use that in your wise script OR VBScript.
A detailed description
Any APPLICATION you want to uninstall, please follow the below steps:
1. Navigate to the following registry hive:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall
2. Find APPLICATION [Xcelsius 2008] PRODUCT code:
{XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX}
3. Use the following commandline options [in wsie script/VBScript]:
Passive Uninstall [Progressbar without CANCEL button]:
msiexec.exe /X{XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX} /qb!
Completely Silent Uninstall:
msiexec.exe /X{XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX} /qn
I hope this helps.
I would recommend you go through the FORUM for solutions/workarounds, before you post anything here. Also i would suggest googling. :-)
Thanks,
Arun Kumar
Thanks,
CableGuy
Do not forget to mark a SOLUTION
You guys are awesome!Thank
You guys are awesome!
Thank you for your suggestions. I really appreciate your time on this.
From next time I will definitely make use of SEARCH option on this forum.
By the way I'm new to Application Packaging and this FORUM has been very helpful.
Coming to the uninstall, i would opt for SILENT uninstall as it is the requirement. I don't know much about VBScripting but give it a try [googling :-)].
Thanks for all your help guys! You guys ROCK! Have a good one.
Thanks,
- Sushma
Would you like to reply?
Login or Register to post your comment.