On Jun 9, 3:14*pm, "Tuttle" <nospamh...@notarealaddressnospam.gs>
wrote:
> Hello all:
>
> In Vista Home Premium, I want to disable User Account Control just for the
> admininstrator profile. I want User Account Control to remain enabled for
> all other user profiles. How can I do this?
>
> I have tried several methods that Google found, but always when I disable
> UAC for admininstrator, it is then disabled for other users. How can I
> disable it just for the admininstrator?
I don't think you can disable it for just one account. Maybe TweakUAC
(
http://www.tweak-uac.com/what-is-tweak-uac/) is right for you?
Or, you could create two shortcuts one to disable UAC:
C:\Windows\System32\cmd.exe /k %windir%\System32\reg.exe ADD HKLM
\SOFTWARE\Microsoft\Windows\CurrentVersion\Policie s\System /v
EnableLUA /t REG_DWORD /d 0 /f
And, one to enable UAC:
C:\Windows\System32\cmd.exe /k %windir%\System32\reg.exe ADD HKLM
\SOFTWARE\Microsoft\Windows\CurrentVersion\Policie s\System /v
EnableLUA /t REG_DWORD /d 1 /f
If you really wanted to get fancy, then you could add a script to
disable it for your login and disable it for everyone else. Maybe you
could even entice someone to write it for you. ;-)
But, then again maybe TweakUAC is best for your needs.
-solon fox