本文介绍了如何通过批处理禁用 Windows 效果的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
是否可以使用批处理文件禁用下图中显示的这些选项.我正在制作一个可以提高计算机性能的程序,任何人都可以提供帮助.我的操作系统是 windows 7 32bit
Is it possible to disable these options shown in the picture below using a batch file. I am making a program that can boost a computers performance can any one help. my OS is windows 7 32bit
推荐答案
禁用效果
sc stop uxsms
启用效果
sc stop uxsms
您必须以管理员身份运行它.
You have to run it as Admin.
就像 npocmaka 所说,你必须更改注册表项的值:
Like npocmaka said you have to change the value of the registry key :
[HKEY_USERS.DEFAULTSoftwareMicrosoftWindowsCurrentVersionExplorerVisualEffects]
"VisualFXSetting"=dword:00000002"
具有这些值之一:
"VisualFXSetting"=dword:00000002 <-2 = All Settings Off
"VisualFXSetting"=dword:00000003 <- Manual Settings
"VisualFXSetting"=dword:00000001 <- Let's Windows choose.
您可以在此处将键设置为 00000000(关闭)或 00000001(打开)
EDIT : Here the keys you can set to 00000000 (off) or to 00000001 (on)
[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorerVisualEffects]
"VisualFXSetting"=dword:00000003
[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorerVisualEffectsAnimateMinMax]
"DefaultApplied"=dword:00000001
[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorerVisualEffectsComboBoxAnimation]
"DefaultApplied"=dword:00000001
[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorerVisualEffectsControlAnimations]
"DefaultApplied"=dword:00000001
[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorerVisualEffectsCursorShadow]
"DefaultApplied"=dword:00000001
[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorerVisualEffectsDragFullWindows]
"DefaultApplied"=dword:00000001
[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorerVisualEffectsDropShadow]
"DefaultApplied"=dword:00000001
[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorerVisualEffectsDWMAeroPeekEnabled]
"DefaultApplied"=dword:00000001
[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorerVisualEffectsDWMEnabled]
"DefaultApplied"=dword:00000001
[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorerVisualEffectsDWMSaveThumbnailEnabled]
"DefaultApplied"=dword:00000001
[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorerVisualEffectsFontSmoothing]
[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorerVisualEffectsListBoxSmoothScrolling]
"DefaultApplied"=dword:00000001
[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorerVisualEffectsListviewAlphaSelect]
"DefaultApplied"=dword:00000001
[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorerVisualEffectsListviewShadow]
"DefaultApplied"=dword:00000001
[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorerVisualEffectsMenuAnimation]
"DefaultApplied"=dword:00000001
[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorerVisualEffectsSelectionFade]
"DefaultApplied"=dword:00000001
[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorerVisualEffectsTaskbarAnimations]
"DefaultApplied"=dword:00000001
[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorerVisualEffectsThemes]
[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorerVisualEffectsThumbnailsOrIcon]
"DefaultApplied"=dword:00000001
[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorerVisualEffectsTooltipAnimation]
"DefaultApplied"=dword:00000001
[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorerVisualEffectsTransparentGlass]
"DefaultApplied"=dword:00000001
这篇关于如何通过批处理禁用 Windows 效果的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!