OperatingSystem.ServicePack プロパティ

定義

このOperatingSystem オブジェクトが表す Service Pack のバージョンを取得します。

public:
 property System::String ^ ServicePack { System::String ^ get(); };
public string ServicePack { get; }
member this.ServicePack : string
Public ReadOnly Property ServicePack As String

プロパティ値

String

複数の Service Pack がサポートされており、少なくとも 1 つがインストールされている場合は、その Service Pack のバージョン。それ以外の場合は空の文字列 ("")。

プロパティを示すコード例を次に ServicePack 示します。

// This example demonstrates the OperatingSystem.ServicePack property.
using namespace System;
int main()
{
   OperatingSystem^ os = Environment::OSVersion;
   String^ sp = os->ServicePack;
   Console::WriteLine( "Service pack version = \"{0}\"", sp );
}

/*
This example produces the following results:

Service pack version = "Service Pack 1"

*/
// This example demonstrates the OperatingSystem.ServicePack property.
using System;

class Sample
{
    public static void Main()
    {
    OperatingSystem os = Environment.OSVersion;
    String sp = os.ServicePack;
    Console.WriteLine("Service pack version = \"{0}\"", sp);
    }
}
/*
This example produces the following results:

Service pack version = "Service Pack 1"

*/
// This example demonstrates the OperatingSystem.ServicePack property.
open System

let os = Environment.OSVersion
let sp = os.ServicePack
printfn $"Service pack version = \"{sp}\""
// This example produces the following results:
//     Service pack version = "Service Pack 1"
' This example demonstrates the OperatingSystem.ServicePack property.
Class Sample
   Public Shared Sub Main()
      Dim os As OperatingSystem = Environment.OSVersion
      Console.WriteLine("Service pack version = ""{0}""", os.ServicePack)
   End Sub
End Class
'
'This example produces the following results:
'
'Service pack version = "Service Pack 1"
'

注釈

Service Pack は、インストールされているオペレーティング システムのソフトウェア更新プログラムを配布するために使用されます。 ただし、すべてのオペレーティング システムでサービス パックが使用されるわけではありません。

サービス パックのバージョン (使用可能な場合) は、表示用に既に正しく書式設定されています。

適用対象

こちらもご覧ください