Существует масса настроек Windows, которые хотелось бы изменить по умолчанию. Особенно это касается Windows 10, где появилось многожество новых фукнций и возможностей. В этой статье я приведу те рекомендуемые изменения реестра, которые мне кажутся наиболее полезными. Я буду сразу приводить команду cmd, которая выполнит необходимые изменения реестра. Из нее становится очевидным какие ключи и значения реестра необходимо поменять.

Системные настройки машины (HKLM)

Отключить кастомизацию Windows Media Player

rem Disable Windows Media Player Customization
reg add «HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\MediaPlayer\Preferences» /v «AcceptedEULA» /t REG_DWORD /d 1 /f
reg add «HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\MediaPlayer\Preferences» /v «FirstTime» /t REG_DWORD /d 1 /f
reg add «HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\WindowsMediaPlayer» /v «GroupPrivacyAcceptance» /t REG_DWORD /d 1 /f

Отключить диалог первого запуска настройки Internet Explorer

rem Disable Internet Explorer Customization
reg add «HKLM\SOFTWARE\Policies\Microsoft\Internet Explorer\Main» /v «DisableFirstRunCustomize» /t REG_DWORD /d 1 /f

Отключить рекламные объявления Microsoft Ads на экране блокировки Windows

rem Disable Microsoft Ads on locked screen
reg add «HKLM\SOFTWARE\Policies\Microsoft\Windows\Personalization» /v «NoLockScreen» /t REG_DWORD /d 1 /f

Включить уведомления в Action Center

rem Enable Notifications and Action Center back
reg add «HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer» /v «NoAutoTrayNotify» /t REG_DWORD /d «1» /f
reg add «HKLM\Software\Policies\Microsoft\Windows\Explorer» /v «DisableNotificationCenter» /t REG_DWORD /d «0» /f

Позволить пользователям подключать сетевые принтеры при включенном UAC

reg add HKLM\Software\Policies\Microsoft\Windows\DriverInstall\Restrictions /v AllowUserDeviceClasses /d 1 /t REG_DWORD /f
reg add HKLM\Software\Policies\Microsoft\Windows\DriverInstall\Restrictions\AllowUserDeviceClasses /v 1 /d «{4d36e979-e325-11ce-bfc1-08002be10318}» /t REG_SZ /f
reg add HKLM\Software\Policies\Microsoft\Windows\DriverInstall\Restrictions\AllowUserDeviceClasses /v 2 /d «{4658ee7e-f050-11d1-b6bd-00c04fa372a7}» /t REG_SZ /f
reg add «HKLM\Software\Policies\Microsoft\Windows NT\Printers\PointAndPrint» /v Restricted /d 1 /t REG_DWORD /f
reg add «HKLM\Software\Policies\Microsoft\Windows NT\Printers\PointAndPrint» /v NoWarningNoElevationOnInstall /d 1 /t REG_DWORD /f
reg add «HKLM\Software\Policies\Microsoft\Windows NT\Printers\PointAndPrint» /v UpdatePromptSettings /d 2 /t REG_DWORD /f

Включить возможность быстрого переключения сессий пользователей

rem Enable Hide Entry Points for Fast User Switching
reg add «HKLM\Software\Microsoft\Windows\CurrentVersion\Policies\System» /v «HideFastUserSwitching» /t REG_DWORD /d «0» /f

Скрыть диалог о сохранении текущих ассоциаций при установке новых приложений

rem Policy Do not show the ‘new application installed’ notification enable
reg add HKLM\SOFTWARE\Policies\Microsoft\Windows\Explorer /v NoNewAppAlert /t REG_DWORD /d 1 /f

Включить гибернацию

rem Enable_Hibernate
reg add HKLM\SYSTEM\CurrentControlSet\Control\Power /v HibernateEnabled /t REG_DWORD /d 1 /f

Разрешить выключение без логона

rem Enable_Shutdown_without_Logon
reg add HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System /v shutdownwithoutlogon /t REG_DWORD /d 1 /f

Язык интерфейса администратора применяется ко всем пользователям

