FsrmReportType
列挙型メンバー 14
| 名前 | 10進 | 16進 | 説明 |
|---|---|---|---|
| FsrmReportType_Unknown | 0 | 0x0 | レポートの種類が不明です。このフラグは使用しないでください。 |
| FsrmReportType_LargeFiles | 1 | 0x1 | 指定したサイズより大きいファイルを一覧表示します。フィルター値にサイズをバイト単位で設定します。 |
| FsrmReportType_FilesByType | 2 | 0x2 | ファイルのグループを一覧表示します。ファイル グループを作成し、ファイル名パターンを使用してグループのメンバーを指定します。 フィルター値にファイル グループの名前を設定します。 |
| FsrmReportType_LeastRecentlyAccessed | 3 | 0x3 | 過去 n 日間にアクセスされていないファイルを一覧表示します。フィルター値は日数で 指定します。 |
| FsrmReportType_MostRecentlyAccessed | 4 | 0x4 | 過去 n 日間にアクセスされたファイルを一覧表示します。フィルター値は日数で 指定します。 |
| FsrmReportType_QuotaUsage | 5 | 0x5 | 指定したしきい値を超えるクォータを一覧表示します。フィルター値にしきい値を設定します。 |
| FsrmReportType_FilesByOwner | 6 | 0x6 | 所有者ごとにグループ化されたファイルを一覧表示します。レポートに含めるファイルの所有者の一覧をフィルター値に 設定します。 |
| FsrmReportType_ExportReport | 7 | 0x7 | レポート ジョブのスコープ内のすべてのファイルを一覧表示します。フィルター処理は行われません。このレポートの種類では、XML または CSV の ファイル形式のみを指定できます。このレポートは電子メールで送信できません。 アクション レポートの場合、スコープはレポートを開始したクォータまたはファイル スクリーンのイベントに基づきます。 |
| FsrmReportType_DuplicateFiles | 8 | 0x8 | 重複するファイルを一覧表示します。レポート ジョブのスコープ内で、ファイル名、ファイル サイズ、最終更新日時が同じファイルは すべて重複と見なされます。たとえば、レポートのスコープが C:\ と D:\ で、ファイル file1.txt が同じ更新日時とファイル サイズで C:\folder1\、 C:\folder2\、D:\folder1\ に 存在する場合、それらのファイルは重複と見なされます。 |
| FsrmReportType_FileScreenAudit | 9 | 0x9 | 発生したファイル スクリーニング イベントを一覧表示します。 |
| FsrmReportType_FilesByProperty | 10 | 0xA | 指定したプロパティを含むファイルを、プロパティ値ごとにグループ化して一覧表示します (レポートの対象として指定できる プロパティは 1 つだけです)。 Windows Server 2008: このレポートの種類は、Windows Server 2008 R2 より前ではサポートされません。 |
| FsrmReportType_AutomaticClassification | 11 | 0xB | 内部使用専用です。指定しないでください。 Windows Server 2008: このレポートの種類は、Windows Server 2008 R2 より前ではサポートされません。 |
| FsrmReportType_Expiration | 12 | 0xC | 内部使用専用です。指定しないでください。 Windows Server 2008: このレポートの種類は、Windows Server 2008 R2 より前ではサポートされません。 |
| FsrmReportType_FoldersByProperty | 13 | 0xD | 指定したプロパティを含むフォルダーを、プロパティ値ごとにグループ化して一覧表示します (レポートの対象として指定できる プロパティは 1 つだけです)。 Windows Server 2008 R2 and Windows Server 2008: このレポートの種類は、Windows Server 2012 より前ではサポートされません。 |
公式ドキュメント
生成できるレポートの種類を定義します。
解説(Remarks)
フィルターが必要なレポートの種類 (たとえば、指定したサイズを超えるファイルの一覧表示) の値を指定するには、 IFsrmReportManager::SetDefaultFilter メソッドを呼び出します。
Microsoft 公式リファレンス: 英語 (en-us) · 日本語 (ja-jp) · 原文ソース (GitHub)
各言語での定義
列挙メンバーの定義。HSP タブは #define global(値は16進)。
typedef enum FsrmReportType : int {
FsrmReportType_Unknown = 0,
FsrmReportType_LargeFiles = 1,
FsrmReportType_FilesByType = 2,
FsrmReportType_LeastRecentlyAccessed = 3,
FsrmReportType_MostRecentlyAccessed = 4,
FsrmReportType_QuotaUsage = 5,
FsrmReportType_FilesByOwner = 6,
FsrmReportType_ExportReport = 7,
FsrmReportType_DuplicateFiles = 8,
FsrmReportType_FileScreenAudit = 9,
FsrmReportType_FilesByProperty = 10,
FsrmReportType_AutomaticClassification = 11,
FsrmReportType_Expiration = 12,
FsrmReportType_FoldersByProperty = 13
} FsrmReportType;public enum FsrmReportType : int
{
FsrmReportType_Unknown = 0,
FsrmReportType_LargeFiles = 1,
FsrmReportType_FilesByType = 2,
FsrmReportType_LeastRecentlyAccessed = 3,
FsrmReportType_MostRecentlyAccessed = 4,
FsrmReportType_QuotaUsage = 5,
FsrmReportType_FilesByOwner = 6,
FsrmReportType_ExportReport = 7,
FsrmReportType_DuplicateFiles = 8,
FsrmReportType_FileScreenAudit = 9,
FsrmReportType_FilesByProperty = 10,
FsrmReportType_AutomaticClassification = 11,
FsrmReportType_Expiration = 12,
FsrmReportType_FoldersByProperty = 13,
}Public Enum FsrmReportType As Integer
FsrmReportType_Unknown = 0
FsrmReportType_LargeFiles = 1
FsrmReportType_FilesByType = 2
FsrmReportType_LeastRecentlyAccessed = 3
FsrmReportType_MostRecentlyAccessed = 4
FsrmReportType_QuotaUsage = 5
FsrmReportType_FilesByOwner = 6
FsrmReportType_ExportReport = 7
FsrmReportType_DuplicateFiles = 8
FsrmReportType_FileScreenAudit = 9
FsrmReportType_FilesByProperty = 10
FsrmReportType_AutomaticClassification = 11
FsrmReportType_Expiration = 12
FsrmReportType_FoldersByProperty = 13
End Enumimport enum
class FsrmReportType(enum.IntEnum):
FsrmReportType_Unknown = 0
FsrmReportType_LargeFiles = 1
FsrmReportType_FilesByType = 2
FsrmReportType_LeastRecentlyAccessed = 3
FsrmReportType_MostRecentlyAccessed = 4
FsrmReportType_QuotaUsage = 5
FsrmReportType_FilesByOwner = 6
FsrmReportType_ExportReport = 7
FsrmReportType_DuplicateFiles = 8
FsrmReportType_FileScreenAudit = 9
FsrmReportType_FilesByProperty = 10
FsrmReportType_AutomaticClassification = 11
FsrmReportType_Expiration = 12
FsrmReportType_FoldersByProperty = 13// FsrmReportType
pub const FsrmReportType_Unknown: i32 = 0;
pub const FsrmReportType_LargeFiles: i32 = 1;
pub const FsrmReportType_FilesByType: i32 = 2;
pub const FsrmReportType_LeastRecentlyAccessed: i32 = 3;
pub const FsrmReportType_MostRecentlyAccessed: i32 = 4;
pub const FsrmReportType_QuotaUsage: i32 = 5;
pub const FsrmReportType_FilesByOwner: i32 = 6;
pub const FsrmReportType_ExportReport: i32 = 7;
pub const FsrmReportType_DuplicateFiles: i32 = 8;
pub const FsrmReportType_FileScreenAudit: i32 = 9;
pub const FsrmReportType_FilesByProperty: i32 = 10;
pub const FsrmReportType_AutomaticClassification: i32 = 11;
pub const FsrmReportType_Expiration: i32 = 12;
pub const FsrmReportType_FoldersByProperty: i32 = 13;// FsrmReportType
const (
FsrmReportType_Unknown int32 = 0
FsrmReportType_LargeFiles int32 = 1
FsrmReportType_FilesByType int32 = 2
FsrmReportType_LeastRecentlyAccessed int32 = 3
FsrmReportType_MostRecentlyAccessed int32 = 4
FsrmReportType_QuotaUsage int32 = 5
FsrmReportType_FilesByOwner int32 = 6
FsrmReportType_ExportReport int32 = 7
FsrmReportType_DuplicateFiles int32 = 8
FsrmReportType_FileScreenAudit int32 = 9
FsrmReportType_FilesByProperty int32 = 10
FsrmReportType_AutomaticClassification int32 = 11
FsrmReportType_Expiration int32 = 12
FsrmReportType_FoldersByProperty int32 = 13
)const
FsrmReportType_Unknown = 0;
FsrmReportType_LargeFiles = 1;
FsrmReportType_FilesByType = 2;
FsrmReportType_LeastRecentlyAccessed = 3;
FsrmReportType_MostRecentlyAccessed = 4;
FsrmReportType_QuotaUsage = 5;
FsrmReportType_FilesByOwner = 6;
FsrmReportType_ExportReport = 7;
FsrmReportType_DuplicateFiles = 8;
FsrmReportType_FileScreenAudit = 9;
FsrmReportType_FilesByProperty = 10;
FsrmReportType_AutomaticClassification = 11;
FsrmReportType_Expiration = 12;
FsrmReportType_FoldersByProperty = 13;// FsrmReportType
pub const FsrmReportType_Unknown: i32 = 0;
pub const FsrmReportType_LargeFiles: i32 = 1;
pub const FsrmReportType_FilesByType: i32 = 2;
pub const FsrmReportType_LeastRecentlyAccessed: i32 = 3;
pub const FsrmReportType_MostRecentlyAccessed: i32 = 4;
pub const FsrmReportType_QuotaUsage: i32 = 5;
pub const FsrmReportType_FilesByOwner: i32 = 6;
pub const FsrmReportType_ExportReport: i32 = 7;
pub const FsrmReportType_DuplicateFiles: i32 = 8;
pub const FsrmReportType_FileScreenAudit: i32 = 9;
pub const FsrmReportType_FilesByProperty: i32 = 10;
pub const FsrmReportType_AutomaticClassification: i32 = 11;
pub const FsrmReportType_Expiration: i32 = 12;
pub const FsrmReportType_FoldersByProperty: i32 = 13;const
FsrmReportType_Unknown* = 0
FsrmReportType_LargeFiles* = 1
FsrmReportType_FilesByType* = 2
FsrmReportType_LeastRecentlyAccessed* = 3
FsrmReportType_MostRecentlyAccessed* = 4
FsrmReportType_QuotaUsage* = 5
FsrmReportType_FilesByOwner* = 6
FsrmReportType_ExportReport* = 7
FsrmReportType_DuplicateFiles* = 8
FsrmReportType_FileScreenAudit* = 9
FsrmReportType_FilesByProperty* = 10
FsrmReportType_AutomaticClassification* = 11
FsrmReportType_Expiration* = 12
FsrmReportType_FoldersByProperty* = 13enum FsrmReportType : int {
FsrmReportType_Unknown = 0,
FsrmReportType_LargeFiles = 1,
FsrmReportType_FilesByType = 2,
FsrmReportType_LeastRecentlyAccessed = 3,
FsrmReportType_MostRecentlyAccessed = 4,
FsrmReportType_QuotaUsage = 5,
FsrmReportType_FilesByOwner = 6,
FsrmReportType_ExportReport = 7,
FsrmReportType_DuplicateFiles = 8,
FsrmReportType_FileScreenAudit = 9,
FsrmReportType_FilesByProperty = 10,
FsrmReportType_AutomaticClassification = 11,
FsrmReportType_Expiration = 12,
FsrmReportType_FoldersByProperty = 13,
}#define global FsrmReportType_Unknown 0x0
#define global FsrmReportType_LargeFiles 0x1
#define global FsrmReportType_FilesByType 0x2
#define global FsrmReportType_LeastRecentlyAccessed 0x3
#define global FsrmReportType_MostRecentlyAccessed 0x4
#define global FsrmReportType_QuotaUsage 0x5
#define global FsrmReportType_FilesByOwner 0x6
#define global FsrmReportType_ExportReport 0x7
#define global FsrmReportType_DuplicateFiles 0x8
#define global FsrmReportType_FileScreenAudit 0x9
#define global FsrmReportType_FilesByProperty 0xA
#define global FsrmReportType_AutomaticClassification 0xB
#define global FsrmReportType_Expiration 0xC
#define global FsrmReportType_FoldersByProperty 0xD