我基于以下Powershell命令:(reference)
Set-ItemProperty -Path REGISTRY::HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Policies\System -Name ConsentPromptBehaviorAdmin -Value 0
使用批处理文件禁用UAC,我尝试了这个sintaxe:
Powershell -command "& {Set-ItemProperty -Path REGISTRY::HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Policies\System -Name EnableLUA -Value 0;}"
但没有任何作用。这是怎么做到的?