Advertisement
metalx1000

Windows Disable UAC Popups

Oct 30th, 2016
705
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 0.44 KB | None | 0 0
  1. #Disable UAC
  2. 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
  3.  
  4. #Enable UAC
  5. 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
  6.  
  7. #After you enable or disable UAC, you will have to reboot your computer for the changes to take effect.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement