hi,
Iam trying to uninstall the SQL Express through VBSCript.
I add the vbs file in custom action in INstallFinallize.
Execution condition > remove=all
when i uninstall it gives me a error another apllication is running. How can i do it in Advance Installer using VBScript.
Eg VBScript file.
on error resume next
Set WshShell = CreateObject("WScript.Shell")
' Uninstall OWC11
WshShell.Run "msiexec /x {90A40409-6000-11D3-8CFE-0150048383C9} /qb",1,True
Thanks
Kiran