Google
 

Sunday, April 29, 2007

Disable (UAC) User Access Control via Command Prompt

If you are tired of those pop up confirmations to continue a task which requires elevated administrator rights all you gotta do is hold in the windows key, press "R"
type in cmd.exe then copy and paste :)

To Disable UAC

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

To Enable UAC

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

No comments: