Software microsoft windows currentversion explorer visualeffects

Вы тут: Главная Windows Как задать параметры визуальных эффектов для всех новых пользователей

На форуме OSZone был задан вопрос о том, как задать наилучшее быстродействие визуальных эффектов для всех новых пользователей системы. Интересно тут даже не само решение, а причина, по которой другие подходы не работают.

Применение настроек визуальных эффектов для всех пользователей
Окно можно открыть поиском в панели управления по visual effects

Я думаю, что для современных ПК данные настройки не приносят никаких дивидендов в плане быстродействия, а лишь уродуют Windows. Но к сути вопроса это не имеет отношения.

[+] Сегодня в программе

Настройка профиля Default с помощью реестра

Прежде чем спросить на форуме, участник проделал домашнюю работу и попытался решить проблему путем внесения изменений в реестр подключенного install.wim.

Изменение файла ntuser.dat профиля Default – это один из популярных способов быстрой настройки профиля для каждого нового пользователя. Когда он впервые входит в систему, файл ntuser.dat из стандартного профиля берется за основу параметров пользователя.

Участник форума настроил быстродействие в своей системе и, покопавшись в Интернете, нашел параметр VisualFXSetting из раздела

HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects

Однако импорт этого параметра в профиль Default к желаемым результатам не привел. Вообще, этот твик пытаются задействовать в рамках автоустановки давно и безуспешно.

Почему не работает импорт параметра VisualFXSetting

Рэймонд Чен в своем блоге объяснил, почему не надо биться головой об стену. Диалоговое окно просто показывает вам то, что вы хотите видеть. Параметр реестра лишь запоминает выбранную радиокнопку, чтобы отобразить заданное вами состояние при следующем запуске.

Применение параметров происходит только при нажатии кнопки ОК или Применить.

Другими словами, править реестр бесполезно, потому что изменение производится программным способом, для чего предусмотрен API. Однако API – для программистов, а у ИТ-специалиста другая задача.

Решение

Изменения реестра в install.wim – это лишь обходной путь, а рекомендуемый способ – создание настроенного образ системы. Именно такой подход я посоветовал участнику форума.

И это сработало :)

Дискуссия и опрос

Я перестал пользоваться твикерами уже больше 10 лет назад. Во времена увлечения автоустановкой XP у меня были свои наборы твиков HKLM и HKCU в виде REG-файлов. С ними я точно знал, какие именно параметры изменяются, в отличие от твикеров.

Но уже в Windows 7 я забросил их, поскольку настроенный образ системы удобнее. А в Windows 8 многие параметры подтягиваются из облака, что сводит список требуемых мне настроек к минимуму. Да, есть ряд пользовательских настроек, вроде отключения эскизов панели задач или включения автоподстановки, которые я применяю всегда, но их совсем мало. Остальное можно настроить в панели управления.

А как вы настраиваете систему? Напишите в комментариях, что вы используете в качестве основного средства настройки – подготовленный образ системы, готовые REG-файлы, твикеры, панель управления. Или, может быть, вас все устраивает из коробки?

Опрос убран, т.к. веб-сервис опросов прекратил существование.

Solution is :

[HKEY_CURRENT_USER\Control Panel\Desktop]
"UserPreferencesMask"=hex(3):90,12,03,80,10,02,00,00
"DragFullWindows"="0"

[HKEY_CURRENT_USER\Control Panel\Desktop\WindowMetrics]
"MinAnimate"="0"

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer]
"ShellState"=hex(3):24,00,00,00,3E,28,00,00,00,00,00,00,00,00,00,00,00,00,\
00,00,01,00,00,00,13,00,00,00,00,00,00,00,72,00,00,00

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced]
"IconsOnly"=dword:00000001
"ListviewAlphaSelect"=dword:00000000
"ListviewShadow"=dword:00000000
"TaskbarAnimations"=dword:00000000

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects]
"VisualFXSetting"=dword:00000003

[HKEY_CURRENT_USER\Software\Microsoft\Windows\DWM]
"AlwaysHibernateThumbnails"=dword:00000000
"EnableAeroPeek"=dword:00000000

This setting — ONLY Smooth edges of screen fonts ACTIVE (must restart PC)

Tested to Windows 10 1803 build 17134.1

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

enter image description here

asked Dec 11, 2013 at 10:19

09stephenb's user avatar

5

To disable the effects

sc stop uxsms

To enable the effects

sc stop uxsms

You have to run it as Admin.

Like npocmaka said you have to change the value of the registry key :

