Atlas Playbook – Edge Disable Failure & High RAM Usage from Windows Search (25H2) #1537
-
🔧 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. 2. Windows Search (WSearch) Not Disabling Properly + High RAM UsageThe playbook tries to disable Windows Search using: But after recent updates:
Trying to revert: …but the behavior is still inconsistent.
|
Beta Was this translation helpful? Give feedback.
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.
-
|
Such as digitalsoftwarekey website |
Beta Was this translation helpful? Give feedback.
Such as digitalsoftwarekey website