- Registrado
- 17 Feb 2007
- Mensajes
- 677
- Puntuación de reacción
- 1.022
- Puntos
- 93
- Edad
- 57
WARNING !!!
Create a restore point in Windows 11
Subsequently, it will be possible to automate the creation of restore points using the WMIC.EXE utility with the following command:
You can put this command in a batch file and run it manually as an administrator if necessary, or register it in the Windows Task Scheduler and run it according to a schedule.
Here hklm.reg is the file where the contents of the HKLM branch will be saved. Similarly, you can back up the rest of the registry branches, and then, if problems arise, roll back the changes by running the .reg file.
Creating a backup of the system registry
A user with administrator rights in Windows 11 has almost complete access to all branches of the registry, so if you have an administrator account in the system, you can safely perform all the required operations using regedit. If you do not have admin privileges, you should run regedit and reg files as an administrator.
Returning the taskbar icons to their usual place
But this may not be enough for some: both the arrangement of icons and the grouping of tasks in Windows 11 are implemented a little differently. The easiest way to return to the classic taskbar view without having to install additional memory-consuming programs is to use the following .reg file:
After applying this tweak, you need to restart Windows Explorer or end your current Windows session and log in again. The taskbar will take on a more familiar look, but at the same time, some features will “break” in it, such as grouping applications, in addition, the Start menu and the search bar will fall off. The main menu can be returned using one of the free utilities, which will be discussed later, and the search will still work in the explorer.
Windows 11 taskbar after tweak
To enable and disable system icons in the taskbar, open a command prompt (cmd.exe) and run the following command in it:
The System Icons window opens, allowing you to customize how icons appear on the taskbar.
System Icons window
To “make everything as it was” and at the same time not break the functionality of Windows 11, you can use the free utility Explorer Patcher , which brings the taskbar back to the classic Windows 10 look without disabling other system features. Just download from the developer's site and install the application - voila, everything works!
Tools have traditionally been used to return to the place of the classic Start menu in new versions of Windows. Classic Shell , but in the 11th version a similar utility works much better and more stable openshell . The installation of the tool is completely identical to Classic Shell, it is configured and works in exactly the same way.
Windows 11 with ExplorerPatcher and OpenShell
If you like the updated Windows 11 taskbar and decide to leave it, but want to replace the main menu with a more familiar one, you can use the utility Start 11 by Stardock - However, this program is paid.
The utility has a Russian-language interface and is therefore extremely easy to use. With this tool, you can customize the Windows 11 taskbar exactly the way you need it.
Don't forget to restart your system after making changes to the registry. To not disable, but completely remove Cortana for the current user, run PowerShell as an administrator and run the following command:
The same, but for all Windows users:
Disabling "extra" services
This will avoid potential data leakage: after all, various important information, including logins and passwords, can be stored in the swap file.
List of all installed Windows 11 apps
List of all scheduled tasks
Telemetry tasks are presented in the following list:
Disable an unnecessary task with the command
, where task is the corresponding task from the list above.
System Settings.{ED7BA470-8E54-465E-825C-99712043E01C}
Having opened the folder, you will see a window where all the main Windows settings are collected, even those that are not so easy to access under normal conditions.
We get access to all system settings
A source
Before getting into the Windows settings, we strongly recommend creating a restore point, or even better, completely backing up the system partition. All actions described in this article, you perform at your own peril and risk. Neither the author nor the editors bear any responsibility for possible consequences.
CREATING A BACKUP COPY
Before poking around in the giblets of the operating system, it makes sense at least to create a backup copy of the system registry and a restore point. Let's start with the last one.restore point
In the new Windows, the method of creating a restore point is not as trivial as in previous versions of the OS: you will never find it if you do not know where to look. Press Win + R and in the Run window that opens, type sysdm.cpl. The "System Properties" window will open: go to the "System Protection" tab, select the system drive and click on the "Create" button. Enter a name for the new restore point and click OK.Create a restore point in Windows 11
Subsequently, it will be possible to automate the creation of restore points using the WMIC.EXE utility with the following command:
Código:
Wmic.exe /Namespace:\\root\default Path SystemRestore Call CreateRestorePoint "%DATE%", 100, 1
You can put this command in a batch file and run it manually as an administrator if necessary, or register it in the Windows Task Scheduler and run it according to a schedule.
System registry
With the registry, everything is a little simpler: to work with it, there is a REG EXPORT console utility that can be used to export entire branches of the registry, like this:
Código:
reg export HKLM C:\hklm.reg
Here hklm.reg is the file where the contents of the HKLM branch will be saved. Similarly, you can back up the rest of the registry branches, and then, if problems arise, roll back the changes by running the .reg file.
Creating a backup of the system registry
A user with administrator rights in Windows 11 has almost complete access to all branches of the registry, so if you have an administrator account in the system, you can safely perform all the required operations using regedit. If you do not have admin privileges, you should run regedit and reg files as an administrator.
RETURNING THE FAMILIAR TASK PANEL AND MAIN MENU
The new macOS-style taskbar has appealed to many Windows users, but not all. You can move the application icons and the "Start" button to the left side of the taskbar, as was implemented in the "top ten". To do this, right-click on any point on the panel that is free of icons and select the "Taskbar Settings" item in the context menu that opens. In the window that opens, expand the "Taskbar Behavior" list and select "Left" from the menu on the right.Returning the taskbar icons to their usual place
But this may not be enough for some: both the arrangement of icons and the grouping of tasks in Windows 11 are implemented a little differently. The easiest way to return to the classic taskbar view without having to install additional memory-consuming programs is to use the following .reg file:
Código:
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Shell\Update\Packages]
"UndockingDisabled"=dword:00000001
After applying this tweak, you need to restart Windows Explorer or end your current Windows session and log in again. The taskbar will take on a more familiar look, but at the same time, some features will “break” in it, such as grouping applications, in addition, the Start menu and the search bar will fall off. The main menu can be returned using one of the free utilities, which will be discussed later, and the search will still work in the explorer.
Windows 11 taskbar after tweak
To enable and disable system icons in the taskbar, open a command prompt (cmd.exe) and run the following command in it:
Código:
Explorer shell:::{05d7b0f4-2121-4eff-bf6b-ed3f69b894d9}\SystemIcons
System Icons window
To “make everything as it was” and at the same time not break the functionality of Windows 11, you can use the free utility Explorer Patcher , which brings the taskbar back to the classic Windows 10 look without disabling other system features. Just download from the developer's site and install the application - voila, everything works!
Tools have traditionally been used to return to the place of the classic Start menu in new versions of Windows. Classic Shell , but in the 11th version a similar utility works much better and more stable openshell . The installation of the tool is completely identical to Classic Shell, it is configured and works in exactly the same way.
Windows 11 with ExplorerPatcher and OpenShell
If you like the updated Windows 11 taskbar and decide to leave it, but want to replace the main menu with a more familiar one, you can use the utility Start 11 by Stardock - However, this program is paid.
ADDITIONAL TASKBAR CUSTOMIZATION
If you want to dig deeper into the taskbar settings, there is a tool called 7+ Taskbar Tweaker , which has proven itself in Windows since version 7 and also works in Windows 11 if the classic panel is activated in it.The utility has a Russian-language interface and is therefore extremely easy to use. With this tool, you can customize the Windows 11 taskbar exactly the way you need it.
DISABLE CORTANA
Cortana is not just a built-in Windows voice assistant, it is deeply integrated into the search function, security system, and other architectural elements of the system. Disabling the voice assistant in the system settings is not enough, but you can run the following commands:
Código:
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\Windows Search" /v "AllowCortana" /t REG_DWORD /d 0 /f
reg add "HKLM\SOFTWARE\Microsoft\PolicyManager\default\Experience\AllowCortana" /v "value" /t REG_DWORD /d 0 /f
reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Search" /v "CortanaEnabled" /t REG_DWORD /d 0 /f
reg add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Search" /v "CortanaEnabled" /t REG_DWORD /d 0 /f
reg add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Search" /v "CanCortanaBeEnabled" /t REG_DWORD /d 0 /f
Don't forget to restart your system after making changes to the registry. To not disable, but completely remove Cortana for the current user, run PowerShell as an administrator and run the following command:
Código:
Get-AppxPackage -allusers Microsoft.549981C3F5F10 | Remove-AppxPackage
Código:
Get-AppxPackage -allusers *Microsoft.549981C3F5F10* | Remove-AppxPackage
DISABLE "EXTRA" SERVICES
By default, Windows 11 runs several services that someone may simply not need. For example, if you're not an Xbox user, you can disable the XboxGipSvc, XblAuthManager, XblGameSave, and XboxNetApiSvc services. If you don't use mobile devices and Windows 11 is installed on a desktop computer, you can disable SensorService, SensorDataService, and SensrSvc. You can also disable the following services without much harm to the health of the system:- DPS - Diagnostic Policy Service;
- RemoteRegistry - remote registry management service;
- TermService - terminal service;
- TrkWks is a client for tracking changed links.
Disabling "extra" services
ENABLE AUTOMATIC CLEANING OF THE PAGE FILE
To have Windows automatically clear the paging file when you log out, use the following command:
Código:
reg add "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management" /v " ClearPageFileAtShutdown " /t REG_DWORD /d 1 /f
REMOVING PRE-INSTALLED APPS
Some pre-installed programs in Windows 11 can be uninstalled in the Control Panel, but some gadgets and built-in utilities do not appear in this list. To uninstall all unnecessary applications, you can use the following method.- Right-click on the Windows 11 Start button and select Windows Terminal (Admin) from the context menu.
- In the PowerShell window that opens, type the command
-
Código:
Get-AppxPackage|Select Name, PackageFullName.
List of all installed Windows 11 apps
- Now you can remove any application with the command
Código:
Remove-AppxPackage "fullname"
Código:Get-AppxPackage -allusers *app* | Remove-AppxPackage
DELETE TELEMETRY TASKS
Everyone knows that Windows has a task scheduler, but not everyone knows that it is also used to perform telemetry tasks. If you open a terminal and type shtasks /query, you will get a list of all tasks scheduled in the system.List of all scheduled tasks
Telemetry tasks are presented in the following list:
Código:
[LIST]
[*] \Microsoft\Windows\FileHistory\File History (maintenance mode)
[*] \Microsoft\Windows\AppID\SmartScreenSpecific
[*] \Microsoft\Windows\Application Experience\AitAgent
[*] \Microsoft\Windows\Application Experience\Microsoft Compatibility Appraiser
[*] \Microsoft\Windows\Application Experience\ProgramDataUpdater
[*] \Microsoft\Windows\Application Experience\StartupAppTask
[*] \Microsoft\Windows\Autochk\Proxy
[*] \Microsoft\Windows\CloudExperienceHost\CreateObjectTask
[*] \Microsoft\Windows\Customer Experience Improvement Program\Consolidator
[*] \Microsoft\Windows\Customer Experience Improvement Program\BthSQM
[*] \Microsoft\Windows\Customer Experience Improvement Program\KernelCeipTask
[*] \Microsoft\Windows\Customer Experience Improvement Program\UsbCeip
[*] \Microsoft\Windows\Customer Experience Improvement Program\Uploader
[*] \Microsoft\Windows\DiskDiagnostic\Microsoft-Windows-DiskDiagnosticDataCollector
[*] \Microsoft\Windows\DiskDiagnostic\Microsoft-Windows-DiskDiagnosticResolver
[*] \Microsoft\Windows\DiskFootprint\Diagnostics
[*] \Microsoft\Windows\FileHistory\File History (maintenance mode)
[*] \Microsoft\Windows\Maintenance\WinSAT
[*] \Microsoft\Windows\NetTrace\GatherNetworkInfo
[*] \Microsoft\Windows\PI\Sqm-Tasks
[*] \Microsoft\Windows\Power Efficiency Diagnostics\AnalyzeSystem
[*] \Microsoft\Windows\Shell\FamilySafetyMonitor
[*] \Microsoft\Windows\Shell\FamilySafetyRefresh
[*] \Microsoft\Windows\Shell\FamilySafetyUpload
[*] \Microsoft\Windows\Windows Error Reporting\QueueReporting
[/LIST]
Código:
schtasks /end /tn "task"
GET ACCESS TO ALL SYSTEM SETTINGS
To get quick and easy access to all Windows 11 settings, create a new folder on your desktop with the following name:System Settings.{ED7BA470-8E54-465E-825C-99712043E01C}
Having opened the folder, you will see a window where all the main Windows settings are collected, even those that are not so easy to access under normal conditions.
We get access to all system settings
CONCLUSION
Microsoft Windows 11 is still a very young operating system, the full range of its capabilities has not yet been fully explored. Nevertheless, it is gaining more and more popularity among users, and over time, when the period of support for competing versions of Windows comes to an end, it will surely supplant them. We figured out how to customize the Windows 11 interface so that it looks more like Windows 10 we are used to. Next time we will talk about settings that will increase the performance of the new Windows on older machines with a weak hardware configuration.A source
Original message
WARNING/Предупреждение !!!
Создание точки восстановления в Windows 11
Впоследствии можно будет автоматизировать создание точек восстановления с помощью утилиты WMIC.EXE такой командой:
Можно поместить эту команду в batch-файл и запускать вручную от имени администратора по необходимости либо прописать в планировщике задач Windows и выполнять по расписанию.
Здесь hklm.reg — файл, в котором будет сохранено содержимое ветви HKLM. Аналогичным образом можно забэкапить остальные ветви реестра, а потом, если возникнут проблемы, откатить изменения, запустив reg-файл.
Создание бэкапа системного реестра
Пользователь с правами администратора в Windows 11 имеет практически полный доступ ко всем ветвям реестра, поэтому, если ты обладаешь в системе учеткой админа, можешь смело выполнять все требуемые операции с помощью regedit. Если же админских привилегий у тебя нет, следует запускать regedit и reg-файлы от имени администратора.
Возвращаем значки панели задач в привычное место
Но этого для кого‑то может оказаться недостаточно: и расположение значков, и группировка задач в Windows 11 реализованы немного по‑другому. Самый простой способ вернуться к классическому представлению панели задач без необходимости устанавливать дополнительные программы, занимающие память, — воспользоваться reg-файлом следующего содержания:
После применения этого твика нужно перезапустить Windows Explorer или завершить текущий сеанс Windows и залогиниться снова. Панель задач примет более привычный вид, но при этом в ней «сломаются» некоторые фичи вроде группировки приложений, кроме того, отвалится меню «Пуск» и строка поиска. Главное меню можно будет вернуть с помощью одной из бесплатных утилит, речь о которых пойдет дальше, а поиск все еще будет работать в проводнике.
Панель задач Windows 11 после применения твика
Чтобы включить и отключить системные значки в панели задач, открой командную строку (cmd.exe) и выполни в ней следующую команду:
Откроется окно «Системные значки», с помощью которого можно настроить отображение значков в панели задач.
Окно «Системные значки»
Чтобы «сделать все как было» и при этом не поломать функциональность Windows 11, можно воспользоваться бесплатной утилитой ExplorerPatcher, которая возвращает панели задач классический вид образца Windows 10 и при этом не отключает прочие функции системы. Просто скачиваешь с сайта разработчика и устанавливаешь приложение — вуаля, все работает!
Для возврата на место классического меню «Пуск» в новых версиях Windows традиционно использовалась тулза Classic Shell, но в 11-й версии намного лучше и стабильнее работает аналогичная утилита OpenShell. Установка тулзы полностью идентична Classic Shell, настраивается и работает она в точности так же.
Windows 11 c ExplorerPatcher и OpenShell
Если тебе нравится обновленная панель задач Windows 11 и ты решил оставить ее, но хочешь заменить главное меню на более привычное, можно воспользоваться утилитой Start 11 от Stardock — правда, программа эта платная.
Утилита имеет русскоязычный интерфейс и потому крайне проста в использовании. С помощью этой тулзы можно настроить панель задач Windows 11 именно так, как это нужно тебе.
Не забудь перезапустить систему после внесения изменений в реестр. Чтобы не отключить, а полностью удалить Кортану для текущего пользователя, запусти PowerShell от имени администратора и выполни следующую команду:
То же самое, но для всех пользователей Windows:
Отключение «лишних» служб
Это позволит избежать потенциальной утечки данных: ведь в файле подкачки может храниться различная важная информация, включающая логины и пароли.
Список всех установленных приложений Windows 11
Список всех запланированных задач
Задачи телеметрии представлены в следующем списке:
Отключи ненужную задачу командой
, где task — соответствующая задача из списка выше.
НастройкиСистемы.{ED7BA470-8E54-465E-825C-99712043E01C}
Открыв папку, ты увидишь окно, где собраны все основные настройки Windows, даже те, до которых в обычных условиях не так‑то просто добраться.
Получаем доступ ко всем настройкам системы
Источник
Прежде чем лезть в настройки винды, настоятельно рекомендуем создать точку восстановления, а еще лучше — полностью забэкапить системный раздел. Все действия, описанные в этой статье, ты выполняешь на свой страх и риск. Ни автор, ни редакция не несут никакой ответственности за возможные последствия.
СОЗДАЕМ РЕЗЕРВНУЮ КОПИЮ
Прежде чем ковыряться в потрохах операционной системы, имеет смысл как минимум создать резервную копию системного реестра и точку восстановления. Начнем с последней.Точка восстановления
В новой винде методика создания точки восстановления не столь тривиальна, как в предыдущих версиях ОС: никогда не найдешь, если не знаешь, где искать. Нажми Win + R и в открывшемся окне «Выполнить» набери sysdm.cpl. Откроется окно «Свойства системы»: перейди к вкладке «Защита системы», выдели системный диск и нажми на кнопку «Создать». Введи название для новой точки восстановления и нажми «ОK».Создание точки восстановления в Windows 11
Впоследствии можно будет автоматизировать создание точек восстановления с помощью утилиты WMIC.EXE такой командой:
Código:
Wmic.exe /Namespace:\\root\default Path SystemRestore Call CreateRestorePoint "%DATE%", 100, 1
Можно поместить эту команду в batch-файл и запускать вручную от имени администратора по необходимости либо прописать в планировщике задач Windows и выполнять по расписанию.
Системный реестр
С реестром все немного проще: для работы с ним существует консольная утилита REG EXPORT, с помощью которой можно экспортировать целые ветви реестра, например так:
Código:
reg export HKLM С:\hklm.reg
Здесь hklm.reg — файл, в котором будет сохранено содержимое ветви HKLM. Аналогичным образом можно забэкапить остальные ветви реестра, а потом, если возникнут проблемы, откатить изменения, запустив reg-файл.
Создание бэкапа системного реестра
Пользователь с правами администратора в Windows 11 имеет практически полный доступ ко всем ветвям реестра, поэтому, если ты обладаешь в системе учеткой админа, можешь смело выполнять все требуемые операции с помощью regedit. Если же админских привилегий у тебя нет, следует запускать regedit и reg-файлы от имени администратора.
ВОЗВРАЩАЕМ ПРИВЫЧНУЮ ПАНЕЛЬ ЗАДАЧ И ГЛАВНОЕ МЕНЮ
Новая панель задач в стиле macOS пришлась по вкусу многим пользователям Windows, но далеко не всем. Можно переместить значки приложений и кнопку «Пуск» в левую часть панели задач, как это было реализовано в «десятке». Для этого щелкни правой клавишей мыши в любой свободной от значков точке панели и в открывшемся контекстном меню выбери пункт «Параметры панели задач». В открывшемся окне разверни список «Поведение панели задач» и в расположенном справа меню выбери пункт «Слева».Возвращаем значки панели задач в привычное место
Но этого для кого‑то может оказаться недостаточно: и расположение значков, и группировка задач в Windows 11 реализованы немного по‑другому. Самый простой способ вернуться к классическому представлению панели задач без необходимости устанавливать дополнительные программы, занимающие память, — воспользоваться reg-файлом следующего содержания:
Código:
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Shell\Update\Packages]
"UndockingDisabled"=dword:00000001
После применения этого твика нужно перезапустить Windows Explorer или завершить текущий сеанс Windows и залогиниться снова. Панель задач примет более привычный вид, но при этом в ней «сломаются» некоторые фичи вроде группировки приложений, кроме того, отвалится меню «Пуск» и строка поиска. Главное меню можно будет вернуть с помощью одной из бесплатных утилит, речь о которых пойдет дальше, а поиск все еще будет работать в проводнике.
Панель задач Windows 11 после применения твика
Чтобы включить и отключить системные значки в панели задач, открой командную строку (cmd.exe) и выполни в ней следующую команду:
Código:
Explorer shell:::{05d7b0f4-2121-4eff-bf6b-ed3f69b894d9}\SystemIcons
Окно «Системные значки»
Чтобы «сделать все как было» и при этом не поломать функциональность Windows 11, можно воспользоваться бесплатной утилитой ExplorerPatcher, которая возвращает панели задач классический вид образца Windows 10 и при этом не отключает прочие функции системы. Просто скачиваешь с сайта разработчика и устанавливаешь приложение — вуаля, все работает!
Для возврата на место классического меню «Пуск» в новых версиях Windows традиционно использовалась тулза Classic Shell, но в 11-й версии намного лучше и стабильнее работает аналогичная утилита OpenShell. Установка тулзы полностью идентична Classic Shell, настраивается и работает она в точности так же.
Windows 11 c ExplorerPatcher и OpenShell
Если тебе нравится обновленная панель задач Windows 11 и ты решил оставить ее, но хочешь заменить главное меню на более привычное, можно воспользоваться утилитой Start 11 от Stardock — правда, программа эта платная.
ДОПОЛНИТЕЛЬНАЯ НАСТРОЙКА ПАНЕЛИ ЗАДАЧ
Если ты хочешь поковыряться в более глубоких настройках панели задач, к твоим услугам инструмент под названием 7+ Taskbar Tweaker, который прекрасно зарекомендовал себя в винде с 7-й версии и также работает в 11-й, если в ней активирована классическая панель.Утилита имеет русскоязычный интерфейс и потому крайне проста в использовании. С помощью этой тулзы можно настроить панель задач Windows 11 именно так, как это нужно тебе.
ОТКЛЮЧАЕМ КОРТАНУ
Кортана — это не просто встроенный голосовой помощник Windows, она глубоко интегрирована в функцию поиска, систему безопасности и другие архитектурные элементы системы. Отключить голосового помощника в настройках системы бывает недостаточно, но можно выполнить следующие команды:
Código:
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\Windows Search" /v "AllowCortana" /t REG_DWORD /d 0 /f
reg add "HKLM\SOFTWARE\Microsoft\PolicyManager\default\Experience\AllowCortana" /v "value" /t REG_DWORD /d 0 /f
reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Search" /v "CortanaEnabled" /t REG_DWORD /d 0 /f
reg add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Search" /v "CortanaEnabled" /t REG_DWORD /d 0 /f
reg add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Search" /v "CanCortanaBeEnabled" /t REG_DWORD /d 0 /f
Не забудь перезапустить систему после внесения изменений в реестр. Чтобы не отключить, а полностью удалить Кортану для текущего пользователя, запусти PowerShell от имени администратора и выполни следующую команду:
Código:
Get-AppxPackage -allusers Microsoft.549981C3F5F10 | Remove-AppxPackage
Código:
Get-AppxPackage -allusers *Microsoft.549981C3F5F10* | Remove-AppxPackage
ВЫКЛЮЧЕНИЕ «ЛИШНИХ» СЛУЖБ
По умолчанию в Windows 11 работает несколько служб, которые кому‑то могут быть попросту не нужны. Например, если ты не пользуешься Xbox, можно отключить службы XboxGipSvc, XblAuthManager, XblGameSave и XboxNetApiSvc. Если ты не используешь мобильные устройства, а Windows 11 установлена на стационарном компьютере, можно отключить SensorService, SensorDataService и SensrSvc. Также можно без особого вреда для здоровья системы вырубить следующие службы:- DPS — служба политики диагностики;
- RemoteRegistry — служба удаленного управления реестром;
- TermService — служба терминалов;
- TrkWks — клиент отслеживания изменившихся связей.
Отключение «лишних» служб
ВКЛЮЧАЕМ АВТОМАТИЧЕСКУЮ ОЧИСТКУ ФАЙЛА ПОДКАЧКИ
Чтобы при выходе из системы Windows автоматически очищала файл подкачки, воспользуйся следующей командой:
Código:
reg add "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management" /v " ClearPageFileAtShutdown " /t REG_DWORD /d 1 /f
УДАЛЯЕМ ПРЕДУСТАНОВЛЕННЫЕ ПРИЛОЖЕНИЯ
Часть предустановленных в Windows 11 программ можно удалить в панели управления, но некоторые мини‑приложения и встроенные утилиты в этом списке не отображаются. Чтобы деинсталлировать все ненужные приложения, можно воспользоваться следующим способом.- Щелкни правой клавишей мыши на кнопке «Пуск» Windows 11 и в контекстном меню выбери пункт «Терминал Windows (Администратор)».
- В открывшемся окне PowerShell набери команду
-
Código:
Get-AppxPackage|Select Name, PackageFullName.
Список всех установленных приложений Windows 11
- Теперь можно удалить любое приложение командой
Código:
Remove-AppxPackage "fullname"
Código:Get-AppxPackage -allusers *app* | Remove-AppxPackage
УДАЛЯЕМ ЗАДАЧИ ТЕЛЕМЕТРИИ
Все знают, что в Windows имеется планировщик заданий, но далеко не каждому известно, что он в том числе используется для выполнения задач телеметрии. Если открыть терминал и набрать команду shtasks /query, ты получишь список всех запланированных в системе задач.Список всех запланированных задач
Задачи телеметрии представлены в следующем списке:
Código:
[LIST]
[*]\Microsoft\Windows\FileHistory\File History (maintenance mode)
[*]\Microsoft\Windows\AppID\SmartScreenSpecific
[*]\Microsoft\Windows\Application Experience\AitAgent
[*]\Microsoft\Windows\Application Experience\Microsoft Compatibility Appraiser
[*]\Microsoft\Windows\Application Experience\ProgramDataUpdater
[*]\Microsoft\Windows\Application Experience\StartupAppTask
[*]\Microsoft\Windows\Autochk\Proxy
[*]\Microsoft\Windows\CloudExperienceHost\CreateObjectTask
[*]\Microsoft\Windows\Customer Experience Improvement Program\Consolidator
[*]\Microsoft\Windows\Customer Experience Improvement Program\BthSQM
[*]\Microsoft\Windows\Customer Experience Improvement Program\KernelCeipTask
[*]\Microsoft\Windows\Customer Experience Improvement Program\UsbCeip
[*]\Microsoft\Windows\Customer Experience Improvement Program\Uploader
[*]\Microsoft\Windows\DiskDiagnostic\Microsoft-Windows-DiskDiagnosticDataCollector
[*]\Microsoft\Windows\DiskDiagnostic\Microsoft-Windows-DiskDiagnosticResolver
[*]\Microsoft\Windows\DiskFootprint\Diagnostics
[*]\Microsoft\Windows\FileHistory\File History (maintenance mode)
[*]\Microsoft\Windows\Maintenance\WinSAT
[*]\Microsoft\Windows\NetTrace\GatherNetworkInfo
[*]\Microsoft\Windows\PI\Sqm-Tasks
[*]\Microsoft\Windows\Power Efficiency Diagnostics\AnalyzeSystem
[*]\Microsoft\Windows\Shell\FamilySafetyMonitor
[*]\Microsoft\Windows\Shell\FamilySafetyRefresh
[*]\Microsoft\Windows\Shell\FamilySafetyUpload
[*]\Microsoft\Windows\Windows Error Reporting\QueueReporting
[/LIST]
Código:
schtasks /end /tn "task"
ПОЛУЧАЕМ ДОСТУП КО ВСЕМ НАСТРОЙКАМ СИСТЕМЫ
Чтобы получить быстрый и удобный доступ ко всем настройкам Windows 11, создай на рабочем столе новую папку со следующим именем:НастройкиСистемы.{ED7BA470-8E54-465E-825C-99712043E01C}
Открыв папку, ты увидишь окно, где собраны все основные настройки Windows, даже те, до которых в обычных условиях не так‑то просто добраться.
Получаем доступ ко всем настройкам системы
ЗАКЛЮЧЕНИЕ
Microsoft Windows 11 — еще очень молодая операционная система, весь спектр возможностей которой до конца пока не изучен. Тем не менее она завоевывает все большую популярность у пользователей, а со временем, когда срок поддержки конкурирующих версий Windows подойдет к концу, наверняка вытеснит их. Мы выяснили, как настроить интерфейс Windows 11 таким образом, чтобы он был больше похож на привычную нам Windows 10. В следующий раз поговорим о настройках, которые позволят увеличить быстродействие новой винды на старых машинах со слабой аппаратной конфигурацией.Источник