Microsoft’s advertising has stressed the new security features found in Windows Vista. From the user perspective, one such feature, User Access Control, is arguably the most noticeable enhancement.User Account Control (UAC) is a new security feature in Windows Vista that requires all users to log on and run in standard user privileges mode instead of as administrator with full administrative rights.The UAC(User Account Control) is possibly the most annoying feature in Windows Vista.
Create a Windows batch file (with bat file extension) to keep either disable UAC or enable UAC command line (above) and make a file shortcut to it,Right-click the shortcut, click the Advanced button, tick the Run As Administrator check-box and press OK, Click the Shortcut Key text-box and press F10 – to assign F10 as keyboard shortcut or hotkey to execute the Windows batch file created. Of course, you can use key other than F10, as long as the custom hotkey has not been used for other purpose.
Enable User Account Control (UAC) in Windows Vista
You need to open the Windows Vista notepad editor and enter the following lines
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
save this file as Enableuac.bat.
Disable User Account Control (UAC) in Windows Vista
You need to open the notepad enter the following lines
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
save this file as Disableuac.bat
Command to suppress Prompt For Consent (Consent UI)
You need to open the notepad enter the following lines
C:\Windows\System32\cmd.exe /k %windir%\System32\cmd.exe /k %windir%\System32\reg.exe ADD HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System /v ConsentPromptBehaviorAdmin /t REG_DWORD /d 0 /f
save this file as Consentuioff.bat
Command to turn on Prompt For Consent (Consent UI)
You need to open the notepad enter the following lines
C:\Windows\System32\cmd.exe /k%windir%\System32\cmd.exe /k %windir%\System32\reg.exe ADD HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System /v ConsentPromptBehaviorAdmin /t REG_DWORD /d 2 /f
save this file as Consentuion.bat
After creating aove two files right-click on one of them and choose Run as Administrator.
Popularity: 11%





