UWF_Overlay
統合書き込みフィルター (UWF) オーバーレイの現在のサイズを格納し、オーバーレイ サイズの重大しきい値と警告しきい値を管理します。
構文
class UWF_Overlay {
[key] string Id;
[read] UInt32 OverlayConsumption;
[read] UInt32 AvailableSpace;
[read] UInt32 CriticalOverlayThreshold;
[read] UInt32 WarningOverlayThreshold;
UInt32 GetOverlayFiles(
[in] string Volume,
[out, EmbeddedInstance("UWF_OverlayFile")] string OverlayFiles[]
);
UInt32 SetWarningThreshold(
UInt32 size
);
UInt32 SetCriticalThreshold(
UInt32 size
);
};
メンバー
次の表に、このクラスに属するメソッドとプロパティを示します。
メソッド | 説明 |
---|---|
UWF_Overlay.GetOverlayFiles | UWF オーバーレイにキャッシュされたボリュームのファイル一覧を返します。 |
UWF_Overlay.SetWarningThreshold | UWF オーバーレイのサイズを監視する警告しきい値を設定します。 |
UWF_Overlay.SetCriticalThreshold | UWF オーバーレイのサイズを監視する重大な警告しきい値を設定します。 |
プロパティ
プロパティ | データ型 | 修飾子 | 説明 |
---|---|---|---|
id | string | [key] | 一意の ID。 これは常に UWF_Overlay に設定されます。 |
OverlayConsumption | Uint32 | [read] | UWF オーバーレイの現在のサイズ (メガバイト単位)。 |
AvailableSpace | Uint32 | [read] | UWF オーバーレイで使用できる空き領域の量 (メガバイト単位)。 |
CriticalOverlayThreshold | Uint32 | [read] | 重大なしきい値のサイズ (メガバイト単位)。 UWF は、UWF オーバーレイ サイズがこの値に達するか超えたときに、重大なしきい値通知イベントを送信します。 |
WarningOverlayThreshold | Uint32 | [read] | 警告しきい値のサイズ (メガバイト単位)。 UWF オーバーレイのサイズがこの値に達するか超えると、UWF は警告しきい値通知イベントを送信します。 |
例
次の例は、PowerShell スクリプトで WMI プロバイダーを使用して UWF オーバーレイを使用する方法を示しています。
$COMPUTER = "localhost"
$NAMESPACE = "root\standardcimv2\embedded"
# Function to set the Unified Write Filter overlay warning threshold
function Set-OverlayWarningThreshold($ThresholdSize) {
# Retrieve the overlay WMI object
$OverlayInstance = Get-WMIObject -namespace $NAMESPACE -class UWF_Overlay;
if(!$OverlayInstance) {
"Unable to get handle to an instance of the UWF_Overlay class"
return;
}
# Call the instance method to set the warning threshold value
$retval = $OverlayInstance.SetWarningThreshold($ThresholdSize);
# Check the return value to verify that setting the warning threshold is successful
if ($retval.ReturnValue -eq 0) {
"Overlay warning threshold has been set to " + $ThresholdSize + " MB"
} else {
"Unknown Error: " + "{0:x0}" -f $retval.ReturnValue
}
}
# Function to set the Unified Write Filter overlay critical threshold
function Set-OverlayCriticalThreshold($ThresholdSize) {
# Retrieve the overlay WMI object
$OverlayInstance = Get-WMIObject -namespace $NAMESPACE -class UWF_Overlay;
if(!$OverlayInstance) {
"Unable to get handle to an instance of the UWF_Overlay class"
return;
}
# Call the instance method to set the warning threshold value
$retval = $OverlayInstance.SetCriticalThreshold($ThresholdSize);
# Check the return value to verify that setting the critical threshold is successful
if ($retval.ReturnValue -eq 0) {
"Overlay critical threshold has been set to " + $ThresholdSize + " MB"
} else {
"Unknown Error: " + "{0:x0}" -f $retval.ReturnValue
}
}
# Function to print the current overlay information
function Get-OverlayInformation() {
# Retrieve the Overlay WMI object
$OverlayInstance = Get-WMIObject -namespace $NAMESPACE -class UWF_Overlay;
if(!$OverlayInstance) {
"Unable to get handle to an instance of the UWF_Overlay class"
return;
}
# Display the current values of the overlay properties
"`nOverlay Consumption: " + $OverlayInstance.OverlayConsumption
"Available Space: " + $OverlayInstance.AvailableSpace
"Critical Overlay Threshold: " + $OverlayInstance.CriticalOverlayThreshold
"Warning Overlay Threshold: " + $OverlayInstance.WarningOverlayThreshold
}
# Examples of using these functions
"`nSetting the warning threshold to 768 MB."
Set-OverlayWarningThreshold( 768 )
"`nSetting the critical threshold to 896 MB."
Set-OverlayCriticalThreshold( 896 )
"`nDisplaying the current state of the overlay."
Get-OverlayInformation
解説
UWF で保護されたシステムに存在する UFW_Overlay インスタンスは 1 つのみです。
必要条件
Windows エディション | サポートされています |
---|---|
Windows Home | いいえ |
Windows Pro | いいえ |
Windows Enterprise | はい |
Windows Education | はい |
Windows IoT Enterprise | はい |