rem Force_Adminitrator_Display_Language_for_All_Users
reg add HKLM\SOFTWARE\Policies\Microsoft\MUI\Settings /v MachineUILock /t REG_DWORD /d 1 /f

Отключить warning при открытии файлов в IE «Publisher could not be verified. Are you sure you want to run this software?» «Do you want to run this file?». Отключение проверки зон

REG ADD «HKCU\Environment» /V SEE_MASK_NOZONECHECKS /T REG_SZ /D 1 /F

REG ADD «HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Environment» /V SEE_MASK_NOZONECHECKS /T REG_SZ /D 1 /F

Изменение размера экранной клавиатуры (подберите значение от 20 до 40)

reg add HKLM\software\microsoft\windows\currentversion\explorer\scaling /v MonitorSize /t REG_SZ /d 22.5 /f

Отключить Flicks в меню Pen and Touch

rem Prevent Flicks
reg add «HKLM\SOFTWARE\Policies\Microsoft\TabletPC» /v «PreventFlicks» /t REG_DWORD /d «1» /f

Отключить автоматическое вращение экрана

rem Disable Autorotation
reg add «HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\AutoRotation» /v «Enable» /t REG_DWORD /d «0» /f

Кастомизация дефолтного пользователя

Кастомизация профиля пользователя default произовдится путем загрузки куста реестра с его профилем из файла ntuser.dat, внесения в нем изменений и последующей выгрузки.

rem ***** Configure Default User
rem *** Load Default User hive
reg load HKLM\temp "C:\Users\Default\ntuser.dat"

Установка дефолтного поисковика Google

rem Change default search provider to Google
reg add «HKLM\temp\SOFTWARE\Microsoft\Internet Explorer\SearchScopes» /v «DefaultScope» /t REG_SZ /d «{631A6321-6980-45DA-8787-FE63D46CA9BB}» /f
reg add «HKLM\temp\SOFTWARE\Microsoft\Internet Explorer\SearchScopes\{631A6321-6980-45DA-8787-FE63D46CA9BB}» /v «DisplayName» /t REG_SZ /d «Google» /f
reg add «HKLM\temp\SOFTWARE\Microsoft\Internet Explorer\SearchScopes\{631A6321-6980-45DA-8787-FE63D46CA9BB}» /v «OSDFileURL» /t REG_SZ /d «http://www.iegallery.com/AddOns/DownloadAddOn?resourceId=1681» /f
reg add «HKLM\temp\SOFTWARE\Microsoft\Internet Explorer\SearchScopes\{631A6321-6980-45DA-8787-FE63D46CA9BB}» /v «FaviconURL» /t REG_SZ /d «http://www.google.com/favicon.ico» /f
reg add «HKLM\temp\SOFTWARE\Microsoft\Internet Explorer\SearchScopes\{631A6321-6980-45DA-8787-FE63D46CA9BB}» /v «SuggestionsURL_JSON» /t REG_SZ /d «http://suggestqueries.google.com/complete/search?output=firefox&client=firefox&qu={searchTerms}» /f
reg add «HKLM\temp\SOFTWARE\Microsoft\Internet Explorer\SearchScopes\{631A6321-6980-45DA-8787-FE63D46CA9BB}» /v «ShowSearchSuggestions» /t REG_DWORD /d «1» /f
reg add «HKLM\temp\SOFTWARE\Microsoft\Internet Explorer\SearchScopes\{631A6321-6980-45DA-8787-FE63D46CA9BB}» /v «URL» /t REG_SZ /d «http://www.google.com/search?hl=en&q={searchTerms}» /f

Установка страницы по умолчанию в Internet Explorer. Установка домашней страницы в Internet Explorer.

rem Set Internet Default Page
reg add «HKLM\temp\Software\Microsoft\Internet Explorer\Main» /v «Default_Page_URL» /t REG_SZ /d «http://hww.ru» /f

rem Set Internet Start Page

reg add «HKLM\temp\Software\Microsoft\Internet Explorer\Main» /v «Start Page» /t REG_SZ /d «http://intranet.jti.com» /f

Прописывание имени пользователя в регистрационную информацию приложений MS Office

