Question:
How to Disable the UAC before eHealth installation
Answer:
The UAC is controled by the key:
HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System\ConsentPromptBehaviorAdmin.
Source: http://msdn.microsoft.com/en-us/library/cc206328%28PROT.10%29.aspx
To disable the UAC you need to set the value of ConsentPromptBehaviorAdmin to 0.
Method 1:
You can do it with the GUI:
" Control Panel "
" System and Security "
" Action Center "
Click on “Change User Account Control settings"
and down the button until "Never Notify"
Method 2:
Run the shell command:
reg add \\<Server_Name\HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System\ /v ConsentPromptBehaviorAdmin /t REG_DWORD /d 0 /f