From 607fbe6b6366b2311e80877fc30e39aa8b921b28 Mon Sep 17 00:00:00 2001 From: capntack Date: Wed, 14 Aug 2024 21:05:56 -0500 Subject: [PATCH] Added Windows Search command --- cmd-commands.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/cmd-commands.md b/cmd-commands.md index 7569e39..88ba410 100644 --- a/cmd-commands.md +++ b/cmd-commands.md @@ -28,6 +28,24 @@ rd /s /q c:\$Recycle.Bin
+### Delete Windows Search db + +Run in an elevated Command Prompt: + +``` +net stop "Windows Search" +``` + +``` +del %PROGRAMDATA%\Microsoft\Search\Data\Applications\Windows\Windows.edb +``` + +``` +net start "Windows Search" +``` + +
+ ### SFC & DISM Commands The following commands will repair/replace corrupted/missing system files, as well as clear up disk space. They must all be ran in an elevated Command Prompt: