Importare questo namespace: "System.ServiceProcess"

 

Dim myController As ServiceController

myController = New ServiceController("nomeservizio")

 

'Fermare un servizio

Dim myController As ServiceController

If myController.CanStop Then

myController.Stop()

Else

MsgBox("Il servizio non può essere fermato")

End If

 

'Avviare il servizio

Try

myController.Start()

Catch exp As Exception

MsgBox("Il servizio non può essere avviato")

End Try