Висит процесс установщик windows

Summary

  • Let the Windows Modules Installer Worker process finish running even if it’s using a lot of CPU. It will stop working once the update or maintenance task is complete.
  • To stop the process as you want to do something on your PC, open Task Manager, access the «Processes» tab, right-click the process, and choose «End Task.»
  • Other troubleshooting methods include running Windows Update troubleshooter, clearing Windows Update cache and pausing the updates, and running the PC’s maintenance tasks at your chosen time.

Windows Modules Installer Worker (TiWorker.exe) is a normal Windows process related to your PC’s updates and maintenance. However, if it uses up a lot of CPU for an extended period it may be due to an error. Here are some things you can do to fix it.

Wait for It to Finish Running

Windows launches the Windows Modules Installer Worker when there’s an update to install or a PC maintenance task to run. You should generally let the process finish running, even if it’s using up a lot of CPU.

When the update or maintenance task has finished, the process will stop running.

If it continues to run for an extended period or you want to perform other tasks, use the troubleshooting tips below.

Run Windows Update Troubleshooter

Windows Modules Installer Worker often runs longer than expected when there is a problem with an update. In this case, run the Windows Update troubleshooter to find and fix any update problems.

Microsoft is phasing out troubleshooters in favor of the Get Help app on Windows 11. In the future, use that app to resolve issues with your PC.

If you’re on Windows 11, navigate to Settings > System > Troubleshoot > Other Troubleshooters, then click the «Run» button next to Windows Update.

'Run' highlighted for 'Windows Update' troubleshooter in Windows 11 Settings.

On Windows 10, head to Settings > Update & Security > Troubleshoot > Additional Troubleshooters. Select «Windows Update» and click «Run the Troubleshooter.»

'Run the Troubleshooter' highlighted for 'Windows Update' troubleshooter in Windows 10 Settings.

Follow the on-screen instructions in the tool to resolve any update issues.

Temporarily End the Windows Modules Installer Process

If you need to perform a task and the Windows Modules Installer Worker process is using up so much CPU that your PC has become unresponsive, you can temporarily end the process. We don’t recommend you do this unless you have a really need to.

To end the process, right-click the Start Menu icon and select «Task Manager.» Open the «Processes» tab, right-click «Windows Modules Installer Worker,» and select «End Task.»

'End Task' highlighted for 'Windows Modules Installer Worker' in Task Manager.

Clear Windows Update Cache and Pause Updates

If you want to prevent Windows Modules Installer Worker from running, clear your Windows Update cache and pause the updates. This way, the process won’t have updates to install and won’t be able to check for new updates.

We don’t recommend pausing updates as newer updates often bring bug fixes and security patches that improve and safeguard your system.

To start, open a Run window by pressing Windows+R, then type the following in the box and press Enter:

services.msc

Find the service named «Windows Update.» Right-click it and select «Stop.»

'Stop' highlighted for 'Windows Update' on the 'Services' window.

Open Run again by pressing Windows+R, type the following path in the box, and press Enter:

C:\Windows\SoftwareDistribution\

Select all files in the folder by pressing Ctrl+A, then right-click a selected file and choose «Delete» (a trash can icon on Windows 11). Make sure to empty the Recycle Bin as well.

'Delete' highlighted for Windows Update cache.

Now that your update cache is deleted, pause the updates. On Windows 11, navigate to Settings > Windows Update. On the right pane, next to «Pause Updates,» click the drop-down menu and choose how long to pause the updates.

'Pause Updates' highlighted in Windows 11 Settings.

On Windows 10, go to Settings > Update & Security > Windows Update. On the right pane, click «Advanced Options.» In the «Pause Updates» section, click the «Pause Until» drop-down menu and select a time duration.

'Pause Until' highlighted in Windows 10 Settings.

Run Computer Maintenance at Your Specified Time

Windows Modules Installer Worker runs when your PC is performing a maintenance task. Luckily, you can change when the system runs those tasks, allowing you to prevent the process from running when you’re working on important tasks.

To make that change, open the Start Menu and find «Security and Maintenance». Click it to open it. Then, expand the «Maintenance» section and choose «Change Maintenance Settings.»

'Change Maintenance Settings' highlighted in Control Panel.

