web-dev-qa-db-ja.com

Windows PowerShellを使用してUACを無効にするにはどうすればよいですか?

PowerShellスクリプトを使用してUACを無効にするにはどうすればよいですか?次のレジストリエントリを追加して、レジストリを介して手動でこれを行うことができます

Key:   HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Policies\System\EnableLUA
Value: 0
Type:  DWORD

スクリプトは、このキーがすでに存在し、正しく設定されていない可能性を考慮に入れる必要があります。

10
Chris Ballance

1-次の2つの関数をPowerShellプロファイルに追加します(C:\Windows\System32\WindowsPowerShell\v1.0\profile.ps1

2-PowerShellでDisable-UACを実行します

3-変更を有効にするために再起動します。 PowerShellを使用すると、これはRestart-Computer -Force -Confirm:$falseになります

Function Test-RegistryValue 
{
    param(
        [Alias("RegistryPath")]
        [Parameter(Position = 0)]
        [String]$Path
        ,
        [Alias("KeyName")]
        [Parameter(Position = 1)]
        [String]$Name
    )

    process 
    {
        if (Test-Path $Path) 
        {
            $Key = Get-Item -LiteralPath $Path
            if ($Key.GetValue($Name, $null) -ne $null)
            {
                if ($PassThru)
                {
                    Get-ItemProperty $Path $Name
                }       
                else
                {
                    $true
                }
            }
            else
            {
                $false
            }
        }
        else
        {
            $false
        }
    }
}

Function Disable-UAC
{
    $EnableUACRegistryPath = "REGISTRY::HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Policies\System"
    $EnableUACRegistryKeyName = "EnableLUA"
    $UACKeyExists = Test-RegistryValue -RegistryPath $EnableUACRegistryPath -KeyName $EnableUACRegistryKeyName 
    if ($UACKeyExists)
    {
        Set-ItemProperty -Path $EnableUACRegistryPath -Name $EnableUACRegistryKeyName -Value 0
    }
    else
    {
        New-ItemProperty -Path $EnableUACRegistryPath -Name $EnableUACRegistryKeyName -Value 0 -PropertyType "DWord"
    }
}
1
Chris Ballance
New-ItemProperty -Path HKLM:Software\Microsoft\Windows\CurrentVersion\policies\system -Name EnableLUA -PropertyType DWord -Value 0 -Force
Restart-Computer
18
David Brabant