无法从命令提示符禁用用户帐户控制

User account control can not be disabled from command prompt

我想通过在计算机上执行命令的应用程序远程禁用每台客户端计算机上的 UAC。当我执行以下命令时:

C:\Windows\System32\cmd.exe /k %windir%\System32\reg.exe ADD HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System /v EnableLUA /t REG_DWORD /d 0 /f

C:\Windows\System32\cmd.exe /k %windir%\System32\reg.exe query  HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System /v EnableLUA /t REG_DWORD

我得到了这个结果。 HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System 启用LUA REG_DWORD 0x0

但是当我手动检查 UAC 时,我看到 UAC 处于活动状态。这是什么原因呢?你能帮忙解决这个问题吗?谢谢。

我通过在 运行 脚本后重新启动计算机解决了这个问题。

C:\Windows\System32\cmd.exe /k %windir%\System32\reg.exe ADD HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System /v EnableLUA /t REG_DWORD /d 0 /f