Win32 API 日本語リファレンス
ホームSystem.DeploymentServices › WDSTRANSPORT_DIAGNOSTICS_COMPONENT_FLAGS

WDSTRANSPORT_DIAGNOSTICS_COMPONENT_FLAGS

列挙型
基底型i4

メンバー 4

名前10進16進説明
WdsTptDiagnosticsComponentPxe10x1WDS の PXE コンポーネントに対して診断が有効になります。このコンポーネントは、PXE ネットワーク ブートを実行するクライアントからの要求に応答します。通常は WDS 展開サーバーの役割で使用されますが、WDS トランスポート サーバーの役割を使用するさまざまなサードパーティ製アプリケーションでも利用できます。
WdsTptDiagnosticsComponentTftp20x2WDS の TFTP コンポーネントに対して診断が有効になります。このコンポーネントは、通常はプレブート環境にあるクライアントからの単純なファイル転送を処理します。通常は WDS 展開サーバーの役割で使用されますが、WDS トランスポート サーバーの役割を使用するさまざまなサードパーティ製アプリケーションでも利用できます。
WdsTptDiagnosticsComponentImageServer40x4WDS のイメージ サーバー コンポーネントに対して診断が有効になります。このコンポーネントは、サーバー上のオペレーティング システム イメージを列挙するクライアントからの要求を処理します。このコンポーネントは通常、WDS 展開サーバーの役割で使用されます。
WdsTptDiagnosticsComponentMulticast80x8WDS のマルチキャスト コンポーネントに対して診断が有効になります。このコンポーネントは、クライアントからのマルチキャスト ファイル転送を処理します。

公式ドキュメント

どの WDS コンポーネントで診断を有効にするかを構成します。WDS の診断はシステム イベント ログにイベントを記録します。

出典・ライセンス: 上記「公式ドキュメント」の内容は Microsoft の Win32 API ドキュメント(MicrosoftDocs/sdk-api)を日本語に翻訳・改変したものです。© Microsoft Corporation. CC BY 4.0 で提供。
Microsoft 公式リファレンス: 英語 (en-us) · 日本語 (ja-jp) · 原文ソース (GitHub)

各言語での定義

列挙メンバーの定義。HSP タブは #define global(値は16進)。

typedef enum WDSTRANSPORT_DIAGNOSTICS_COMPONENT_FLAGS : int {
    WdsTptDiagnosticsComponentPxe = 1,
    WdsTptDiagnosticsComponentTftp = 2,
    WdsTptDiagnosticsComponentImageServer = 4,
    WdsTptDiagnosticsComponentMulticast = 8
} WDSTRANSPORT_DIAGNOSTICS_COMPONENT_FLAGS;
public enum WDSTRANSPORT_DIAGNOSTICS_COMPONENT_FLAGS : int
{
    WdsTptDiagnosticsComponentPxe = 1,
    WdsTptDiagnosticsComponentTftp = 2,
    WdsTptDiagnosticsComponentImageServer = 4,
    WdsTptDiagnosticsComponentMulticast = 8,
}
Public Enum WDSTRANSPORT_DIAGNOSTICS_COMPONENT_FLAGS As Integer
    WdsTptDiagnosticsComponentPxe = 1
    WdsTptDiagnosticsComponentTftp = 2
    WdsTptDiagnosticsComponentImageServer = 4
    WdsTptDiagnosticsComponentMulticast = 8
End Enum
import enum

class WDSTRANSPORT_DIAGNOSTICS_COMPONENT_FLAGS(enum.IntEnum):
    WdsTptDiagnosticsComponentPxe = 1
    WdsTptDiagnosticsComponentTftp = 2
    WdsTptDiagnosticsComponentImageServer = 4
    WdsTptDiagnosticsComponentMulticast = 8
// WDSTRANSPORT_DIAGNOSTICS_COMPONENT_FLAGS
pub const WdsTptDiagnosticsComponentPxe: i32 = 1;
pub const WdsTptDiagnosticsComponentTftp: i32 = 2;
pub const WdsTptDiagnosticsComponentImageServer: i32 = 4;
pub const WdsTptDiagnosticsComponentMulticast: i32 = 8;
// WDSTRANSPORT_DIAGNOSTICS_COMPONENT_FLAGS
const (
	WdsTptDiagnosticsComponentPxe int32 = 1
	WdsTptDiagnosticsComponentTftp int32 = 2
	WdsTptDiagnosticsComponentImageServer int32 = 4
	WdsTptDiagnosticsComponentMulticast int32 = 8
)
const
  WdsTptDiagnosticsComponentPxe = 1;
  WdsTptDiagnosticsComponentTftp = 2;
  WdsTptDiagnosticsComponentImageServer = 4;
  WdsTptDiagnosticsComponentMulticast = 8;
// WDSTRANSPORT_DIAGNOSTICS_COMPONENT_FLAGS
pub const WdsTptDiagnosticsComponentPxe: i32 = 1;
pub const WdsTptDiagnosticsComponentTftp: i32 = 2;
pub const WdsTptDiagnosticsComponentImageServer: i32 = 4;
pub const WdsTptDiagnosticsComponentMulticast: i32 = 8;
const
  WdsTptDiagnosticsComponentPxe* = 1
  WdsTptDiagnosticsComponentTftp* = 2
  WdsTptDiagnosticsComponentImageServer* = 4
  WdsTptDiagnosticsComponentMulticast* = 8
enum WDSTRANSPORT_DIAGNOSTICS_COMPONENT_FLAGS : int {
    WdsTptDiagnosticsComponentPxe = 1,
    WdsTptDiagnosticsComponentTftp = 2,
    WdsTptDiagnosticsComponentImageServer = 4,
    WdsTptDiagnosticsComponentMulticast = 8,
}
#define global WdsTptDiagnosticsComponentPxe         0x1
#define global WdsTptDiagnosticsComponentTftp        0x2
#define global WdsTptDiagnosticsComponentImageServer 0x4
#define global WdsTptDiagnosticsComponentMulticast   0x8