[HKEY_USERS\.DEFAULT\Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects]
"VisualFXSetting"=dword:00000002"

With one of these value :

"VisualFXSetting"=dword:00000002 <-2 = All Settings Off

"VisualFXSetting"=dword:00000003 <- Manual Settings

"VisualFXSetting"=dword:00000001 <- Let's Windows choose.

EDIT : Here the keys you can set to 00000000 (off) or to 00000001 (on)

  [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects]
  "VisualFXSetting"=dword:00000003

  [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\AnimateMinMax]
  "DefaultApplied"=dword:00000001

  [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\ComboBoxAnimation]
  "DefaultApplied"=dword:00000001

  [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\ControlAnimations]
  "DefaultApplied"=dword:00000001

  [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\CursorShadow]
  "DefaultApplied"=dword:00000001

  [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\DragFullWindows]
  "DefaultApplied"=dword:00000001

  [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\DropShadow]
  "DefaultApplied"=dword:00000001

  [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\DWMAeroPeekEnabled]
  "DefaultApplied"=dword:00000001

  [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\DWMEnabled]
  "DefaultApplied"=dword:00000001

  [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\DWMSaveThumbnailEnabled]
  "DefaultApplied"=dword:00000001

  [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\FontSmoothing]

  [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\ListBoxSmoothScrolling]
  "DefaultApplied"=dword:00000001

  [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\ListviewAlphaSelect]
  "DefaultApplied"=dword:00000001

  [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\ListviewShadow]
  "DefaultApplied"=dword:00000001

  [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\MenuAnimation]
  "DefaultApplied"=dword:00000001

  [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\SelectionFade]
  "DefaultApplied"=dword:00000001

  [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\TaskbarAnimations]
  "DefaultApplied"=dword:00000001

  [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\Themes]

  [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\ThumbnailsOrIcon]
  "DefaultApplied"=dword:00000001

  [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\TooltipAnimation]
  "DefaultApplied"=dword:00000001

  [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\TransparentGlass]
  "DefaultApplied"=dword:00000001

answered Dec 11, 2013 at 11:10

SachaDee's user avatar

SachaDeeSachaDee

9,2653 gold badges24 silver badges34 bronze badges

3

To create a batch file that adjusts the performance options change to one of these (to keep the visual style see below)-

Let Windows Choose:

[HKEY_USERS\.DEFAULT\Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects]
"VisualFXSetting"=dword:00000000"

Adjust for Best Appearance:

[HKEY_USERS\.DEFAULT\Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects]
"VisualFXSetting"=dword:00000001"

Adjust for Best Performance:

[HKEY_USERS\.DEFAULT\Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects]
"VisualFXSetting"=dword:00000002"

Custom:

[HKEY_USERS\.DEFAULT\Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects]
"VisualFXSetting"=dword:00000003"

If you want to retain the Visual Style, which doesn’t change it to the classic theme, use this:

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\ThemeManager]
"ThemeActive"="1"

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\ThemeManager]
"ThemeActive"=-

Also see this link

Jason D's user avatar

Jason D

8,07311 gold badges33 silver badges40 bronze badges

answered Nov 20, 2015 at 18:12

Mordax86's user avatar

Mordax86Mordax86

511 silver badge2 bronze badges

I created this today in case anyone wants to use a PowerShell script:

0 = Let windows choose what’s best for my computer
1 = Adjust for best appearance
2 = Adjust for best performance

    $mode = 2
    $visualEffects = 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects'
    if ((Get-ItemProperty $visualEffects).PSObject.Properties.Name -contains $name)
    {
      New-ItemProperty -Path $visualEffects -Name 'VisualFXSetting' -Value $mode -PropertyType 'DWORD'
    }
    else
    {
      Set-ItemProperty -Path $visualEffects -Name 'VisualFXSetting' -Value $mode  
    }
    Restart-Service -Name Themes  #(optional) to apply settings now

answered Jun 13, 2021 at 19:34

SunsetQuest's user avatar

SunsetQuestSunsetQuest

8,1512 gold badges49 silver badges44 bronze badges

Change Visual effects in Windows 10 for Better Performance

Moreover, If we go in past around 10-years, there was not any concept of optimizing Visual Effects in Windows. Windows Vista, Windows 98, Windows 2000, these Windows have limited features and graphics which are suitable for operating System. With the passage of time, Windows 7 came in the market with full zeal and zest. Windows users start installing Windows 10 and users were increasing by millions. What were reasons behind? Why were Windows users migrating?  The one Answer of all question, that is Visual effects in Windows 10, more graphics opportunities, better performance, more RAM compatibility etc.

