Warning: WP_Syntax::substituteToken(): Argument #1 ($match) must be passed by reference, value given in /var/www/fastuser/data/www/h2.ipnets.ru/wp-content/plugins/wp-syntax/wp-syntax.php on line 383
Warning: WP_Syntax::substituteToken(): Argument #1 ($match) must be passed by reference, value given in /var/www/fastuser/data/www/h2.ipnets.ru/wp-content/plugins/wp-syntax/wp-syntax.php on line 383
Warning: WP_Syntax::substituteToken(): Argument #1 ($match) must be passed by reference, value given in /var/www/fastuser/data/www/h2.ipnets.ru/wp-content/plugins/wp-syntax/wp-syntax.php on line 383
Warning: WP_Syntax::substituteToken(): Argument #1 ($match) must be passed by reference, value given in /var/www/fastuser/data/www/h2.ipnets.ru/wp-content/plugins/wp-syntax/wp-syntax.php on line 383
Warning: WP_Syntax::substituteToken(): Argument #1 ($match) must be passed by reference, value given in /var/www/fastuser/data/www/h2.ipnets.ru/wp-content/plugins/wp-syntax/wp-syntax.php on line 383
Warning: WP_Syntax::substituteToken(): Argument #1 ($match) must be passed by reference, value given in /var/www/fastuser/data/www/h2.ipnets.ru/wp-content/plugins/wp-syntax/wp-syntax.php on line 383
Существует масса настроек Windows, которые хотелось бы изменить по умолчанию. Особенно это касается Windows 10, где появилось многожество новых фукнций и возможностей. В этой статье я приведу те рекомендуемые изменения реестра, которые мне кажутся наиболее полезными. Я буду сразу приводить команду cmd, которая выполнит необходимые изменения реестра. Из нее становится очевидным какие ключи и значения реестра необходимо поменять.
Системные настройки машины (HKLM)
Отключить кастомизацию Windows Media Player
[stextbox id=»grey»]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[/stextbox]
Отключить диалог первого запуска настройки Internet Explorer
[stextbox id=»grey»]rem Disable Internet Explorer Customization
reg add «HKLM\SOFTWARE\Policies\Microsoft\Internet Explorer\Main» /v «DisableFirstRunCustomize» /t REG_DWORD /d 1 /f[/stextbox]
Отключить рекламные объявления Microsoft Ads на экране блокировки Windows
[stextbox id=»grey»]rem Disable Microsoft Ads on locked screen
reg add «HKLM\SOFTWARE\Policies\Microsoft\Windows\Personalization» /v «NoLockScreen» /t REG_DWORD /d 1 /f[/stextbox]
Включить уведомления в Action Center
[stextbox id=»grey»]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[/stextbox]
Позволить пользователям подключать сетевые принтеры при включенном UAC
[stextbox id=»grey»]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[/stextbox]
Включить возможность быстрого переключения сессий пользователей
[stextbox id=»grey»]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[/stextbox]
Скрыть диалог о сохранении текущих ассоциаций при установке новых приложений
[stextbox id=»grey»]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[/stextbox]
Включить гибернацию
[stextbox id=»grey»]rem Enable_Hibernate
reg add HKLM\SYSTEM\CurrentControlSet\Control\Power /v HibernateEnabled /t REG_DWORD /d 1 /f[/stextbox]
Разрешить выключение без логона
[stextbox id=»grey»]rem Enable_Shutdown_without_Logon
reg add HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System /v shutdownwithoutlogon /t REG_DWORD /d 1 /f[/stextbox]
Язык интерфейса администратора применяется ко всем пользователям
[stextbox id=»grey»]rem Force_Adminitrator_Display_Language_for_All_Users
reg add HKLM\SOFTWARE\Policies\Microsoft\MUI\Settings /v MachineUILock /t REG_DWORD /d 1 /f[/stextbox]
Отключить warning при открытии файлов в IE «Publisher could not be verified. Are you sure you want to run this software?» «Do you want to run this file?». Отключение проверки зон
[stextbox id=»grey»]
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
[/stextbox]
Изменение размера экранной клавиатуры (подберите значение от 20 до 40)
[stextbox id=»grey»]reg add HKLM\software\microsoft\windows\currentversion\explorer\scaling /v MonitorSize /t REG_SZ /d 22.5 /f[/stextbox]
Отключить Flicks в меню Pen and Touch
[stextbox id=»grey»]rem Prevent Flicks
reg add «HKLM\SOFTWARE\Policies\Microsoft\TabletPC» /v «PreventFlicks» /t REG_DWORD /d «1» /f[/stextbox]
Отключить автоматическое вращение экрана
[stextbox id=»grey»]rem Disable Autorotation
reg add «HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\AutoRotation» /v «Enable» /t REG_DWORD /d «0» /f[/stextbox]
Кастомизация дефолтного пользователя
Кастомизация профиля пользователя default произовдится путем загрузки куста реестра с его профилем из файла ntuser.dat, внесения в нем изменений и последующей выгрузки.
rem ***** Configure Default User |
rem *** Load Default User hive |
reg load HKLM\temp "C:\Users\Default\ntuser.dat" |
Установка дефолтного поисковика Google
[stextbox id=»grey»]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[/stextbox]
Установка страницы по умолчанию в Internet Explorer. Установка домашней страницы в Internet Explorer.
[stextbox id=»grey»]
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
[/stextbox]
Прописывание имени пользователя в регистрационную информацию приложений MS Office
[stextbox id=»grey»]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[/stextbox]
Настройка WinZip открывать графические файлы из архива внешним просмотрщиком
[stextbox id=»grey»]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[/stextbox]
Отключить уведомления во время режима презентации
[stextbox id=»grey»]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[/stextbox]
Отключить всплывающие уведомления на рабочем столе от приложений
[stextbox id=»grey»]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[/stextbox]
Отключить уведомление IE ‘Do you want to allow this website to open a program…’
[stextbox id=»grey»]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[/stextbox]
Выводить Запуск от имени другого пользователя в контекстном меню
[stextbox id=»grey»]rem Show RunAsDifferentUser in Start menu
reg add «HKLM\temp\Software\Policies\Microsoft\Windows\Explorer» /v «ShowRunAsDifferentUserInStart» /t REG_DWORD /d 1 /f[/stextbox]
Отображать диалог подтверждения перед удалением
[stextbox id=»grey»]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[/stextbox]
Отключить Skype add-in в Internet Explorer
[stextbox id=»grey»]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[/stextbox]
При открытии новой вкладки в IE открывать новую страницу в быстрыми закладками
[stextbox id=»grey»]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[/stextbox]
Отключить ввод пальцами на сенсорных экранах
[stextbox id=»grey»]
rem Disable touch by finger input
reg add «HKLM\temp\Software\Microsoft\Wisp\Touch» /v «TouchGate» /t REG_DWORD /d 0 /f
[/stextbox]
Запинить иконку экранной клавиатуры в трей
[stextbox id=»grey»]rem Pin OSK icon to tray
reg add «hklm\temp\SOFTWARE\Microsoft\TabletTip\1.7» /v «TipbandDesiredVisibility» /t REG_DWORD /d «1» /f[/stextbox]
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 |