Home » Questions » Computers [ Ask a new question ]

How do I replace the stupid Windows XP dog assistance search with the classic Windows 2000 search?

How do I replace the stupid Windows XP dog assistance search with the classic Windows 2000 search?

How do I get search in Windows XP back to the way it was in Windows 2000, in one step?

Asked by: Guest | Views: 305
Total answers/comments: 2
bert [Entry]

"You can download Windows XP Powertoys and disable the search, but here's an easier way:

Copy this text into a text file: disable-search.reg (Only the extension matters)

Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\CabinetState]
""Use Search Asst""=""no""

Then double-click the .reg file and say ""Yes"" when Windows asks you if you want to enter that into the registry.

As an alternative that Michael Kohne pointed out, you can simply delete the ""Use Search Asst"" key entirely.

This will restore Windows 2000 classic search for the current user only."
bert [Entry]

"I prefer using the command line:

Open cmd.exe (Start > Run > ""cmd""), and enter:

reg add HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\CabinetState /v ""Use Search Asst"" /t REG_SZ /d ""no"" /f

To get the dog back (and return registry to original state), enter:

reg delete HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\CabinetState /v ""Use Search Asst"" /f"