that script did not work. any other ideas?
Main Topics
Browse All TopicsUsing vbscript or group policy, is there a way to change the VISUAL EFFECTS option under the PERFORMANCE OPTIONS in the advanced tabe of the system properties? I would like to have all my computers always use "ADJUST FOR BEST PERFORMANCE".
thank you,
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Hi,
Don't know if this is still relevant, but I had the same need and I resolved it with the script below. You will notice that the settings are actually user dependent, wich didn't astonished me to much, but you may explore the same settings in the HKLM.
' Script Begining
Option Explicit
Const HKEY_CURRENT_USER = &H80000001
Const HKEY_LOCAL_MACHINE = &H80000002
Dim strComputer, oReg, strKeyPath,strValueName, dwValue
strComputer = "."
Set oReg = GetObject("winmgmts:{imper
strComputer & "\root\default:StdRegProv"
strKeyPath = "Software\Microsoft\Window
' Sets a DWORD value
strValueName = "VisualFXSetting"
dwValue = 00000002
oReg.SetDWORDValue HKEY_CURRENT_USER,strKeyPa
' Sets a string value
'strValueName = "String Name"
'strValue = "String Value"
' oReg.SetStringValue HKEY_CURRENT_USER,strKeyPa
' End of script
Cheers, Alex
Business Accounts
Answer for Membership
by: sirbountyPosted on 2007-04-02 at 05:26:00ID: 18835687
Well, in actuality, I don't believe that is a single setting - but 16 individual registry settings...
sonationLe vel=impers onate}!\\. \root\defa ult:StdReg Prov") s\CurrentV ersion\Exp lorer\Visu alEffects"
However, this script should enumerate through all of those settings and turn them off - thereby enabling "Best Performance" for you...
Const HKCU = &H80000001
Set objReg = GetObject("winmgmts:{imper
strKeyPath = "SOFTWARE\Microsoft\Window
objReg.EnumKey HKCU, strKeyPath, arrSubKeys
For Each subKey In arrSubKeys
objReg.SetDWordValue HKCU, strKeyPath & "\" & subKey, "DefaultApplied", 0
Next
Set objReg=Nothing