ServiceController.Start Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Inicia o serviço.
Sobrecargas
Start() |
Inicia o serviço, não passando nenhum argumento. |
Start(String[]) |
Inicia um serviço, passando os argumentos especificados. |
Start()
Inicia o serviço, não passando nenhum argumento.
public:
void Start();
public void Start ();
member this.Start : unit -> unit
Public Sub Start ()
Exceções
Ocorreu um erro ao acessar uma API do sistema.
O serviço não foi encontrado.
Exemplos
O exemplo a seguir usa a ServiceController classe para verificar se o serviço Alerter foi interrompido. Se o serviço for interrompido, o exemplo iniciará o serviço e aguardará até que o status do serviço seja definido como Running.
// Check whether the Alerter service is started.
ServiceController^ sc = gcnew ServiceController;
if ( sc )
{
sc->ServiceName = "Alerter";
Console::WriteLine( "The Alerter service status is currently set to {0}", sc->Status );
if ( sc->Status == (ServiceControllerStatus::Stopped) )
{
// Start the service if the current status is stopped.
Console::WriteLine( "Starting the Alerter service..." );
try
{
// Start the service, and wait until its status is "Running".
sc->Start();
sc->WaitForStatus( ServiceControllerStatus::Running );
// Display the current service status.
Console::WriteLine( "The Alerter service status is now set to {0}.", sc->Status );
}
catch ( InvalidOperationException^ e )
{
Console::WriteLine( "Could not start the Alerter service." );
}
}
}
// Check whether the Alerter service is started.
ServiceController sc = new ServiceController();
sc.ServiceName = "Alerter";
Console.WriteLine("The Alerter service status is currently set to {0}",
sc.Status.ToString());
if (sc.Status == ServiceControllerStatus.Stopped)
{
// Start the service if the current status is stopped.
Console.WriteLine("Starting the Alerter service...");
try
{
// Start the service, and wait until its status is "Running".
sc.Start();
sc.WaitForStatus(ServiceControllerStatus.Running);
// Display the current service status.
Console.WriteLine("The Alerter service status is now set to {0}.",
sc.Status.ToString());
}
catch (InvalidOperationException)
{
Console.WriteLine("Could not start the Alerter service.");
}
}
' Check whether the Alerter service is started.
Dim sc As New ServiceController()
sc.ServiceName = "Alerter"
Console.WriteLine("The Alerter service status is currently set to {0}", sc.Status)
If sc.Status = ServiceControllerStatus.Stopped Then
' Start the service if the current status is stopped.
Console.WriteLine("Starting the Alerter service...")
Try
' Start the service, and wait until its status is "Running".
sc.Start()
sc.WaitForStatus(ServiceControllerStatus.Running)
' Display the current service status.
Console.WriteLine("The Alerter service status is now set to {0}.", sc.Status)
Catch
Console.WriteLine("Could not start the Alerter service.")
End Try
End If
Comentários
Não é possível chamar Stop o serviço até que o status do controlador de serviço seja Running
.
Confira também
Aplica-se a
Start(String[])
Inicia um serviço, passando os argumentos especificados.
public:
void Start(cli::array <System::String ^> ^ args);
public void Start (string[] args);
member this.Start : string[] -> unit
Public Sub Start (args As String())
Parâmetros
- args
- String[]
Uma matriz de argumentos a ser passada para o serviço quando ele é iniciado.
Exceções
Ocorreu um erro ao acessar uma API do sistema.
Não é possível iniciar o serviço.
Comentários
Não é possível chamar Stop o serviço até que o status do controlador de serviço seja Running
.