PC Review


Reply
Thread Tools Rate Thread

how to assign "FIND" as shortcut key on MS keyboard

 
 
bent
Guest
Posts: n/a
 
      5th Jan 2007
I want to put "FIND" as a shortcut key on my MS keyboard.

The only path I can find is...."C:\xp\I386\FIND.EX_"

This does not work; is there any way to get FIND setup as a shortcut.

I tried clicking on PROPERTIES of FIND.EX_ and that gave only FIND.EX_

I am aware of Winkey/F, this will not work for the shortcut key.

I need the correct path to put in when I EDIT the settings for the
shortcut key.

Thanks

bent
 
Reply With Quote
 
 
 
 
Tom Porterfield
Guest
Posts: n/a
 
      5th Jan 2007
bent wrote:
> I want to put "FIND" as a shortcut key on my MS keyboard.
>
> The only path I can find is...."C:\xp\I386\FIND.EX_"
>
> This does not work; is there any way to get FIND setup as a shortcut.
>
> I tried clicking on PROPERTIES of FIND.EX_ and that gave only FIND.EX_
>
> I am aware of Winkey/F, this will not work for the shortcut key.
>
> I need the correct path to put in when I EDIT the settings for the
> shortcut key.


You should find "find.exe" at %windir%\system32\find.exe.
--
Tom Porterfield
 
Reply With Quote
 
Wesley Vogel
Guest
Posts: n/a
 
      5th Jan 2007
F3 will open Search for a file or folder.

Windows key + F will also open Search for a file or folder.

CTRL + Windows key + F will open Search for computers.

Both Search for a file or folder and Search for computers are run from
explorer.exe.

Find.exe is a command line command, you have to open a command prompt first
to use find.exe.

Start | Run | Type: cmd | Click OK.
---------------

C:\>find /?
Searches for a text string in a file or files.

FIND [/V] [/C] [/N] [/I] [/OFF[LINE]] "string" [[drive:][path]filename[
....]]

/V Displays all lines NOT containing the specified string.
/C Displays only the count of lines containing the string.
/N Displays line numbers with the displayed lines.
/I Ignores the case of characters when searching for the string.
/OFF[LINE] Do not skip files with offline attribute set.
"string" Specifies the text string to find.
[drive:][path]filename
Specifies a file or files to search.

If a path is not specified, FIND searches the text typed at the prompt
or piped from another command.
---------------

There are ways to use find.exe from the Run command, but I do not see the
point.

Ctrl + F will open Find in Notepad, MS Word, Internet Explorer and other
programs.

--
Hope this helps. Let us know.

Wes
MS-MVP Windows Shell/User

In news:OsK$(E-Mail Removed),
bent <(E-Mail Removed)> hunted and pecked:
> I want to put "FIND" as a shortcut key on my MS keyboard.
>
> The only path I can find is...."C:\xp\I386\FIND.EX_"
>
> This does not work; is there any way to get FIND setup as a shortcut.
>
> I tried clicking on PROPERTIES of FIND.EX_ and that gave only FIND.EX_
>
> I am aware of Winkey/F, this will not work for the shortcut key.
>
> I need the correct path to put in when I EDIT the settings for the
> shortcut key.
>
> Thanks
>
> bent


 
Reply With Quote
 
bent
Guest
Posts: n/a
 
      6th Jan 2007




Wesley Vogel wrote:
> F3 will open Search for a file or folder.
>
> Windows key + F will also open Search for a file or folder.
>
> CTRL + Windows key + F will open Search for computers.
>
> Both Search for a file or folder and Search for computers are run from
> explorer.exe.
>
> Find.exe is a command line command, you have to open a command prompt first
> to use find.exe.
>
> Start | Run | Type: cmd | Click OK.
> ---------------
>
> C:\>find /?
> Searches for a text string in a file or files.
>
> FIND [/V] [/C] [/N] [/I] [/OFF[LINE]] "string" [[drive:][path]filename[
> ...]]
>
> /V Displays all lines NOT containing the specified string.
> /C Displays only the count of lines containing the string.
> /N Displays line numbers with the displayed lines.
> /I Ignores the case of characters when searching for the string.
> /OFF[LINE] Do not skip files with offline attribute set.
> "string" Specifies the text string to find.
> [drive:][path]filename
> Specifies a file or files to search.
>
> If a path is not specified, FIND searches the text typed at the prompt
> or piped from another command.
> ---------------
>
> There are ways to use find.exe from the Run command, but I do not see the
> point.
>
> Ctrl + F will open Find in Notepad, MS Word, Internet Explorer and other
> programs.
>



