Compartilhar via


WEKF_PredefinedKey

Edições
✅ Suportadas IoT Enterprise LTSC
✅ IoT Enterprise
✅ LTSC✅
Enterprise
✅ Education

Esta classe bloqueia ou desbloqueia combinações de teclas predefinidas, como Ctrl+Alt+Delete.

Sintaxe

class WEKF_PredefinedKey {
    [Static] uint32 Enable (
        [In] string PredefinedKey
    );
    [Static] uint32 Disable (
        [In] string PredefinedKey
    );

    [Key] string Id;
    [Read, Write] boolean Enabled;
};

Membros

As tabelas seguintes listam quaisquer construtores, métodos, campos e propriedades que pertençam a esta classe.

Métodos

Métodos Descrição
WEKF_PredefinedKey.Enable Bloqueia a chave predefinida especificada.
WEKF_PredefinedKey.Disable Desbloqueia a chave predefinida especificada.

Propriedades

Propriedade Tipo de dados Qualificadores Descrição
ID string [chave] O nome da combinação de teclas predefinida.
Habilitada Booliano [ler, escrever] Indica se a chave está bloqueada ou desbloqueada. Para indicar que a chave está bloqueada, especifique verdadeiro. Para indicar que a chave não está bloqueada, especifique falso.

Comentários

Todas as contas têm acesso de leitura à classe WEKF_PRedefinedKey , mas apenas as contas de administrador podem modificar a classe.

Para obter uma lista de combinações de teclas predefinidas para o Filtro de Teclado, veja Combinações de teclas predefinidas.

Exemplo

O exemplo seguinte Windows PowerShell script bloqueia as combinações de teclas Ctrl+Alt+Delete e Ctrl+Esc quando o serviço Filtro de Teclado está em execução.

<#
.Synopsis
    This script shows how to use the built in WMI providers to enable and add
    Keyboard Filter rules through Windows PowerShell on the local computer.
.Parameter ComputerName
    Optional parameter to specify a remote machine that this script should
    manage.  If not specified, the script will execute all WMI operations
    locally.
#>
param (
    [String] $ComputerName
)

$CommonParams = @{"namespace"="root\standardcimv2\embedded"}
$CommonParams += $PSBoundParameters

function Enable-Predefined-Key($Id) {
    <#
    .Synposis
        Toggle on a Predefined Key Keyboard Filter Rule
    .Description
        Use Get-WMIObject to enumerate all WEKF_PredefinedKey instances,
        filter against key value "Id", and set that instance's "Enabled"
        property to 1/true.
    .Example
        Enable-Predefined-Key "Ctrl+Alt+Delete"

        Enable CAD filtering
#>

    $predefined = Get-WMIObject -class WEKF_PredefinedKey @CommonParams |
        where {
            $_.Id -eq "$Id"
        };

    if ($predefined) {
        $predefined.Enabled = 1;
        $predefined.Put() | Out-Null;
        Write-Host Enabled $Id
    } else {
        Write-Error $Id is not a valid predefined key
    }
}

# Some example uses of the function defined above.

Enable-Predefined-Key "Ctrl+Alt+Delete"
Enable-Predefined-Key "Ctrl+Esc"