Home windows computer solutions Intel RST Service Is Not Running — Step-by-Step Fix 2026

Intel RST Says "Service Not Running" — Here's How to Fix It

Ethan CarterEthan Carter
|Last Updated: March 14, 2026

Seeing the Intel RST 'service not running' notification can feel alarming, but it's usually fixable in a few minutes.
This guide walks through every reliable fix — from restarting the service to reinstalling the driver.
If driver issues caused unexpected file loss, Ritridata can help recover deleted or inaccessible files from Windows drives.

When Intel RST service is not running, Windows displays a system tray notification from the Intel Rapid Storage Technology application indicating that its background service has stopped. In most cases the error does not prevent drives from functioning, but it can affect RAID monitoring and drive health alerts. The fixes below cover every reliable resolution for Windows 10 and Windows 11.

Part 1. What Is the Intel RST Service?

Intel Rapid Storage Technology (RST) is a storage management driver suite developed by Intel. It handles communication between the operating system and SATA or NVMe drives attached to Intel storage controllers, and it powers features such as RAID management, drive health monitoring, and Optane memory caching.

The background service — typically named Intel(R) RST PME Service with the process name iaStorDataMgrSvc — runs silently in the background. When it stops or fails to start, the RST system tray application displays the "service not running" warning. On most non-RAID consumer systems, Windows continues to operate normally through its built-in AHCI and NVMe drivers even when the RST service is inactive.

RST ComponentNameRole
Low-level driveriaStorV.sys / iaStor.sysControls physical drive communication
Background serviceiaStorDataMgrSvcMonitoring, RAID management, notifications
Tray applicationIntel RST UIDisplays status, provides user configuration
Optane moduleiastoreoptimus.dllOptane memory management (if applicable)

💡 Tip: If your drives appear normally in File Explorer and the PC boots without errors, the low-level storage driver is functional. The "not running" message typically points to the monitoring service layer only, not to a hardware problem.

Part 2. Why Does the Intel RST Service Stop?

Understanding the root cause helps you apply the right fix. These are the most common triggers:

  • Windows Update replacing the driver — Cumulative updates sometimes overwrite Intel RST components with Microsoft inbox drivers, leaving the RST service in a broken state.
  • Corrupted RST installation — An interrupted update or software conflict can corrupt the RST service registration in the Windows registry.
  • Startup type changed to Manual or Disabled — Group policy changes, third-party optimizers, or manual edits can prevent the service from launching at boot.
  • Incompatible RST version — Installing an RST package not designed for your chipset generation causes the service to fail on start.
  • BIOS SATA mode change — Switching between AHCI and RAID mode in UEFI/BIOS invalidates the driver that was installed for the previous mode.
  • System file corruption — Underlying Windows file corruption can prevent any service binary from loading correctly.

🗣️ r/techsupport user: "After every major Windows update, the Intel RST tray comes back saying 'service not running'. Reinstalling the RST app from Intel's site always clears it for me."

CauseSymptom PatternRecommended Fix
Windows Update conflictError appears right after updateReinstall RST from Intel's site
Startup type disabledPersists after every rebootSet service to Automatic in services.msc
Corrupted installationService fails even after manual startFull uninstall → clean reinstall
BIOS mode changeDrive may show RAW or disappearRevert BIOS setting or reinstall correct driver
Incompatible RST versionService starts then immediately stopsDownload chipset-matched RST version
System file corruptionMultiple services fail simultaneouslyRun sfc /scannow first

Part 3. Fix 1 — Restart the Intel RST Service via Services.msc

This is the fastest fix for a service that stopped unexpectedly:

  1. Press Win + R, type services.msc, and press Enter.
  2. Scroll down to Intel(R) Rapid Storage Technology or Intel(R) RST PME Service.
  3. Right-click the entry → Properties.
  4. Change Startup type to Automatic.
  5. Click Start under Service status.
  6. Click Apply, then OK.
  7. Reboot and observe whether the tray notification clears.

If the service fails to start and shows an error code, note that code and look it up in Windows Event Viewer:

  1. Press Win + XEvent Viewer.
  2. Navigate to Windows Logs → System.
  3. Filter by the service name iaStorDataMgrSvc to find related errors.

💡 Tip: Error code 1053 ("The service did not respond to the start or control request in a timely fashion") often indicates a corrupted service binary. Proceed to Fix 2 if you see this code.

Part 4. Fix 2 — Reinstall the Intel RST Package

A clean reinstall resolves corruption and version mismatches in most cases:

  1. Open Control Panel → Programs → Programs and Features.
  2. Find Intel(R) Rapid Storage Technology in the list.
  3. Click Uninstall and complete the removal wizard.
  4. Reboot after uninstalling.
  5. Visit the Intel Driver & Support Assistant page or search Intel's download center for your chipset.
  6. Download the correct RST package for your Intel platform (7th gen or later for RST 15.x and above).
  7. Run the installer as Administrator and restart.

