How to disable UAC on a domain controller?

8,923

You could do it from a command prompt:

runas /user:DOMAIN\youraccount "REG ADD HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System /v EnableLUA /t REG_DWORD /d 0 /f"
Share:
8,923

Related videos on Youtube

Massimo
Author by

Massimo

"Against stupidity, the Gods themselves fight in vain." https://www.linkedin.com/in/massimo-pascucci

Updated on September 18, 2022

Comments

  • Massimo
    Massimo over 1 year

    I need to disable UAC on a Windows Server 2008 R2 domain controller, but I can't access its settings through the usual path (Control Panel -> User Accounts -> User Accounts), because a DC doesn't have a local user database, so the "User Accounts" icon in the Control Panel simply doesn't work.

    How can I access the UI for UAC settings on a domain controller?


    I know I can use a GPO for this, but I'd prefer to manually configure it on this single server.

  • Massimo
    Massimo about 12 years
    Or through Regedit. Good.