ホーム › Storage.FileServerResourceManager › FsrmAccountType
FsrmAccountType
列挙型メンバー 7
| 名前 | 10進 | 16進 | 説明 |
|---|---|---|---|
| FsrmAccountType_Unknown | 0 | 0x0 | アカウントの種類が不明です。この値を使用して IFsrmActionCommand::Account プロパティを設定しないでください。 |
| FsrmAccountType_NetworkService | 1 | 0x1 | "NetworkService" アカウントでコマンドまたはパイプラインモジュールを実行します。 |
| FsrmAccountType_LocalService | 2 | 0x2 | "LocalService" アカウントでコマンドまたはパイプラインモジュールを実行します。 |
| FsrmAccountType_LocalSystem | 3 | 0x3 | "LocalSystem" アカウントでコマンドまたはパイプラインモジュールを実行します。 |
| FsrmAccountType_InProc | 4 | 0x4 | この値は内部使用のために予約済みです。 |
| FsrmAccountType_External | 5 | 0x5 | FSRM とは別のプロセスで分類子またはストレージモジュールを実行します (FSRM は CLSCTX_LOCAL_SERVER を使用してモジュールをインスタンス化します)。モジュールの実行に使用されるアカウントは、モジュールの COM 登録で指定されます。登録でアカウントが指定されていない場合、モジュールはユーザーのアカウントを使用して実行されます。 |
| FsrmAccountType_Automatic | 500 | 0x1F4 | FSRM が選択するアカウントでコマンドまたはパイプラインモジュールを実行します。この値を使用することをお勧めします。 Windows Server 2008 R2 および Windows Server 2008: この列挙値は Windows Server 2012 より前ではサポートされていません。 |
公式ドキュメント
コマンドアクション ( FsrmActionType を参照) を実行できるコンピューターアカウントの種類を定義します。
出典・ライセンス: 上記「公式ドキュメント」の内容は Microsoft の Win32 API ドキュメント(MicrosoftDocs/sdk-api)を日本語に翻訳・改変したものです。© Microsoft Corporation. CC BY 4.0 で提供。
Microsoft 公式リファレンス: 英語 (en-us) · 日本語 (ja-jp) · 原文ソース (GitHub)
Microsoft 公式リファレンス: 英語 (en-us) · 日本語 (ja-jp) · 原文ソース (GitHub)
各言語での定義
列挙メンバーの定義。HSP タブは #define global(値は16進)。
typedef enum FsrmAccountType : int {
FsrmAccountType_Unknown = 0,
FsrmAccountType_NetworkService = 1,
FsrmAccountType_LocalService = 2,
FsrmAccountType_LocalSystem = 3,
FsrmAccountType_InProc = 4,
FsrmAccountType_External = 5,
FsrmAccountType_Automatic = 500
} FsrmAccountType;public enum FsrmAccountType : int
{
FsrmAccountType_Unknown = 0,
FsrmAccountType_NetworkService = 1,
FsrmAccountType_LocalService = 2,
FsrmAccountType_LocalSystem = 3,
FsrmAccountType_InProc = 4,
FsrmAccountType_External = 5,
FsrmAccountType_Automatic = 500,
}Public Enum FsrmAccountType As Integer
FsrmAccountType_Unknown = 0
FsrmAccountType_NetworkService = 1
FsrmAccountType_LocalService = 2
FsrmAccountType_LocalSystem = 3
FsrmAccountType_InProc = 4
FsrmAccountType_External = 5
FsrmAccountType_Automatic = 500
End Enumimport enum
class FsrmAccountType(enum.IntEnum):
FsrmAccountType_Unknown = 0
FsrmAccountType_NetworkService = 1
FsrmAccountType_LocalService = 2
FsrmAccountType_LocalSystem = 3
FsrmAccountType_InProc = 4
FsrmAccountType_External = 5
FsrmAccountType_Automatic = 500// FsrmAccountType
pub const FsrmAccountType_Unknown: i32 = 0;
pub const FsrmAccountType_NetworkService: i32 = 1;
pub const FsrmAccountType_LocalService: i32 = 2;
pub const FsrmAccountType_LocalSystem: i32 = 3;
pub const FsrmAccountType_InProc: i32 = 4;
pub const FsrmAccountType_External: i32 = 5;
pub const FsrmAccountType_Automatic: i32 = 500;// FsrmAccountType
const (
FsrmAccountType_Unknown int32 = 0
FsrmAccountType_NetworkService int32 = 1
FsrmAccountType_LocalService int32 = 2
FsrmAccountType_LocalSystem int32 = 3
FsrmAccountType_InProc int32 = 4
FsrmAccountType_External int32 = 5
FsrmAccountType_Automatic int32 = 500
)const
FsrmAccountType_Unknown = 0;
FsrmAccountType_NetworkService = 1;
FsrmAccountType_LocalService = 2;
FsrmAccountType_LocalSystem = 3;
FsrmAccountType_InProc = 4;
FsrmAccountType_External = 5;
FsrmAccountType_Automatic = 500;// FsrmAccountType
pub const FsrmAccountType_Unknown: i32 = 0;
pub const FsrmAccountType_NetworkService: i32 = 1;
pub const FsrmAccountType_LocalService: i32 = 2;
pub const FsrmAccountType_LocalSystem: i32 = 3;
pub const FsrmAccountType_InProc: i32 = 4;
pub const FsrmAccountType_External: i32 = 5;
pub const FsrmAccountType_Automatic: i32 = 500;const
FsrmAccountType_Unknown* = 0
FsrmAccountType_NetworkService* = 1
FsrmAccountType_LocalService* = 2
FsrmAccountType_LocalSystem* = 3
FsrmAccountType_InProc* = 4
FsrmAccountType_External* = 5
FsrmAccountType_Automatic* = 500enum FsrmAccountType : int {
FsrmAccountType_Unknown = 0,
FsrmAccountType_NetworkService = 1,
FsrmAccountType_LocalService = 2,
FsrmAccountType_LocalSystem = 3,
FsrmAccountType_InProc = 4,
FsrmAccountType_External = 5,
FsrmAccountType_Automatic = 500,
}#define global FsrmAccountType_Unknown 0x0
#define global FsrmAccountType_NetworkService 0x1
#define global FsrmAccountType_LocalService 0x2
#define global FsrmAccountType_LocalSystem 0x3
#define global FsrmAccountType_InProc 0x4
#define global FsrmAccountType_External 0x5
#define global FsrmAccountType_Automatic 0x1F4