Script to make Microsoft Knowledge Base searches easier
I use Google almost every day to search the Microsoft Knowledge Base (KB) for technical information as I usually find Google more helpful than TechNet's own search feature. But I get tired having to type "site:support.microsoft.com" into Google's search box every time I want to narrow down my search to support.microsoft.com.
So finally I decided to do something about it instead of complaining all the time. The result is this short script that I wrote that takes the keywords or phrase I type and creates a Google search URL that restricts the search to support.microsoft.com:
Dim strKeyword, objShell
Set objShell = CreateObject("WScript.Shell")
strKeyword = InputBox("Enter keyword:")
strKeyword = "http://www.google.com/search?hl=en&q=" & strKeyword & _
"+site%3Asupport.microsoft.com&meta="
If Len(strKeyword)>0 Then
objShell.Run """c:\Program Files\Internet Explorer\iexplore.exe"" " & StrKeyword
End if
Save this script as GoogleKB.vbs and keep it on your desktop. When you double-click on it, an input box opens and you can type one or more keywords or even a phrase in double quotes. Then press Enter and Internet Explorer will open and use Google to search the Knowledge Base for the words or phrase you specified.
Enjoy!
Symantec Backup Exec 12 and Backup Exec System Recovery 8 deliver industry leading Windows data protection and system recovery. Download this whitepaper to find out the top reasons to upgrade and how to get continuous data protection and complete system recovery.
Data and system loss — from a hard drive failure, malicious attack, natural disaster, or simple human error — can happen anytime. Don’t leave your business vulnerable. Make sure you have a secure recovery strategy in place. Symantec's latest backup and system recovery technology can efficiently restore critical applications, individual emails and documents and even restore your entire system in minutes in the event of a loss.
Businesses face a growing challenge to ensure that the IT environment is properly protected. Backup Exec 12 integrates with other applications in the Symantec family of products, to complement your current data protection strategy, keep your data securely backed up and make it recoverable when you need it most.
Crimeware: Understanding New Attacks and Defenses
By Markus Jakobsson, Zulfikar Ramzan
Published Apr 6, 2008 by Addison-Wesley Professional. Part of the Symantec Press series.
Enter now! | Official rules | Sample chapter
Securing VoIP Networks: Threats, Vulnerabilities, and Countermeasures
By Peter Thermos, Ari Takanen
Published Aug 1, 2007 by Addison-Wesley Professional.
Enter now! | Official rules | Sample chapter







