views:

195

answers:

1

Is there a way to turn ON UAC programmatically with C#? I know, everyone seems to want to know how to turn it off. I want to be able to turn it on and restart the system.

Thanks

+1  A: 

Registry key seems to be at HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Policies\System\EnableLUA

Easiest way that I know how to restart is "shutdown -r -t 01" You should be able to ShellExec it.

popester