UAC 設定画面は、以下のコマンドで開くことが出来ます。
UserAccountControlSettings
さらに、コマンドからUACをOFFに設定するには、以下のバッチでレジストリを行なって
Windowsを再起動すると反映されます。
disable_UAC.bat
rem Windows7 で、 UAC 設定画面を開く
rem http://journal.mycom.co.jp/column/windows/067/index.html
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" /v ConsentPromptBehaviorAdmin /t REG_DWORD /d 0 /f
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" /v PromptOnSecureDesktop /t REG_DWORD /d 0 /f
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" /v EnableLUA /t REG_DWORD /d 0 /f