Atlas Playbook – Edge Disable Failure & High RAM Usage from Windows Search (25H2) #1537
Unanswered
Sivatech24
asked this question in
Development
Replies: 2 comments 1 reply
-
❗ Commands I Used After Facing the ErrorI encountered the following error while running the Atlas Playbook Edge disable script: To overcome the issue, I used the following commands and methods: 🛑 Disable Windows Search (WSearch)sc stop "wsearch"
sc config "wsearch" start=disabled🔁 Re-enable Windows Search (if required)sc config "wsearch" start=delayed-auto
sc start "wsearch"❌ Force Kill & Remove Microsoft Edge@echo off
echo Stopping Microsoft Edge processes...
taskkill /F /IM msedge.exe /T
echo Uninstalling Microsoft Edge...
PowerShell -Command "Get-AppxPackage -AllUsers Microsoft.MicrosoftEdge | Remove-AppxPackage -ErrorAction SilentlyContinue"
PowerShell -Command "Get-AppxPackage -AllUsers Microsoft.MicrosoftEdge.ShellExperienceHost | Remove-AppxPackage -ErrorAction SilentlyContinue"
PowerShell -Command "Get-AppxPackage -AllUsers Microsoft.MicrosoftEdge.Stable | Remove-AppxPackage -ErrorAction SilentlyContinue"
echo Removing Edge folders...
rmdir /s /q "%LOCALAPPDATA%\Microsoft\Edge\User Data"
rmdir /s /q "%APPDATA%\Microsoft\Edge\User Data"
rmdir /s /q "%PROGRAMFILES%\Microsoft\Edge\Application"
rmdir /s /q "%PROGRAMFILES(x86)%\Microsoft\Edge\Application"
rmdir /s /q "%SYSTEMROOT%\SystemApps\Microsoft.MicrosoftEdge_*"
echo Restarting the computer...
shutdown /r /t 5📝 Registry Override UsedWindows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Control\FeatureManagement\Overrides\8\1694661260]
"EnabledState"=dword:00000001
"EnabledStateOptions"=dword:00000000
"Variant"=dword:00000000
"VariantPayload"=dword:00000000
"VariantPayloadKind"=dword:00000000 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
🔧 Discussion: Atlas Playbook – Edge Disable Failure & High RAM Usage from Windows Search (25H2)
Hello everyone,
I’m currently facing some issues with the Atlas Playbook on Windows 25H2, especially after the recent playbook updates and Windows updates. I wanted to open this discussion to see if others are facing the same problems and hopefully get some insights.
1. Edge Disable Script Error (Python / PowerShell)
When running the playbook script to remove or disable Microsoft Edge, I get the following traceback:
This PowerShell command fails to translate the user account SID, which breaks the script.
This behavior started after the latest Windows 25H2 update, so it seems something changed in PowerShell or permission handling.
2. Windows Search (WSearch) Not Disabling Properly + High RAM Usage
The playbook tries to disable Windows Search using:
But after recent updates:
Trying to revert:
…but the behavior is still inconsistent.
sc stopor disabling via registry.This results in:
❓ Is Anyone Else Seeing This?
I want to know if:
📌 System Details
sc stopand continuing to consume RAM❗ Commands I Used After Facing the Error
I encountered the following error while running the Atlas Playbook Edge disable script:
To overcome the issue, I used the following commands and methods:
🛑 Disable Windows Search (WSearch)
🔁 Re-enable Windows Search (if required)
❌ Force Kill & Remove Microsoft Edge
📝 Registry Override Used
Any help, insights, or temporary workarounds would be appreciated.
Thanks! 🙏
Beta Was this translation helpful? Give feedback.
All reactions