Question : Disabling User access control in server 2008

I found the information below in a response to a Vista UAC question. Will this work for Server 2008 x64 Enterprise? I would test but Lab is offline for power upgrade and I do not want to test in a production environment.

You have to execute this command remotely: reg.exe ADD HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System /v EnableLUA /t REG_DWORD /d 0 /f
and reboot the remote system afterwards (which can be achieved using shutdown.exe). To work with your file, you could use psexec.exe, it can work against a list of names. psexec is part of the pstools from Microsoft.

Answer : Disabling User access control in server 2008

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.


Does that help?
Random Solutions  
 
programming4us programming4us