ServiceControllerStatus 列挙型
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
サービスの現在の状態を示します。
public enum class ServiceControllerStatus
public enum ServiceControllerStatus
type ServiceControllerStatus =
Public Enum ServiceControllerStatus
- 継承
フィールド
ContinuePending | 5 | サービスの継続は保留中です。 これは、Win32 の (0x00000005 として定義されている) |
Paused | 7 | サービスは一時中断されています。 これは、Win32 の (0x00000007 として定義されている) |
PausePending | 6 | サービスの一時中断は保留中です。 これは、Win32 の (0x00000006 として定義されている) |
Running | 4 | サービスは実行中です。 これは、Win32 の (0x00000004 として定義されている) |
StartPending | 2 | サービスは開始中です。 これは、Win32 の (0x00000002 として定義されている) |
Stopped | 1 | サービスは実行されていません。 これは、Win32 の (0x00000001 として定義されている) |
StopPending | 3 | サービスは停止中です。 これは、Win32 の (0x00000003 として定義されている) |
例
次の例では、 クラスを ServiceController 使用して、TelNet サービスの現在の状態を確認します。 サービスが停止した場合、この例ではサービスを開始します。 サービスが実行されている場合、この例ではサービスを停止します。
// Toggle the Telnet service -
// If it is started (running, paused, etc), stop the service.
// If it is stopped, start the service.
ServiceController^ sc = gcnew ServiceController( "Telnet" );
if ( sc )
{
Console::WriteLine( "The Telnet service status is currently set to {0}", sc->Status );
if ( (sc->Status == (ServiceControllerStatus::Stopped) ) || (sc->Status == (ServiceControllerStatus::StopPending) ) )
{
// Start the service if the current status is stopped.
Console::WriteLine( "Starting the Telnet service..." );
sc->Start();
}
else
{
// Stop the service if its status is not set to "Stopped".
Console::WriteLine( "Stopping the Telnet service..." );
sc->Stop();
}
// Refresh and display the current service status.
sc->Refresh();
Console::WriteLine( "The Telnet service status is now set to {0}.", sc->Status );
// Toggle the Telnet service -
// If it is started (running, paused, etc), stop the service.
// If it is stopped, start the service.
ServiceController sc = new ServiceController("Telnet");
Console.WriteLine("The Telnet service status is currently set to {0}",
sc.Status);
if ((sc.Status == ServiceControllerStatus.Stopped) ||
(sc.Status == ServiceControllerStatus.StopPending))
{
// Start the service if the current status is stopped.
Console.WriteLine("Starting the Telnet service...");
sc.Start();
}
else
{
// Stop the service if its status is not set to "Stopped".
Console.WriteLine("Stopping the Telnet service...");
sc.Stop();
}
// Refresh and display the current service status.
sc.Refresh();
Console.WriteLine("The Telnet service status is now set to {0}.",
sc.Status);
' Toggle the Telnet service -
' If it is started (running, paused, etc), stop the service.
' If it is stopped, start the service.
Dim sc As New ServiceController("Telnet")
Console.WriteLine("The Telnet service status is currently set to {0}", sc.Status)
If sc.Status.Equals(ServiceControllerStatus.Stopped) Or sc.Status.Equals(ServiceControllerStatus.StopPending) Then
' Start the service if the current status is stopped.
Console.WriteLine("Starting the Telnet service...")
sc.Start()
Else
' Stop the service if its status is not set to "Stopped".
Console.WriteLine("Stopping the Telnet service...")
sc.Stop()
End If
' Refresh and display the current service status.
sc.Refresh()
Console.WriteLine("The Telnet service status is now set to {0}.", sc.Status)
注釈
ServiceControllerStatus列挙は、 クラスのインスタンスによって使用され、既存のServiceControllerサービスが実行されているか、停止されているか、一時停止されているか、または Start、Stop、Pause、または Continue コマンドが保留中かどうかを示します。
適用対象
こちらもご覧ください
.NET