Disable UAC in Windows 7 and Classis Logon?
Hi All, I am very new to the world of batch scripts, well and scripts in general.
I was wondering if there was a script written(I have googled it to death with no luck)To turn off the UAC in windows 7? I was trying to add it as a post install task on my kbox 2000 system to send out to my new machines.
Also along with this is there a way with a script to turn off the Welcome Logon screen on windows 7? We are on a domain and I would like the old classic logon script like windows XP Pro with just the username and password prompt.
Thanks
Brad
(Script Writer wannaBe)
I was wondering if there was a script written(I have googled it to death with no luck)To turn off the UAC in windows 7? I was trying to add it as a post install task on my kbox 2000 system to send out to my new machines.
Also along with this is there a way with a script to turn off the Welcome Logon screen on windows 7? We are on a domain and I would like the old classic logon script like windows XP Pro with just the username and password prompt.
Thanks
Brad
(Script Writer wannaBe)
0 Comments
[ + ] Show comments
Answers (3)
Please log in to answer
Posted by:
Ram
14 years ago
Posted by:
Lucid
14 years ago
If you'd rather not use GPOs, I think you can turn off UAC if you're deploying your image with an unattend.xml file. So you'll want to add something like this:
<RunSynchronousCommand wcm:action="add">
<Order>1</Order>
<Description>Disable_UAC</Description>
<Path>CMD /c REG.exe add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" /v EnableLUA /t REG_DWORD /d 0 /f</Path>
</RunSynchronousCommand>
And if you want the older look and feel to the logon screen, then you're most likely going to have to hunt for a script that changes the settings in the registry...
<Order>1</Order>
<Description>Disable_UAC</Description>
<Path>CMD /c REG.exe add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" /v EnableLUA /t REG_DWORD /d 0 /f</Path>
</RunSynchronousCommand>
And if you want the older look and feel to the logon screen, then you're most likely going to have to hunt for a script that changes the settings in the registry...
Posted by:
squeakstar
14 years ago
erm, why the hell would you turn off UAC?? I find people only turn this off coz they don't understand it properly; sometimes on vista the odd old app was too dumb to install properly because of it but when i've experienced that i've turned it back on again after disabling for a one off process - and this was like when vista first came out.
both of your other requirements are available through group policy anyway. here's a link to available policies in an easy to use reference thingy from microsoft. Group Policy Search this gives you the actual registry settings too if you really need to script stuff.
both of your other requirements are available through group policy anyway. here's a link to available policies in an easy to use reference thingy from microsoft. Group Policy Search this gives you the actual registry settings too if you really need to script stuff.
Rating comments in this legacy AppDeploy message board thread won't reorder them,
so that the conversation will remain readable.
so that the conversation will remain readable.