No doubt, there are amazing Visual Effects in Windows 10. It is sad to announce that if your System characteristics are not well (System has a smaller amount of RAM (4GB or less)), then you have to disable visual effects in Windows 10 for Better Performance. There are many reasons for disabling visual effects in Windows 10. For example, your Windows 10 is running slowly, your battery life is also decreasing, and much more problems.

On the other hand, if you think your Window’s performance is great and do not need any feature to disable. We recommend to not change or disable Visual Effects in Windows 10. Also, when you upgrade to Windows 10 from Windows 7 or 8, overall interface of Windows 10 does not look responsive and interactive. Therefore, we must need to change Visual Effects in Windows 10 for better performance.

Read More: Increase your Windows 10 speed 10 times

What is Visual Effects in Windows 10 for optimize or better performance?

Visual Effects are those processes or functions which help in making the Interface more attractive. The main components that are important in making front end greater are, shadows, bars, menus, disable or enable Aero peek, transparent glass, thumbnails, themes for Windows, and more.

Today, we will tell you in detail about how can you make your PC with better performance? or how can you optimize Windows 10 performance? We will use the techniques of Visual Effects in Windows 10.

Read more: Delete the Recycle Bin Icon in Windows 7, 8, or 10

Read more: Transfer your files to new Windows 10

How to change or disable Visual Effects in Windows 10?

There are many ways to change or disable Visual Effects in Windows 10 for better Performance. Here We will tell you the main easiest ways, you can choose as you like.

⇒⇒Method #1⇐⇐

First, you need to open System Properties,

  1. Go to the Start/taskbar search field, type Sysdm.cpl
  2. Press Enter to open System Properties Windows dialog.

Second, now open Settings using the method given below,

  1. Go to “Advanced” > In performance section.
  2. Click on Settings as shown in the image below.

Change Visual effects in Windows 10 for Better Performance

In Settings(as shown below), Click on “adjust for Better Performance“. All your Performance settings will automatically adjust according to your System requirements.

On the other hand, if you click on “Adjust for better appearance“, all the Visual Effects will enable.

Custom: This will allow you to turn on and off the visual effects as you like.

Also, uncheck all the Visual Effects in Windows 10 according to the requirement. We unchecked the best option, We recommend to choose these options, otherwise, you can do according to you. Note: if you uncheck all the options, your Windows 10 will look Old and rough, so don’t make this mistake.

Change Visual effects in Windows 10 for Better Performance

This one is the simplest and best method to optimize Windows 10 performance using Changing in Visual Effects. Now if you are not satisfied with this method, we have another method for you.

⇒⇒Method #2⇐⇐

Optimize Windows 10 for better performance (Changing Visual Effects)

We will solve the issue using settings(Ease of Access Windows 10 option). All the animations and backgrounds run automatically when you install Windows 10. Let’s move on, how can you turn off the Windows 10 animations.

Turn on or off play animation options.

  • Go to Start Menu > Settings.
  • Click on Ease of Access.
  • On the left side, Select “Other options”.
  • Click on the Toggle Button to turn on or off.
  • Close the Settings after applying.

Change Visual effects in Windows 10 for Better Performance

⇒⇒Method #3⇐⇐

Change Visual Effects in Windows 10 using Windows Registry (Better Performance)

Using Windows Registry, we will go through“Regedit“. we can perform many functions using Registry editor like you can disable Aero Peek in Windows.

Windows Registry is used for many purposes, for example, to enable or disable the Homegroup feature in Windows or also, you can Set up the Icon Size on a taskbar. Follow each step carefully to change, enable or disable Visual Effects in Windows 10:

  • Go to Start > Open “Run” > Type “Regedit” > Open it.
  • Or Press Windows Button + R to go for Run.
  • Expand HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects

Change Visual effects in Windows 10 for Better Performance

On the right side, double click on the visual effects, Right click on it and modify the key values.

There are still four options( those which we figured out in step-1). Go to NEW > DWORD (32-bit) Value. Apply the key values as shown below:

1)Let Windows choose what’s best for my computer: Place 0 as value data.

2) Adjust for best appearance: Place 1 as value data.

3)Adjust for best Performance: Place 2 as value data.

4)Custom: Place 3 as value data.

