Which command is starting the windows search function?

G

Guest

I have the oppertunety to program som quick buttons on my keyboard. Does
anyone know how to find the exe file that starts the search function?
 
R

Ramesh, MS-MVP

There is not an .exe file. You can create a script to launch the Search
Companion though.

- - -
Set WshShell = CreateObject("Shell.Application")
WshShell.FindFiles
Set WshShell = Nothing
- - -

Copy the above code to Notepad, and save as "srch.vbs". Optionally, you can
move the script to the Quick Launch area for easy access, or configure the
keyboard buttons accordingly to launch the script ("wscript.exe srch.vbs")

--
Regards,

Ramesh Srinivasan, Microsoft MVP [Windows XP Shell/User]
Windows® XP Troubleshooting http://www.winhelponline.com


I have the oppertunety to program som quick buttons on my keyboard. Does
anyone know how to find the exe file that starts the search function?
 
D

Detlev Dreyer

Herr Ober said:
I have the oppertunety to program som quick buttons on my keyboard.
Does anyone know how to find the exe file that starts the search
function?

That's a function of Explorer.exe (Windows shell).
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top