Thanks Tom and Wesley,


I have a new "MS wireless comfort keyboard 1.0A Model 1045" .
Absolutely no documentation came with it.

I tried HELP in "Microsoft IntelliType Pro", and find nothing useful
to me.

It has 5 FAVORITES keys at the top that I can assign different functions to.

I was able to assign some keys and they worked as wanted, so I am doing
the right thing, jusst need a correct path to use when I use the EDIT
feature for a key.

I want to make one of the FAVORITE keys to do the same thing Winkey/F does.

I use the EDIT feature of "Microsoft IntelliType Pro", to assign a key,
%windir%\system32\find.exe and "system32\find.exe" will give me as
quick flash of a black DOS screen. Just a flash and it is gone.

I made a SHORTCUT for "system32\find.exe" on the Desktop to see if it
would work there, and it just flashed a black screen also.

Wesley, I don't understand about the string. I am aware of various
keyboard shortcuts, but want to make 1 key to what the combination of
keys does, it that is possible.

I was hopeing there was a "path" that I could use to get the FIND
function assigned to the FAVORITE key, (to do same as Winkey/F) maybe it
can't be done??

Thanks again,

bent

 
Reply With Quote
 
Ramesh, MS-MVP
Guest
Posts: n/a
 
      6th Jan 2007
Copy the following text to Notepad, and save it as "search.vbs"

- - - -
set objShell = CreateObject("Shell.Application")
objShell.FindFiles
set objShell = Nothing
- - - -

You may then configure the MS keyboard software to launch this script when you press a key.

--
Regards,

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


"bent" <(E-Mail Removed)> wrote in message news:%(E-Mail Removed)...




Wesley Vogel wrote:
> F3 will open Search for a file or folder.
>
> Windows key + F will also open Search for a file or folder.
>
> CTRL + Windows key + F will open Search for computers.
>
> Both Search for a file or folder and Search for computers are run from
> explorer.exe.
>
> Find.exe is a command line command, you have to open a command prompt first
> to use find.exe.
>
> Start | Run | Type: cmd | Click OK.
> ---------------
>
> C:\>find /?
> Searches for a text string in a file or files.
>
> FIND [/V] [/C] [/N] [/I] [/OFF[LINE]] "string" [[drive:][path]filename[
> ...]]
>
> /V Displays all lines NOT containing the specified string.
> /C Displays only the count of lines containing the string.
> /N Displays line numbers with the displayed lines.
> /I Ignores the case of characters when searching for the string.
> /OFF[LINE] Do not skip files with offline attribute set.
> "string" Specifies the text string to find.
> [drive:][path]filename
> Specifies a file or files to search.
>
> If a path is not specified, FIND searches the text typed at the prompt
> or piped from another command.
> ---------------
>
> There are ways to use find.exe from the Run command, but I do not see the
> point.
>
> Ctrl + F will open Find in Notepad, MS Word, Internet Explorer and other
> programs.
>



Thanks Tom and Wesley,


I have a new "MS wireless comfort keyboard 1.0A Model 1045" .
Absolutely no documentation came with it.

I tried HELP in "Microsoft IntelliType Pro", and find nothing useful
to me.

It has 5 FAVORITES keys at the top that I can assign different functions to.

I was able to assign some keys and they worked as wanted, so I am doing
the right thing, jusst need a correct path to use when I use the EDIT
feature for a key.

I want to make one of the FAVORITE keys to do the same thing Winkey/F does.

I use the EDIT feature of "Microsoft IntelliType Pro", to assign a key,
%windir%\system32\find.exe and "system32\find.exe" will give me as
quick flash of a black DOS screen. Just a flash and it is gone.

