Anyone willing to test whether these turn UAC on and off using Vista?
Documentation states computer must be restarted after running these to take effect.
http://www.mydigitallife.info/2007/0...command-prompt
Documentation states computer must be restarted after running these to take effect.
http://www.mydigitallife.info/2007/0...command-prompt
Code:
@REM UACOFF.BAT Turn off UAC in Vista @REM [URL]http://www.mydigitallife.info/2007/04/23/how-to-disable-or-enable-vista-user-access-control-in-command-prompt[/URL] 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 EXIT
Code:
@REM UACON.BAT Turn on UAC in Vista @REM [URL]http://www.mydigitallife.info/2007/04/23/how-to-disable-or-enable-vista-user-access-control-in-command-prompt[/URL] C:\Windows\System32\cmd.exe /k %windir%\System32\reg.exe ADD HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System /v EnableLUA /t REG_DWORD /d 1 /f EXIT
Comment