我想将机器的 UAC 级别更改为最高级别的“始终通知”级别。
我尝试将以下注册表项值更改为 1。 Key =HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System
const string UACkey = @"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System";
const string Subkey = "EnableLUA";
RegistryUtilities.SetValue(UACkey, Subkey, **1**, Microsoft.Win32.RegistryValueKind.DWord, RegistryUtilities.WOW64Key.Key64);
这导致 UAC 处于第 3 级(当程序尝试进行更改时通知)。
如何将其设置为顶级?