I made a SHORTCUT for "system32\find.exe" on the Desktop to see if it
would work there, and it just flashed a black screen also.

Wesley, I don't understand about the string. I am aware of various
keyboard shortcuts, but want to make 1 key to what the combination of
keys does, it that is possible.

I was hopeing there was a "path" that I could use to get the FIND
function assigned to the FAVORITE key, (to do same as Winkey/F) maybe it
can't be done??

Thanks again,

bent

 
Reply With Quote
 
bent
Guest
Posts: n/a
 
      6th Jan 2007
That did, thanks a lot Ramesh,

Now if you can help me with this next thing, I will have my keyboard
like I want it.

"MS wireless comfort keyboard 1.0a" ... on the right of the SPACEBAR,
between the ALT key and the CTRL key (APPLICATION KEY), this key was the
"WINKEY" on my previous keyboard.

I don't need whatever that key is supposed to do. IS THERE ANY WAY to
change the key to function as the "WINKEY"?

Thanks

bent


Ramesh, MS-MVP wrote:
> Copy the following text to Notepad, and save it as "search.vbs"
>
> - - - -
> set objShell = CreateObject("Shell.Application")
> objShell.FindFiles
> set objShell = Nothing
> - - - -
>
> You may then configure the MS keyboard software to launch this script when you press a key.
>

 
Reply With Quote
 
Ramesh, MS-MVP
Guest
Posts: n/a
 
      7th Jan 2007
Bent,

See if you can find any keyboard remapper tool for this.
http://www.google.com/search?q=scancode+map

--
Regards,

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


"bent" <(E-Mail Removed)> wrote in message news:(E-Mail Removed)...
That did, thanks a lot Ramesh,

Now if you can help me with this next thing, I will have my keyboard
like I want it.

"MS wireless comfort keyboard 1.0a" ... on the right of the SPACEBAR,
between the ALT key and the CTRL key (APPLICATION KEY), this key was the
"WINKEY" on my previous keyboard.

I don't need whatever that key is supposed to do. IS THERE ANY WAY to
change the key to function as the "WINKEY"?

Thanks

bent


Ramesh, MS-MVP wrote:
> Copy the following text to Notepad, and save it as "search.vbs"
>
> - - - -
> set objShell = CreateObject("Shell.Application")
> objShell.FindFiles
> set objShell = Nothing
> - - - -
>
> You may then configure the MS keyboard software to launch this script when you press a key.
>

 
Reply With Quote
 
bent
Guest
Posts: n/a
 
      7th Jan 2007

Thanks Ramesh,

Appreciate your help.

bent

Ramesh, MS-MVP wrote:
> Bent,
>
> See if you can find any keyboard remapper tool for this.
> http://www.google.com/search?q=scancode+map
>

 
Reply With Quote
 
Ramesh, MS-MVP
Guest
Posts: n/a
 
      7th Jan 2007
You're welcome, bent.

--
Regards,

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


"bent" <(E-Mail Removed)> wrote in message news:(E-Mail Removed)...

Thanks Ramesh,

Appreciate your help.

bent

Ramesh, MS-MVP wrote:
> Bent,
>
> See if you can find any keyboard remapper tool for this.
> http://www.google.com/search?q=scancode+map
>

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
No way to set a keyboard shortcut to "Find Next" in Word 2007 george Microsoft Word Document Management 1 24th Nov 2008 11:48 PM
keyboard shortcut to return to previous cell after "find" or "got. Nadavb Microsoft Excel New Users 1 25th May 2008 01:39 AM
How can I re-enable the "ctrl + c" keyboard "copy" shortcut? =?Utf-8?B?UGFt?= Microsoft Word Document Management 2 22nd Nov 2006 03:17 PM
Keyboard shortcut (Ctrl+Alt+C) "lost", can't re-assign David Winter Windows XP General 3 24th Jun 2006 12:11 AM
Shortcut Properties Dialog Box takes ten seconds to close after "Find Target" or "Open Containing Folder" =?Utf-8?B?TWlrZQ==?= Windows XP Help 0 24th Feb 2004 09:01 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 06:47 PM.