⚠️ Important: Always create a system restore point before modifying storage drivers. Go to Control Panel → Recovery → Configure System Restore → Create to capture a clean restore point. In the unlikely event the driver removal causes a boot issue, you can restore from Windows Recovery Environment.

After reinstalling, confirm in services.msc that the service status shows Running and the startup type is Automatic.

Part 5. Fix 3 — Roll Back the Intel RST Driver

If the error appeared immediately after a Windows Update, rolling back the storage controller driver often resolves the conflict:

  1. Press Win + XDevice Manager.
  2. Expand Storage controllers.
  3. Right-click the Intel SATA AHCI Controller or Intel VMD ControllerProperties.
  4. Click the Driver tab.
  5. If Roll Back Driver is available (not grayed out), click it and follow the prompts.
  6. Reboot.

If rollback is not available, use Update driver → Browse my computer for drivers → Let me pick from a list to manually select an older compatible driver from the cache.

🗣️ r/Windows11 user: "Rolling back the Intel RST storage controller driver was the only thing that fixed the 'not running' error for me — it came back with a Windows quality update and the rollback cleared it immediately."

Part 6. Fix 4 — Run System File Checker

Underlying Windows file corruption can prevent any service from loading. The built-in System File Checker repairs corrupted system files:

  1. Press Win + S, type cmd, and right-click Command PromptRun as administrator.
  2. Enter: sfc /scannow
  3. Wait for the scan to complete (may take 10–15 minutes).
  4. If issues are found and repaired, reboot and recheck the RST service.

For deeper corruption that sfc cannot fix, follow up with:

DISM /Online /Cleanup-Image /RestoreHealth

Reboot after DISM completes, then run sfc /scannow once more.

Part 7. Fix 5 — Disable Intel RST If You Do Not Use RAID

For consumer laptops and desktops that do not use RAID arrays or Optane memory, disabling the Intel RST service is a safe and permanent solution to the notification:

  1. Open services.msc → locate the Intel RST service.
  2. Right-click → Properties → set Startup type to Disabled.
  3. Click Stop if the service is currently running.
  4. Click Apply and OK.
  5. Reboot.

Windows will continue using its built-in AHCI or NVMe drivers. Drive access, speed, and reliability are unaffected. The RST tray application may remain installed but will no longer raise the "service not running" alert.

💡 Tip: If you later decide to re-enable RST (for example, after adding an Optane module), return to services.msc, set startup type back to Automatic, and click Start.

Part 8. Recover Lost Files With Ritridata

Driver conflicts and BIOS SATA mode changes can occasionally cause a drive to appear as RAW or temporarily inaccessible, leading to unexpected file loss. If you lost files during a storage driver issue, Ritridata can scan Windows HDDs, SSDs, and external drives to locate and recover deleted or inaccessible files.

Step 1 — Select the drive/location

Step 2 — Run a safe scan

Step 3 — Preview and recover to another drive

FAQ

Q: Is it safe to disable the Intel RST service? For non-RAID systems, disabling the Intel RST service is generally safe. Windows uses its own built-in AHCI and NVMe drivers for drive access, and your files and drive performance are typically unaffected by disabling the monitoring service.

Q: Why does the Intel RST service keep stopping after every restart? Recurring stops often indicate a version mismatch between the installed RST driver and service binary, or an underlying Windows registry issue. A full uninstall and clean reinstall from Intel's official download page may resolve it.

Q: Will uninstalling Intel RST delete my files? No. Uninstalling the RST application does not delete files from your storage drives. It only removes the management software and service components.

Q: Can the Intel RST service cause a BSOD? In some cases, a corrupted or incompatible iaStor.sys or iaStorV.sys driver can contribute to blue screen errors with stop codes like INACCESSIBLE_BOOT_DEVICE. Reinstalling or rolling back the driver typically resolves driver-related BSODs.

Q: Does Intel RST support NVMe drives? RST version 15.x and later includes NVMe support for select Intel platforms. Older RST versions may not manage NVMe drives. On systems with NVMe-only storage, the RST service may not be required.

Q: What happens if I change SATA mode in BIOS while RST is installed? Switching from RAID to AHCI mode (or vice versa) while Windows is running can cause drives to become inaccessible on the next boot. Always research the implications of SATA mode changes before applying them, and back up data first.

Q: How do I know which version of Intel RST I have installed? Open Control Panel → Programs and Features, find the RST entry, and check the version column. Alternatively, run winver to identify your Windows build, then compare it against Intel's compatibility matrix on their download page.

References