How to: Continue a Windows Service (Visual Basic)

This example uses the ServiceController component to continue the IIS Admin service on the local computer.

Example

Dim theController As System.ServiceProcess.ServiceController
theController = New System.ServiceProcess.ServiceController("IISAdmin")


...



' Checks that the service is paused.
If theController.Status =
  System.ServiceProcess.ServiceControllerStatus.Paused Then

  ' Continues the service.
  theController.Continue()
End If

This code example is also available as an IntelliSense code snippet. In the code snippet picker, it is located in Windows Operating System > Windows Services. For more information, see How to: Insert IntelliSense Code Snippets.

Compiling the Code

This example requires:

Robust Programming

The MachineName property of the ServiceController class is the local computer by default. To reference Windows services on another computer, change the MachineName property to the name of that computer.

You cannot call the Continue method on a service until the service controller status is Paused.

The following conditions may cause an exception:

Security

Control of services on the computer may be restricted by using the ServiceControllerPermissionAccess enumeration to set permissions in the ServiceControllerPermission class.

Access to service information may be restricted by using the PermissionState enumeration to set permissions in the SecurityPermission class.

See Also

Tasks

How to: Pause a Windows Service (Visual Basic)

Reference

ServiceController

ServiceControllerStatus