Java 6 Standard Edition-Uninstall Issue(Urgent)
Hi ,
While uninstalling Java 6 Standard Edition silently it is showing "Java Setup-Close Application",it is becoz of jqs.exe(java quick start service) even I tried killing the exe..but it is not uninstalling.When I open Internet explorer and uninstall Java,I face this issue.It is asking for the User to check mark "Quit the appliactions listed"..only then complpete uninstallation happens.If anyone knows the solution to kill the exe in msi/mst please reply back...it is a bit urgent
While uninstalling Java 6 Standard Edition silently it is showing "Java Setup-Close Application",it is becoz of jqs.exe(java quick start service) even I tried killing the exe..but it is not uninstalling.When I open Internet explorer and uninstall Java,I face this issue.It is asking for the User to check mark "Quit the appliactions listed"..only then complpete uninstallation happens.If anyone knows the solution to kill the exe in msi/mst please reply back...it is a bit urgent
0 Comments
[ + ] Show comments
Answers (6)
Please log in to answer
Posted by:
anonymous_9363
15 years ago
Posted by:
Gary
15 years ago
Hi
Use the script given below.I had packaged Java 6 a few days before and the script worked for me.
strComputer = "."
Set objWMIService = GetObject("winmgmts:" _
& "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2")
Set colListOfServices = objWMIService.ExecQuery _
("Select * from Win32_Service Where Name = 'JavaQuickStarterService'")
For Each objService in colListOfServices
objService.StopService()
objService.Delete()
Next
regards,
Use the script given below.I had packaged Java 6 a few days before and the script worked for me.
strComputer = "."
Set objWMIService = GetObject("winmgmts:" _
& "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2")
Set colListOfServices = objWMIService.ExecQuery _
("Select * from Win32_Service Where Name = 'JavaQuickStarterService'")
For Each objService in colListOfServices
objService.StopService()
objService.Delete()
Next
regards,
Posted by:
turbokitty
15 years ago
Posted by:
poojasri
15 years ago
Posted by:
nheim
15 years ago
Rating comments in this legacy AppDeploy message board thread won't reorder them,
so that the conversation will remain readable.
so that the conversation will remain readable.