Select the «Run Maintenance Tasks Daily at» drop-down menu and select when you want your PC to run the maintenance tasks. This should be when you aren’t working on important tasks on your PC. Then, select «OK.»

'Run Maintenance Tasks Daily at' and 'OK' highlighted on the 'Automatic Maintenance' screen.

And that’s all there is to eliminating or reducing Windows Modules Installer Worker’s CPU usage on a Windows computer. It isn’t the only process related to Windows Updates that can cause problems, though. There are other troubleshooting steps you can try if Windows Update is stuck.

Реализация DI в PHP

Jason-Webb 13.05.2025

Когда я начинал писать свой первый крупный PHP-проект, моя архитектура напоминала запутаный клубок спагетти. Классы создавали другие классы внутри себя, зависимости жостко прописывались в коде, а о. . .

Обработка изображений в реальном времени на C# с OpenCV

stackOverflow 13.05.2025

Объединение библиотеки компьютерного зрения OpenCV с современным языком программирования C# создаёт симбиоз, который открывает доступ к впечатляющему набору возможностей. Ключевое преимущество этого. . .

POCO, ACE, Loki и другие продвинутые C++ библиотеки

NullReferenced 13.05.2025

В C++ разработки существует такое обилие библиотек, что порой кажется, будто ты заблудился в дремучем лесу. И среди этого многообразия POCO (Portable Components) – как маяк для тех, кто ищет. . .

Паттерны проектирования GoF на C#

UnmanagedCoder 13.05.2025

Вы наверняка сталкивались с ситуациями, когда код разрастается до неприличных размеров, а его поддержка становится настоящим испытанием. Именно в такие моменты на помощь приходят паттерны Gang of. . .

Создаем CLI приложение на Python с Prompt Toolkit

py-thonny 13.05.2025

Современные командные интерфейсы давно перестали быть черно-белыми текстовыми программами, которые многие помнят по старым операционным системам. CLI сегодня – это мощные, интуитивные и даже. . .

Конвейеры ETL с Apache Airflow и Python

AI_Generated 13.05.2025

ETL-конвейеры – это набор процессов, отвечающих за извлечение данных из различных источников (Extract), их преобразование в нужный формат (Transform) и загрузку в целевое хранилище (Load). . . .

Выполнение асинхронных задач в Python с asyncio

py-thonny 12.05.2025

Современный мир программирования похож на оживлённый мегаполис – тысячи процессов одновременно требуют внимания, ресурсов и времени. В этих джунглях операций возникают ситуации, когда программа. . .

Работа с gRPC сервисами на C#

UnmanagedCoder 12.05.2025

gRPC (Google Remote Procedure Call) — открытый высокопроизводительный RPC-фреймворк, изначально разработанный компанией Google. Он отличается от традиционых REST-сервисов как минимум тем, что. . .

CQRS (Command Query Responsibility Segregation) на Java

Javaican 12.05.2025

CQRS — Command Query Responsibility Segregation, или разделение ответственности команд и запросов. Суть этого архитектурного паттерна проста: операции чтения данных (запросы) отделяются от операций. . .

Шаблоны и приёмы реализации DDD на C#

stackOverflow 12.05.2025

Когда я впервые погрузился в мир Domain-Driven Design, мне показалось, что это очередная модная методология, которая скоро канет в лету. Однако годы практики убедили меня в обратном. DDD — не просто. . .

Всем привет форумчане, прошу прощения может за столь глупый вопрос, но вышло так что ноутбук acer nitro 5 является моим основным инструментом в работе. И в итоге все накрылось

[B]суть проблемы [/B]

Вчера решил переместить компас 3д с диска (С) на диск (D) для освобождения места
При переносе вылез установщик windows якобы компас для нормальной работы не может найти файл (и указан путь этого файла)
Я начитался в инете, пошел решать проблему, пытался разными способами убрать установщик, при перезагрузке он сразу появлялся и снова мазолил глаз
В итоге мои действия :
1. В реестре windows, удалял в строке которая я как понял отвечает за запуск, все что связано с компассом
2. Снял автозагрузку в диспетчере задач
3. В ручную удалял компаса с дисков
4. Скачал у какого то чувака на ютюбе у которого была похожая проблема, программу которая называется Microsoft install , запустил с помощью нее удаление, прошло пол часа, все висело, затем я перегрузил компьютер и расстроился
И на данный момент у меня при запуске вылезает снова установщик windows , комп упал капитально, троит, с чудом могу входить в диспетчер задач и пропали снизу значки

