Saturday, October 27, 2018

Quick Tip: Disable UAC from the command line

Using elevated command prompt, run:

c:\> reg.exe ADD HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System /v EnableLUA /t REG_DWORD /d 0 /f

This will also disable "User Account Control: Turn on Admin Approval Mode."

Reference(s)
https://www.top-password.com/blog/tag/disable-uac-from-command-line/

No comments:

Configuring TUN/TAP virtual network interface for use with QEMU on Xubuntu 24.04

Configuring TUN/TAP virtual network interface for use with QEMU on Xubuntu 24.04 I am planning to run qemu-system-ppc to play around QEMU ...