Skip to main content

"Search for word or phrase in a file" - Windows flaw

Microsofts MSN property is far behind in online search; taking a far 3rd position. To further demonstrate how far behind Microsoft is in Search, they're own OS fails to adequately search documents.

When performing a search for "A word or phrase in a file", the feature has had several flaws. A big issue is that Windows outright ignores files is doesn't recognize. So unless you're looking for a simple Office document, you're out of luck.

There is a work-around, but it takes considerable steps, here are two potential methods:

a)
1.Click Start, and then click Search (or point to Search, and then click For Files or Folders).
2.Click Change preferences, and then click With Indexing Service (for faster local searches).
3.Click Change Indexing Service Settings (Advanced). Note that you do not have to turn on the Index service.
4.On the toolbar, click Show/Hide Console Tree.
5.In the left pane, right-click Indexing Service on Local Machine, and then click Properties.
6.On the Generation tab, click to select the Index files with unknown extensions check box, and then click OK.
7.Close the Indexing Service console.

or B)
Set the FilterFilesWithUnknownExtensions DWORD value to 1 in the following registry key:
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\ContentIndex


ASP file searching STILL fails


Even beyond that, Windows may need explicit instructions to search specific file types. In order to change that behavior, the default handler of a specific file type needs to be set:

HKEY_CLASSES_ROOT\.asp\PersistentHandler

to {Default} REGSZ value of:
{5E941D80-BF96-11CD-B579-08002B30BFEB}

Note that a reboot will be needed after this step.

Comments

Popular posts from this blog

VB.Net code to control mouse movement and click

VB.Net code to perform mouse movements and clicks. Include references at the top of the class code file to Windows interface libraries: Public Declare Auto Function SetCursorPos Lib "User32.dll" (ByVal X As Integer, ByVal Y As Integer) As Integer Public Declare Auto Function GetCursorPos Lib "User32.dll" (ByRef lpPoint As Point) As Integer Public Declare Sub mouse_event Lib "user32" Alias "mouse_event" (ByVal dwFlags As Integer, ByVal dx As Integer, ByVal dy As Integer, ByVal cButtons As Integer, ByVal dwExtraInfo As Integer) Some fixed constant values will be needed, so include these as basic names: Public Const MOUSEEVENTF_LEFTDOWN = &H2 Public Const MOUSEEVENTF_LEFTUP = &H4 Public Const MOUSEEVENTF_MIDDLEDOWN = &H20 Public Const MOUSEEVENTF_MIDDLEUP = &H40 Public Const MOUSEEVENTF_RIGHTDOWN = &H8 Public Const MOUSEEVENTF_RIGHTUP = &H10 Public Const MOUSEEVENTF_MOVE = &H1 This ...

Google's Automated Search Query Capture

It's known that Google takes preventative measures to reduce automated use of their search engine. In fact, Googles terms of service restrict the use of automated queries. Normally human users with real browsers will not be suspect of such use and thereby should not trigger firewall rules that detect queries that appear to be automated. However I found myself in just that position. After running several varied queries, I came back to running the repeating a past query (through the browser drop down query history) and received the following : HTML Source Interesting to note is that the page response header is a 503 error code . I suspect this was triggered by my complex query, retrieving multiple pages or results, and repeated usage in a short period. Google knowledge base on this topic suggests that users that have this problem may also have a virus or other spyware on their computer or another in the network.

svchost.exe Hangs and Automatic Update hangs

Here is a Windows problem which had me spun for a few hours on two occasions. Symptoms Overview: The system is slow and svchost.exe is taking 50%+ CPU (or 100% CPU on a non-HT machine). Windows update (http://windowsupdate.microsoft.com/) hangs . See below for detailed diagnoses . Cause: A previous Windows Update was prematurely terminated. Windows Update is attempting to failing to recover the session and the partial downloads. It is stuck in a loop in the recovery and determining where to continue the downloads. Solution: Stop and terminate the Automatic Updates (svchost.exe) process . Delete all files and folders in C:\Windows\SoftwareDistribution). Windows Update will automatically obtain all the files it needs later. Start the "Automatic Update" service. Retrieve the latest Windows Updates from Microsoft. You should no longer have the CPU usage problem with svchost.exe. Detailed diagnoses - Confirming the symptoms 1) Turn off Automatic Updates and BITS. Do this from...