Финальная попытка, захожу через безопасный режим — все так же (((((
Ниже приложу фотку уже как щас все выглядит через безопасный
Очень прошу помогите решить эту маленькую проблемку

Windows 10 users have run into an issue with an item called Windows Modules Installer Worker consuming a large amount of CPU power on their device. It often occupies more than 50% of your CPU resources, and in severe cases even jumps up to 100%. This leads to a slow computer and presents various risks such as overheating or damaged hardware.

Windows Modules Installer Worker

Don’t worry — the Windows Modules Installer Worker is not a virus or malware. It’s a completely safe process to have on your computer, however, it has issues. This article focuses on how you can fix the high CPU usage error and restore your computer to working order.

If you hear your computer’s fans spin up and feel it getting hotter for no apparent reason, check the Task Manager and you might see “Windows Modules Installer Worker” as the reason for the CPU issue your PC is experiencing. This process, also known as TiWorker.exe, is a part of the Windows operating system.

Here’s the important information you need to know about Windows Modules Installer Worker.

Jump to Section:

  • What is Windows Modules Installer Worker?
  • Is Windows Modules Installer Worker a virus or malware?
  • Why does Windows Modules Installer Worker Load my system CPU?
  • Can I Disable the Windows Modules Installer Worker?
  • Methods to Fix Windows Modules Installer Worker high CPU usage
  • Method 1. Remove the SoftwareDistribution folder
  • Method 2. Restart the Windows Update Service
  • Method 3. Use the Windows Update Troubleshooter
  • Method 4. Run the System File Checker (SFC scan)
  • Method 5. Use the DISM command
  • Method 6. Turn off Automatic Updates for Windows 10
  • Method 7. Change your Internet settings
  • Final Thoughts 

What is Windows Modules Installer Worker?

Windows update installer worker high cpu usage


Windows
 Module installer worker is an important PC tool that helps the PC to check the windows updates automatically. It is an essential tool if you want Windows to check for the updates automatically on your PC or laptop because it automatically runs while checking for, and installing, any Windows Updates.

Essentially, Windows Modules Installer Worker (or TiWorker.exe) is a Windows Update Service. It looks for newly available Windows system updates and installs them on your computer. Whenever your system automatically looks for updates or you manually start a search for updates, this process will be running.

Whenever users notice sudden slowdowns and open the Task Manager to see what’s going on, they may see the Windows Modules Installer Worker consuming up to 100% CPU usage. This is why some users relate the Windows Update Installer worker with CPU usage issues while the tool is looking for available updates.

Is Windows Modules Installer Worker a virus or malware?

some users, when they notice Windows modules installer worker high CPU usage or modules installer worker high disk usage, they may think it is a virus. 

No, it is not a malware or virus. 

Windows modules installer worker is just an essential part of the Windows system that is used for Windows Updates. So, you don’t need to worry about it. If still, you are worried about the same, then you can run any of the virus scans using a quality antivirus solution or use the help of a windows defender.

Why does Windows Modules Installer Worker Load my system CPU?

The high CPU usage often occurs due to the constant search of updates by the Windows Modules Installer Worker. In Windows, the OS plays a preeminent role. Usually, updates and upgrades are set to be installed at night — when the PC is inactive. But in some of the cases, when the system is turned off at night, the only solution is for the updates to download and install the updates at day time or when your PC is active.

In some rare cases, Windows modules installer worker high CPU usage occurs when the RAM is loaded or because of outdated PC drivers. This can happen when you manually or automatically search for the updates of Windows 10 or install them. Most of the time, it also occurs then when servicing a laptop or PC.

Another common question is how long there is a high activity of the modules installer worker process? There’s is no correct answer for this. You may see it until the process is complete or until the next Windows start. 

However, if you either see that the TiWorker.exe process causes a load of 80—100% for an hour, two, or more, then, first of all, try to reboot your PC or laptop. Let the system reboot easily, then wait for about 5 minutes and observe the activity of the installer process. Usually, after a restart, the action/activity of the Windows modules installer worker process is significantly reduced.

Read: How to Fix Sedlauncher.exe Full Disk Usage on Windows 10

Can I Disable the Windows Modules Installer Worker?

In the course of your quest for a solution for the Windows Modules installer worker’s high CPU usage, you may encounter some advice recommending that you should disable it. Yes, you can disable the Windows Modules Installer worker system service. But this will prevent Windows from installing updates properly, and you shouldn’t do it.

It is important to always keep your Windows OS up to date. 

So, it is best to just bite the bullet and allow the TiWorker.exe process to occasionally do its thing despite its high CPU or high disk usage. This is just how Windows installs updates work, and it’s for your own good.

Methods to Fix Windows Modules Installer Worker high CPU usage

Use the following methods to fix Windows Modules Installer Worker — High CPU Usage

Method 1. Remove the SoftwareDistribution folder

The first thing you should try when attempting to troubleshoot this issue is deleting a specific folder called SoftwareDistribution. This folder is used by default to store new  updates in. When a corrupt file is stored here it can lead to a number of errors with the Windows Modules Installer Worker.

Deleting the folder has no risks, as Windows 10 will automatically generate a fresh folder with the same name when a new update is found. Please note that you may be required to have access to an administrator account to perform this method. 

  1. Temporarily disable the Windows Update service using these steps:
    1. Press the Windows + R keys on your keyboard to open the Run utility.
    2. Type in “services.msc” without the quotation marks, and click the OK button. The Services window will open up.
    3. Locate the Windows Update service. Right-click on it, then select Pause/Stop.
  2. Using the File Explorer, navigate to C:\Windows.

    windows

  3. Select the SoftwareDistribution folder right-click on it. Hit the Delete option from the context menu.

    software distribution

  4. Restart your device and test if your Windows Modules Installer Worker issue is fixed.

Method 2. Restart the Windows Update Service

windows update service

(Lifewire)

There’s a possibility that your Windows Modules Installer Worker is consuming a lot of resources because the update service isn’t running properly. To check and fix this, simply follow the steps below.

  1. Press the Windows + R keys on your keyboard. This is going to bring up the Run utility.
  2. Type in “services.msc” and click the OK button to launch Services. This might take a moment to fully load.
  3. Scroll down until you find the Windows Update service. Right-click on it and select the “Stop” option.
  4. Wait for 30 seconds.
  5. Right-click on the Windows Update service again and select “Start.” This should fully restart the service.

Method 3. Use the Windows Update Troubleshooter

Microsoft themselves have issued a designated tool to help fix issues with Windows updates. This tool is free and available for download to anyone, even without a Microsoft Account. All you have to do is simply run the tool and see if it’s able to identify and fix any errors.

  1. Download the Windows Update Troubleshooter. This download link is directly from Microsoft’s website, which is verified, trustworthy, and entirely safe.
  2. Open the WindowsUpdate.diagcab file you just downloaded by double-clicking on it. This will launch the troubleshooter window.
  3. Follow the on-screen instructions. If the troubleshooter is able to identify any issues, simply click on them to automatically apply a fix or get more information on your issue.

Note that the Windows Update Troubleshooter is not perfect. Even if it’s unable to find any errors on its own, you should continue with our methods until you find something that works to fix the Windows Modules Installer Worker High CPU error.

Method 4. Run the System File Checker (SFC scan)

scannow

The System File Checker is a tool available in Windows 10 by default. It’s also called an “SFC scan,” and it’s your quickest way to automatically fix corrupted system files and other issues.

Some users have reported that running this scan fixed the Windows Modules Installer Worker High CPU issue from happening again.

  1. Press the Windows + R keys on your keyboard. This is going to bring up the Run utility.
  2. Type in “cmd” and press the Ctrl + Shift + Enter keys on your keyboard. Doing so, you’re launching the Command Prompt with administrative permissions.
  3. If prompted, click Yes to allow the Command Prompt to make changes on your device.
  4. Once in the Command Prompt, type in the following command and press Enter to execute it: sfc /scannow
  5. Wait for the SFC scan to finish scanning your computer and repairing corrupt files. This may take a long time; ensure that you don’t close the Command Prompt or shut your computer down.
  6. Restart your device after the scan is complete.

Method 5. Use the DISM command

The DISM tool allows you to identify and fix corruption issues with your system by simply running commands in the Command Prompt application. It checks for corruption system-wide and automatically attempts to restore damaged or missing files.

  1. Press the Windows + R keys on your keyboard. This is going to bring up the Run utility.
  2. Type in “cmd” and press the Ctrl + Shift + Enter keys on your keyboard. Doing so, you’re launching the Command Prompt with administrative permissions.
  3. If prompted, click Yes to allow the Command Prompt to make changes on your device.
  4. Once in the Command Prompt, you need to start the DISM scan which will run and look for issues system-wide. Type in the following command and press Enter to execute it: DISM.exe /Online /Cleanup-image /Scanhealth.
  5. Next, you need to execute a command to fix any issues found on your system. Simply type in the following line and press Enter again: DISM.exe /Online /Cleanup-image /Restorehealth
  6. Wait for the process to finish. Upon completion, close the Command Prompt window and restart your device.

Method 6. Turn off Automatic Updates for Windows 10

turn off automatic updates

(Lifewire)

As the Windows Modules Installer Worker is part of Windows Update, you may try to disable automatic updates to fix the high CPU usage. This can be done by following the steps below.

  1. Press the Windows + I keys on your keyboard to open the Settings application. You can also open Settings from the Start menu by clicking on the gear icon.
  2. Click on Update & Security.
  3. Select Windows Update from the menu in the left panel.
  4. Click on Advanced Options.
  5. Select how long you want to pause updates by using the drop-down menu.

You can disable updates for 35 days at a time — make sure to repeat these steps every month to ensure you don’t get automatic updates. If you want to permanently disable Windows 10 updates, make sure to read our article on How to Disable Windows 10 Updates.

Method 7. Change your Internet settings

Case 1. You have a Wi-Fi connection

  1. Press the Windows + I keys on your keyboard to open the Settings application. You can also open Settings from the Start menu by clicking on the gear icon.
  2. Click on Network and Internet.
  3. Open the Wi-Fi tab using the menu in the left-side panel.
  4. Select your current Wi-Fi network.
  5. Scroll down to the Metered connection section and turn on the Set as metered connection option for the Wi-Fi network.

Case 2. You have an Ethernet connection

  1. Press the Windows + R keys on your keyboard. This is going to bring up the Run utility.
  2. Type in “regedit” without the quotation marks and press the OK button. Doing so will launch the Registry Editor in a new window.
  3. Navigate to the following key: HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindows NTCurrentVersionNetworkListDefaultMediaCost
  4. Right-click on the DefaultMediaCost folder and select Permissions…

    default media cost

  5. Click on the Add… button. Type your username into the Enter the object names to select field and click Check Names.

    object names

  6. Click the OK button.
  7. Select the user you just added and tick on the Allow square in the Full Control row. Click the OK button to close this window and return to the Registry Editor.

  8. Double-click on the Ethernet value in the DefaultMediaCost folder, and make sure the Data value is set to 2.

    data values

  9. Click the OK button and restart your computer.

Final Thoughts 

We hope that this article was able to help you answer «what is Windows modules installer worker» and fix the Windows Modules Installer Worker high CPU usage on Windows 10. If you run into similar issues in the future, don’t be afraid to return to our website and help center. You will find a solution. 

One More Thing

Would you like to receive promotions, deals, and discounts to get our products for the best price? Don’t forget to subscribe to our newsletter by entering your email address below! Receive the latest technology news in your inbox and be the first to read our tips to become more productive.

Read Next

> What is Windows Service Host SuperFetch, and how do you fix it
> What is Msmpeng.exe and Should You Remove It [New Guide]?
> Fixed: Hard Drive Not Showing Up on Mac

Понравилась статья? Поделить с друзьями:
0 0 голоса
Рейтинг статьи
Подписаться
Уведомить о
guest

0 комментариев
Старые
Новые Популярные
Межтекстовые Отзывы
Посмотреть все комментарии
  • Kyocera fs 4020dn драйвер windows 7
  • Bsod 0x000000ef windows 10
  • Где найти свойства папки в windows 10
  • При загрузке windows не найдены драйвера
  • Скорость копирования в windows в чем измеряется