If you have ever opened Task Manager or the Windows Services console and noticed a process called Andrea RT Filters Service (or AERTFilters, sometimes shown as AERTSr64.exe), you are not alone. This background service appears on many Dell, HP, and Lenovo PCs equipped with Realtek audio hardware. This guide explains exactly what it is, why it is running on your computer, whether it is safe, what impact it has on performance, and how to disable or remove it if you choose.
What Is Andrea RT Filters Service?
Andrea RT Filters Service is a Windows service that provides audio enhancement and noise cancellation for microphones on systems with Realtek audio chipsets. It is developed by Andrea Electronics Corporation, a company that specializes in digital audio signal processing and noise reduction technology.
The “RT” in the name stands for Realtek, distinguishing it from the older Andrea ST Filters Service that targeted SigmaTel and IDT audio chipsets. Andrea Electronics licenses its noise cancellation technology to audio chipset manufacturers, who bundle it with their drivers as a value-added feature.
How It Works
The Andrea RT Filters Service operates as a background audio processing layer between your microphone hardware and the Windows audio subsystem. Its core functions include:
- Active Noise Cancellation (ANC): Reduces ambient background noise picked up by the microphone during calls or recordings.
- Beam Forming: On systems with multiple microphones (common in modern laptops), it focuses audio capture in a specific direction to improve voice clarity.
- Echo Cancellation: Prevents feedback loops between speakers and microphones during voice or video calls.
- Digital Signal Processing (DSP): Applies advanced audio filters to improve overall microphone input quality, including automatic gain control and frequency equalization.
File Locations
The service executable and related files are typically found in one of these locations:
C:\Program Files\Realtek\Audio\HDA\AERTSr64.exe (64-bit Realtek HD Audio)
C:\Program Files\Realtek\Audio\HDA\AERTFilters.exe (Realtek HD Audio variant)
C:\Windows\System32\AERTSr64.exe (system-level installation)
C:\Program Files\Realtek\AERTFilters\AERTFilters.exe (standalone installation)
Service Details in Windows
You can view the service properties by opening services.msc:
| Property | Value |
|---|---|
| Service Name | AERTFilters |
| Display Name | Andrea RT Filters Service |
| Startup Type | Automatic |
| Status | Running |
| Log On As | Local System |
| Executable | AERTSr64.exe or AERTFilters.exe |
| Description | Andrea RT Filters Service (or may be blank) |
Why Does It Appear on My Computer?
Andrea RT Filters Service is preinstalled by the computer manufacturer as part of the Realtek audio driver package. You did not install it yourself. It is bundled with the audio drivers for the following brands:
- Dell laptops and desktops with Realtek HD Audio (Inspiron, Latitude, XPS, Optiplex series)
- HP (Hewlett-Packard) machines manufactured from approximately 2012 onward
- Lenovo ThinkPad and IdeaPad models with Realtek audio
- Acer and ASUS systems with certain Realtek audio configurations
- Any system where you manually installed Realtek HD Audio drivers that include Andrea filters
The service starts automatically at boot and runs in the background regardless of whether you are actively using a microphone. It loads into memory and remains idle until microphone input is detected.
Is It Safe?
Yes, Andrea RT Filters Service is a legitimate and safe service. It is not malware, spyware, or adware. However, as with any executable, you should verify its authenticity to rule out malware disguising itself with a similar name.
How to Verify the Service Is Legitimate
-
Check the file location: The executable should be in
C:\Program Files\Realtek\orC:\Windows\System32\. If it is located in a temp folder, user profile directory, or other unusual location, investigate further. -
Check the digital signature:
- Right-click the executable file and select Properties.
- Go to the Digital Signatures tab.
- The signer should be Andrea Electronics, Realtek Semiconductor, or your PC manufacturer (Dell, HP, Lenovo).
-
Scan with antivirus: If you have any doubt, run a full scan with your antivirus software or upload the file to an online scanner like VirusTotal.
-
Check the service path using PowerShell:
Get-WmiObject Win32_Service | Where-Object {$_.Name -like "*AERT*"} |
Select-Object Name, DisplayName, PathName, StartMode, State
This command displays the exact path, startup mode, and current state of the service, allowing you to confirm it is running from a legitimate location.
Performance Impact
Under normal operating conditions, Andrea RT Filters Service has minimal performance impact:
| Resource | Typical Usage |
|---|---|
| CPU | 0-1% (idle), 1-3% (active microphone) |
| Memory (RAM) | 3-10 MB |
| Disk I/O | Negligible |
| Network | None (fully local processing) |
However, there are scenarios where it can cause issues:
- Driver conflicts: Installing third-party audio drivers or audio enhancement software alongside the Realtek drivers can cause elevated CPU usage or audio glitches.
- Outdated drivers: Very old Realtek driver versions may not be optimized for newer Windows versions (especially after major Windows updates).
- Corrupted installation: A partial or corrupted driver installation can cause the service to behave erratically or consume excessive resources.
- Multiple audio enhancement services: Running both Andrea RT Filters and another audio enhancement service simultaneously can lead to conflicts.
Diagnosing Performance Issues
If you suspect the service is causing problems, use these commands to investigate:
# Check the service status and resource usage
Get-Process -Name "AERTSr64", "AERTFilters" -ErrorAction SilentlyContinue |
Select-Object Name, CPU, WorkingSet64, StartTime
# Check Windows Event Log for audio-related errors
Get-EventLog -LogName System -Source "*audio*", "*Realtek*" -Newest 20 |
Format-Table TimeGenerated, EntryType, Message -Wrap
You can also use Task Manager or Resource Monitor (resmon.exe) to observe CPU and memory usage in real time while the service is running.
How to Disable Andrea RT Filters Service
If you have determined that you do not need the microphone noise cancellation features, or if the service is causing problems, you can safely disable it using any of the following methods.
Method 1: Windows Services Console
- Press Win + R, type
services.msc, and press Enter. - Scroll down to Andrea RT Filters Service.
- Double-click it to open the properties.
- Change Startup type to Disabled.
- Click Stop to stop the currently running instance.
- Click OK to save.
Method 2: MSConfig (System Configuration)
- Press Win + R, type
msconfig, and press Enter. - Go to the Services tab.
- Find Andrea RT Filters Service in the list.
- Uncheck the box next to it.
- Click Apply and then OK.
- Restart when prompted.
Method 3: Command Line
:: Stop the service immediately
net stop AERTFilters
:: Disable the service from starting at boot
sc config AERTFilters start= disabled
Method 4: PowerShell
# Stop and disable the service
Stop-Service -Name "AERTFilters" -Force
Set-Service -Name "AERTFilters" -StartupType Disabled
# Verify the change
Get-Service -Name "AERTFilters" | Select-Object Name, Status, StartType
Re-enabling the Service
If you later need the noise cancellation features (for example, you start using the built-in microphone for video calls), you can re-enable it:
Set-Service -Name "AERTFilters" -StartupType Automatic
Start-Service -Name "AERTFilters"
How to Completely Remove Andrea RT Filters Service
If you want to remove the service entirely rather than just disabling it, you can uninstall the associated audio driver package:
- Open Control Panel > Programs and Features (or Apps & Features in Windows 10/11 Settings).
- Look for entries such as:
- Realtek High Definition Audio Driver
- Realtek HD Audio
- Andrea RT Filters
- Andrea Audio Filters
- Uninstall the Andrea-specific entry if it appears separately, or uninstall and reinstall the Realtek driver without the Andrea component.
- Restart your computer.
Important: Uninstalling the full Realtek audio driver package will remove your audio driver entirely. Windows will typically install a generic High Definition Audio driver via Windows Update, which provides basic audio functionality without the Andrea noise cancellation features.
If you only want to remove the Andrea service but keep the Realtek audio driver, you can delete the service registration after stopping it:
:: WARNING: This permanently removes the service registration
net stop AERTFilters
sc delete AERTFilters
Andrea ST vs Andrea RT: What Is the Difference?
Both services come from Andrea Electronics and provide the same core noise cancellation functionality, but they target different audio hardware:
| Feature | Andrea ST Filters Service | Andrea RT Filters Service |
|---|---|---|
| Audio Chipset | SigmaTel / IDT | Realtek |
| Service Name | AESTFilters | AERTFilters |
| Executable | AESTSr64.exe / AESTFilters.exe | AERTSr64.exe / AERTFilters.exe |
| Common OEMs | HP, Compaq (older models) | Dell, HP, Lenovo (newer models) |
| Era | ~2006-2014 | ~2010-present |
| Core Function | Microphone noise cancellation | Microphone noise cancellation |
| Windows Versions | XP, Vista, 7 | 7, 8, 10, 11 |
| Disable Method | Same (services.msc / PowerShell) | Same (services.msc / PowerShell) |
The key difference is the underlying audio chipset. SigmaTel was a standalone audio chip company that was acquired by Freescale Semiconductor in 2008. As Realtek became the dominant PC audio chipset manufacturer, Andrea Electronics partnered with Realtek to provide the same noise cancellation technology under the “RT” branding. If you have a PC manufactured after 2012, you are far more likely to see the RT variant than the ST variant.
Best Practices for Managing Windows Services
The Andrea RT Filters Service is a good example of why it is valuable to periodically audit the services running on your system. Here are general best practices:
- Audit regularly: Use
services.mscor PowerShell (Get-Service) to review all running services periodically. - Research before disabling: Always look up a service before disabling it. Some services have dependencies that may cause unexpected behavior.
- Disable rather than delete: When in doubt, disable a service first and test your system for a few days before permanently removing it.
- Keep drivers updated: If you choose to keep the service, ensure your Realtek audio drivers are up to date from the manufacturer support page.
- Document changes: Keep a record of which services you have disabled so you can reverse the change if needed.
- Use Windows Defender or antivirus: Scan unknown services and processes to rule out malware impersonating legitimate service names.
# List all running services sorted by memory usage
Get-Process | Sort-Object WorkingSet64 -Descending |
Select-Object -First 20 Name, @{N="Memory(MB)";E={[math]::Round($_.WorkingSet64/1MB,2)}}, CPU
Summary
- Andrea RT Filters Service (
AERTFilters/AERTSr64.exe) is a legitimate audio enhancement service for Realtek audio chipsets. - It provides microphone noise cancellation, beam forming, echo cancellation, and DSP audio filtering.
- It is preinstalled by OEMs such as Dell, HP, Lenovo, Acer, and ASUS as part of the Realtek audio driver package.
- The service is safe and is not malware. Verify by checking the file location and digital signature.
- It has minimal performance impact (0-1% CPU, 3-10 MB RAM) under normal conditions.
- You can safely disable it without affecting core audio playback. Only microphone noise cancellation features will be lost.
- It differs from Andrea ST Filters Service only in the target audio chipset (Realtek vs SigmaTel/IDT).