Compartilhar via


UWF_Overlay

Contém o tamanho atual da sobreposição do Filtro de Escrita Unificado (UWF) e gere os limiares críticos e de aviso para o tamanho da sobreposição.

Sintaxe

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
    );
};

Membros

As tabelas seguintes listam todos os métodos e propriedades que pertencem a esta classe.

Métodos Descrição
UWF_Overlay.GetOverlayFiles Devolve uma lista de ficheiros de um volume que foram colocados em cache na sobreposição UWF.
UWF_Overlay.SetWarningThreshold Define o limiar de aviso para monitorizar o tamanho da sobreposição UWF.
UWF_Overlay.SetCriticalThreshold Define o limiar de aviso crítico para monitorizar o tamanho da sobreposição da UWF.

Propriedades

Propriedade Tipo de dados Qualificadores Descrição
ID string [chave] Um ID exclusivo. Esta definição está sempre definida para UWF_Overlay.
OverlayConsumption Int32 [ler] O tamanho atual, em megabytes, da sobreposição UWF.
Espaço Disponível Int32 [ler] A quantidade de espaço livre, em megabytes, disponível para a sobreposição UWF.
CriticalOverlayThreshold Int32 [ler] O tamanho do limiar crítico, em megabytes. A UWF envia um evento de notificação de limiar crítico quando o tamanho da sobreposição UWF atinge ou excede este valor.
WarningOverlayThreshold Int32 [ler] O tamanho do limiar de aviso, em megabytes. A UWF envia um evento de notificação de limiar de aviso quando o tamanho da sobreposição UWF atinge ou excede este valor.

Exemplos

O exemplo seguinte demonstra como utilizar a sobreposição UWF com o fornecedor WMI num script do PowerShell.

$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

Comentários

Existe apenas uma instância UFW_Overlay para um sistema protegido com UWF.

Requisitos

Edição do Windows Com suporte
Windows Home Não
Windows Pro Não
Windows Enterprise Sim
Windows Education Sim
Windows IoT Enterprise Sim