Link to home
Start Free TrialLog in
Avatar of thandel
thandel

asked on

Where does the registry store the Windows and buttons setting

I am looking for a way to generate a .reg file to set the Windows and button settings under the display property in the apperance tab to "Windwos Classic Style".

I have not been able to locate the registry key that stores this value so I can quickly import a .reg file with these settings for our users.

Can anyone point me to the key that holds this user setting?

Thank you.
ASKER CERTIFIED SOLUTION
Avatar of johnb6767
johnb6767
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Try using the attached registry batch file to see if it will do the job.
classic.reg
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of thandel
thandel

ASKER

huacat, what is your solution... a registry entry?
Actually, disabling the Themes service might work for what you want, just validate that it meets your needs visually.

But it can be disabled via GPO as well, if you are using it.
GPO>Computer Config>Windows Settings>Security Settings>System Services. Double click the service, and set the "Define this Policy Setting", and set the Startup Type to Disabled.....
@thandel:

Just put below code in login script, or run it under command prompt(also you can create a .bat file, and put it into, test with your system):
net stop themes
sc config themes start= disabled

If you using Domain, please follow john's comment.
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial