Hello,
I want to kill the Explorer process, after Explorer process has been killed,
it will restart automatically immediately. How to disable it restart
automatically? for example, in Windows Task Manager, you can kill explorer
process, but it will not restart automatically.
My code:
/////////////////////////////////////////////
For Each ObjPro As Process In Process.GetProc essesByName("EX PLORER")
ObjPro.Kill()
Do Until ObjPro.HasExite d = True
Application.DoE vents()
Loop
Next
////////////////////////////////////////////
I want to kill the Explorer process, after Explorer process has been killed,
it will restart automatically immediately. How to disable it restart
automatically? for example, in Windows Task Manager, you can kill explorer
process, but it will not restart automatically.
My code:
/////////////////////////////////////////////
For Each ObjPro As Process In Process.GetProc essesByName("EX PLORER")
ObjPro.Kill()
Do Until ObjPro.HasExite d = True
Application.DoE vents()
Loop
Next
////////////////////////////////////////////
Comment