Thursday, 15 May 2014

Enable or Disable UAC

It is quite easy to enable or disable UAC through registry editor.., in-order to do so use the following commands.

To Enable UAC:
1. Open command prompt.
2. Type the  command "REG ADD HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System /v EnableLUA /t REG_DWORD /d 1 /f"
3. Click "Enter".

To Disable UAC:
1. Open command prompt.
2. Type the  command "REG ADD HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System /v EnableLUA /t REG_DWORD /d 0 /f"
3. Click "Enter".

[OR]

To Enable UAC:
1. Open command prompt.
2. Type the  command "REG ADD HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System /v ConsentPromptBehaviorAdmin /t REG_DWORD /d 1 /f"
3. Click "Enter".

To Disable UAC:
1. Open command prompt.
2. Type the  command "REG ADD HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System /v ConsentPromptBehaviorAdmin /t REG_DWORD /d 0 /f"
3. Click "Enter"

 

No comments: