关于关闭UAC的注册表设置,EnableLUA不能设置为0
EnableLUA不能设置为0,否则标准用户无法弹出管理员账号密码,就无法用管理员身份运行程序。

@Echo off
setlocal EnableDelayedExpansion

::关闭UAC,用户帐户控制:

reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" /f /v ConsentPromptBehaviorAdmin /t REG_DWORD /d 0
reg add "HKLM\Software\Microsoft\Windows\CurrentVersion\Policies\System" /f /v EnableLUA /t REG_DWORD /d 1