As you noticed that, this method also work similar to the method 1. Moreover, We always recommend choosing the best option to Change Visual effects in Windows 10 for Better Performance. Windows Registry can’t disable all the Visual Effects because Windows Registry works with system Compatibilities and don’t allow to lose all the Effects of Windows 10. Here are the few Visual Effects in Windows 10, restricted by Windows Registry:

  • Fade out menu items after clicking
  • Slide open combo boxes
  • Fade or slide menus into view
  • Smooth-scroll list boxes
  • Show shadows under windows

Above all the Visual Effect can not disable. To disable these Effects, go to our Method 1 in this article and disable each Visual Effect manually.

At last, What else we can do for Better Performance?

If you have disabled all the Visual Effects in Windows 10, We recommend to turn off all the unnecessary programs or programs running in the Background. To close or disable the unnecessary Programs,

  • Press Ctrl+Shift+escape.
  • Select the unnecessary programs.
  • Right-click on program > Click on End Task.
  • It will speed up your Windows 10.

Change Visual effects in Windows 10 for Better Performance

Here you can end unimportant task one by one.

If you have any Question related to Change Visual effects in Windows 10 for Better Performance, Let us know in the Comment Section. Your feedback is highly appreciated.

RegWrite('HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\ComboBoxAnimation','DefaultApplied',"REG_DWORD",0x00000001)
			RegWrite('HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\ComboBoxAnimation','DefaultValue',"REG_DWORD",0x00000000)
			RegWrite('HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\AnimateMinMax','DefaultApplied',"REG_DWORD",0x00000001)
			RegWrite('HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\AnimateMinMax','DefaultValue',"REG_DWORD",0x00000000)
			RegWrite('HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\MenuAnimation','DefaultApplied',"REG_DWORD",0x00000001)
			RegWrite('HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\MenuAnimation','DefaultByAlphaTest',"REG_DWORD",0x00000000)
			RegWrite('HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\MenuAnimation','DefaultValue',"REG_DWORD",0x00000000)
			RegWrite('HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\SelectionFade','DefaultApplied',"REG_DWORD",0x00000001)
			RegWrite('HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\SelectionFade','DefaultByAlphaTest',"REG_DWORD",0x00000000)
			RegWrite('HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\SelectionFade','DefaultValue',"REG_DWORD",0x00000000)
			RegWrite('HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\DropShadow','DefaultApplied',"REG_DWORD",0x00000001)
			RegWrite('HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\DropShadow','DefaultValue',"REG_DWORD",0x00000000)
			RegWrite('HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\DropShadow','DefaultByAlphaTest',"REG_DWORD",0x00000000)
			RegWrite('HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\CursorShadow','DefaultApplied',"REG_DWORD",0x00000001)
			RegWrite('HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\CursorShadow','DefaultValue',"REG_DWORD",0x00000000)
			RegWrite('HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\ListviewAlphaSelect','DefaultApplied',"REG_DWORD",0x00000001)
			RegWrite('HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\ListviewAlphaSelect','DefaultByAlphaTest',"REG_DWORD",0x00000001)
			RegWrite('HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\ListviewAlphaSelect','DefaultValue',"REG_DWORD",0x00000001)
			RegWrite('HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\ListBoxSmoothScrolling','DefaultApplied',"REG_DWORD",0x00000001)
			RegWrite('HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\ListBoxSmoothScrolling','DefaultValue',"REG_DWORD",0x00000001)
			RegWrite('HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\ListBoxSmoothScrolling','DefaultByAlphaTest',"REG_DWORD",0x00000001)
			RegWrite('HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\TaskbarAnimations','DefaultApplied',"REG_DWORD",0x00000001)
			RegWrite('HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\TaskbarAnimations','DefaultByAlphaTest',"REG_DWORD",0x00000000)
			RegWrite('HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\TaskbarAnimations','DefaultValue',"REG_DWORD",0x00000000)
			RegWrite('HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\TooltipAnimation','DefaultApplied',"REG_DWORD",0x00000001)
			RegWrite('HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\TooltipAnimation','DefaultByAlphaTest',"REG_DWORD",0x00000000)
			RegWrite('HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\TooltipAnimation','DefaultValue',"REG_DWORD",0x00000000)
			$value="0x9012038010000000"
			RegWrite( 'HKEY_CURRENT_USER\Control Panel\Desktop','UserPreferencesMask',"REG_BINARY",$value)

  • Sndvol32 exe windows xp скачать
  • Software microsoft windows currentversion internet settings proxyserver
  • Software distribution как очистить windows 10
  • Snipping tool windows 10 что это
  • Snaptube скачать для компьютера бесплатно windows 10 для windows