Based on the domain memory-scanner.cc, this is almost certainly adware or a potentially unwanted program (PUP) installed on your computer.
Here is the breakdown of what is happening and how to fix it.
What is this?
The term "memory scanner" is commonly associated with game trainers, cheats, or "mod menus" for video games (like WeMod, Cheat Engine, or specific hacks for games like Roblox or GTA).
- The Cause: You likely recently installed a game cheat, a "cracked" program, or a free utility that bundled this adware.
- The Behavior: This adware uses the Microsoft Edge WebView2 runtime (which is installed on every Windows 11 PC) to display ads. It forces Edge to open a window to that specific domain to generate revenue for the software creator.
- The White Screen: The screen appears blank/white because the ad server is failing to load correctly or is being blocked by a firewall/antivirus, but the command to open the window is still running.
How to Fix It
Since this is likely being triggered by a program you installed, you need to find that program and remove it.
Step 1: Find the Culprit using Task Manager
This is the most effective way to stop it permanently.
- When the blank white popup appears, do not close it immediately.
- Press Ctrl + Shift + Esc to open Task Manager.
- Click on the Processes tab.
- Look for Microsoft Edge in the list. (You will likely see multiple instances of it).
- Hover your mouse over each Microsoft Edge process one by one.
- As you hover, the popup window on your desktop will become highlighted/bordered. This tells you which specific process is opening the popup.
- Right-click that specific process and select Open File Location.
Most likely it will take you to mshta.exe in system32 folder - don't delete this mshta.exe
This is a very important clue. Finding mshta.exe confirms exactly how this malware is operating.
mshta.exe is a legitimate Windows component ("Microsoft HTML Application") that allows Windows to run .hta files (HTML Applications). It is not the virus itself—the virus is simply abusing this tool to force open the popup.
Since the file path leads to a protected Windows folder, we cannot delete it. Instead, we need to find what is telling mshta.exe to open that website. This is almost always caused by a Scheduled Task created by the adware.
Here is the specific fix for this scenario:
Method 1: Check Task Scheduler (Most Likely Fix)
This is the #1 way these "memory scanner" popups persist. The adware creates a hidden task that wakes up, runs mshta.exe, and points it to that website.
- Press the Windows Key, type Task Scheduler, and open it.
- In the left pane, click on Task Scheduler Library.
- Look through the list of tasks in the center pane.
- Tip: Click the "Date" column header to sort by when they were last run. The task triggering the popup will likely have a "Last Run Time" that matches exactly when the popup appeared.
- Look for tasks with weird names, gibberish names, or names that try to look official but are signed by "Unknown" (e.g., "SystemUpdate," "DriverCheck," "ChromeUpdate").
- Double-click a suspicious task to open its properties.
- Click the Actions tab.
- This is the smoking gun: Look in the "Details" box. You are looking for a command that looks something like this:
mshta.exe http://memory-scanner.cc/popupormshta.exe vbscript:execute(...) - If you see
memory-scanner.cclisted there, you have found the culprit.
- Click OK to close the properties, then Right-click the task in the list and select Disable (or delete).
Instead of disabling the tasks, best to delete all the pervious and running tasks. (as I have deleted the tasks and all is working great at my end - no more memory-scanner.cc popups)
Method 2: Find the Trigger via Command Line
If you can't find it in Task Scheduler, let's see exactly what command is launching it.
- Open Task Manager (Ctrl + Shift + Esc).
- Click on the Processes tab.
- Find the
mshta.exeprocess that is running when the popup is active. - Right-click it and select Go to Details.
- In the Details tab, right-click the highlighted
mshta.exeand select Properties. - This is tricky in Windows 11, so alternatively:
- In the Details tab, right-click the column header (where it says Name, PID, etc.) and select Select Columns.
- Check the box for Command Line and click OK.
- Now look at the text in the "Command Line" column for
mshta.exe.- Does it show a long string of text or a URL?
- Sometimes this reveals a path to a .bat or .vbs file located in
C:\ProgramDataorAppData. If you see a file path there (e.g.,C:\Users\Name\AppData\Local\Temp\launch.bat), go to that location and delete that file.
- Sometimes this reveals a path to a .bat or .vbs file located in
- Does it show a long string of text or a URL?
- Now look at the text in the "Command Line" column for
- Check the box for Command Line and click OK.
- In the Details tab, right-click the column header (where it says Name, PID, etc.) and select Select Columns.
Method 3: Check Windows "Startup" Folder
Sometimes the malware places a script in the startup folder.
- Press Ctrl + R to open the Run box.
- Type
shell:startupand hit Enter. - A folder will open. If you see any files here (especially
.bat,.vbs, or.urlfiles) that you don't recognize, delete them.
Summary
Since you found mshta.exe, Method 1 (Task Scheduler- note this method worked well for me) is the strongest solution. The adware is essentially setting an alarm clock in Windows to wake up and annoy you with that popup. Disabling that specific task will stop it permanently.