Hello!
I just purchased a Logitech Cordless Keyboard and was very annoyed about the
Search-Key opening the Logitech Websearch. I wanted to configure it to open
the Windows Search for Files and Folders Dialog but this was not possible.
I'm now using a small VBScript to accomplish this. In case other people have
the same problem I include this script here.
Just put the script in a textfile and save it to your harddisk as
"search.vbs". Then simply configure your Search key to call a program and
point it to the scriptfile.
Maybe some people will find this useful
Sabine
'--BEGIN SCRIPT --
'// Invoke Windows Search for Files and Folders Dialog for use with Logitech
Search Key
dim objShell
set objShell = CreateObject("Shell.Application")
objShell.ShellExecute "", "", "", "find", 1
set objShell = nothing
'--END SCRIPT --