rem Set proper username in Office document Comment
reg add «HKLM\temp\Software\Microsoft\office\common\UserInfo» /v «UserName» /t REG_SZ /d «» /f
reg add «HKLM\temp\Software\Microsoft\office\common\UserInfo» /v «UserInitials» /t REG_SZ /d «» /f

Настройка WinZip открывать графические файлы из архива внешним просмотрщиком

rem Switch off WinZip Internal Image Viewer association
reg add «HKLM\temp\SOFTWARE\Nico Mak Computing\WinZip\WinZip» /v «DblClickImgViewOpt» /t REG_SZ /d «2810» /f

Отключить уведомления во время режима презентации

rem Hide notifications while presenting
reg add «HKLM\temp\SOFTWARE\Microsoft\Windows\CurrentVersion\Notifications\Settings» /v «NOC_GLOBAL_SETTING_SUPRESS_TOASTS_WHILE_DUPLICATING» /t REG_DWORD /d «1» /f

Отключить всплывающие уведомления на рабочем столе от приложений 

rem Hide notifications from apps and other senders
reg add «HKLM\temp\Software\Microsoft\Windows\CurrentVersion\PushNotifications» /v «ToastEnabled» /t REG_DWORD /d «1» /f

Отключить уведомление IE ‘Do you want to allow this website to open a program…’

rem Hide IE pop-up ‘Do you want to allow this website to open a program…’
reg add «HKLM\temp\Software\Microsoft\Internet Explorer\ProtocolExecute\mailto» /v «WarnOnOpen» /t REG_DWORD /d «0» /f

Выводить Запуск от имени другого пользователя в контекстном меню

rem Show RunAsDifferentUser in Start menu
reg add «HKLM\temp\Software\Policies\Microsoft\Windows\Explorer» /v «ShowRunAsDifferentUserInStart» /t REG_DWORD /d 1 /f

Отображать диалог подтверждения перед удалением

rem Show Display confirmation dialog when deleting files
reg add «HKLM\temp\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer» /v «ConfirmFileDelete» /t REG_DWORD /d 1 /f

Отключить Skype add-in в Internet Explorer

rem Disable Skype add-ins in IE
reg add «HKLM\temp\Software\Microsoft\Windows\CurrentVersion\Ext\Settings\{31D09BA0-12F5-4CCE-BE8A-2923E76605DA}» /v «Flags» /t REG_DWORD /d 1 /f

При открытии новой вкладки в IE открывать новую страницу в быстрыми закладками

rem When a tab is opened in IE, open a new tab page
reg add «HKLM\temp\SOFTWARE\Microsoft\Internet Explorer\TabbedBrowsing» /v «NewTabPageShow» /t REG_DWORD /d 2 /f

Отключить ввод пальцами на сенсорных экранах

rem Disable touch by finger input

reg add «HKLM\temp\Software\Microsoft\Wisp\Touch» /v «TouchGate» /t REG_DWORD /d 0 /f

Запинить иконку экранной клавиатуры в трей

rem Pin OSK icon to tray
reg add «hklm\temp\SOFTWARE\Microsoft\TabletTip\1.7» /v «TipbandDesiredVisibility» /t REG_DWORD /d «1» /f
rem *** Unload Default User hive
reg unload "HKLM\temp"

Для текущего пользователя

Отключить проверку следующих файлов при открытии в IE. Создайте reg файл со следующим содержимым:

Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Attachments]
"SaveZoneInformation"=dword:00000001
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Associations]
"LowRiskFileTypes"=".avi;.bat;.com;.cmd;.exe;.htm;.html;.lnk;.mpg;.mpeg;.mov;.mp3;.msi;.m3u;.rar;.reg;.txt;.vbs;.wav;.zip;"
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Attachments]
"SaveZoneInformation"=-
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Associations]
"LowRiskFileTypes"=-

 

Использовать маленькие иконки панели задач

REG ADD "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /V TaskbarSmallIcons /T REG_DWORD /D 1 /F
[Посещений: 2 077, из них сегодня: 1]

Добавить комментарий