How do I stop a windows service? and I also would like to get the status of the service. If its 100 % stopped.
Because I dont want to proceed if the serice is not 100% done.
I could do it like this but this is not a good option for me.
George
Because I dont want to proceed if the serice is not 100% done.
I could do it like this but this is not a good option for me.
Code:
Ret = Shell("net stop RegSrvc", vbNormalFocus)
George