D
doktor-red-bull
Hi
Wie kann ich unter VB6 die Dienste von Windows steuern ?
Ich habe da zwar einen Ansatz, aber der funktioniert nicht.
Dim ComputerDomain As String
Dim ComputerName As String
ComputerDomain = "WS_JM"
ComputerName = "WS_JM"
Dim Computer
Dim Service
Set Computer = GetObject("WinNT://" & ComputerDomain & "/" & ComputerName & ",computer")
Set Service = Computer.GetObject("service", TargetService)
If Service.Status = 4 Then
Service.Stop
MsgBox "The " & Service.Name & " service has been stopped."
Else
If Service.Status = 1 Then
MsgBox "The " & Service.Name & " service is already stopped."
Service.Start
End If
End If
Hat jmd. vielleicht eine Idee ?
Wie kann ich unter VB6 die Dienste von Windows steuern ?
Ich habe da zwar einen Ansatz, aber der funktioniert nicht.
Dim ComputerDomain As String
Dim ComputerName As String
ComputerDomain = "WS_JM"
ComputerName = "WS_JM"
Dim Computer
Dim Service
Set Computer = GetObject("WinNT://" & ComputerDomain & "/" & ComputerName & ",computer")
Set Service = Computer.GetObject("service", TargetService)
If Service.Status = 4 Then
Service.Stop
MsgBox "The " & Service.Name & " service has been stopped."
Else
If Service.Status = 1 Then
MsgBox "The " & Service.Name & " service is already stopped."
Service.Start
End If
End If
Hat jmd. vielleicht eine Idee ?