how to set shortcut key

lenjack

Platinum Member
Oct 10, 1999
2,706
7
81
Windows 7, all updates, IE 10 (I don't use IE 11 because I don't like tabs). I want to use one of the "F" (Function Keys) to open a specific website, just by hitting the key. I've done this before, but can't remember how. I know it's irrelevant, but the site is cbsnews.com, and the key is F2...I know, I know, but I'm not a gamer, so I don't need that key for that.

Thanks
 

inachu

Platinum Member
Aug 22, 2014
2,387
2
41
It is called remapping a key in this case the function key.

And also perhaps you mean using F2 while the browser is open? Or when you are at your desktop? There are function built into the browser for that is already mapped and yes as you guessed you have to edit those commands as well. Just wondering if you meant a global remap of F2 or Just F2 while Internet Explorer is open.
 

corkyg

Elite Member | Peripherals
Super Moderator
Mar 4, 2000
27,370
239
106
Another option is when you are at CBS.COM, click on FAVORITES, and select ADD TO FAVORITES BAR. It will always be there, and you can add other choices to the bar and select your websites by mouse by clicking on the bar.
 

lenjack

Platinum Member
Oct 10, 1999
2,706
7
81
"And also perhaps you mean using F2 while the browser is open? Or when you are at your desktop?"

Both. Don't want to do it with a mouse click, just the F2 key, browser opened or closed.

Yes, I know it's creating a shortcut key. I've had it that way before. Just can't remember how.

Please take me by the hand, step by step, on how to do it.
 

LTC8K6

Lifer
Mar 10, 2004
28,520
1,575
126
Right click on desktop
New
Shortcut

Enter URL

Next

Enter name

Finish

Then go into the properties of the shortcut by right clicking on it, and you can assign a key.

Click in the "shortcut key" box.

Press the key you want to use.

Apply or Okay.
 

LouieST

Member
May 29, 2015
72
2
36
I found this solution on official page of windows microsoft:
1. Locate the shortcut to the program that you want to create a keyboard shortcut for.
2. Right-click the shortcut, and then click Properties.
3. In the Shortcut Properties dialog box, click the Shortcut tab.
4. Click in the Shortcut key box, press the key on your keyboard that you want to use in combination with Ctrl+Alt (keyboard shortcuts automatically start with Ctrl+Alt), and then click OK. If you're prompted for an administrator password or confirmation, type the password or provide confirmation.
you can have a try. HTH :)
 

sm625

Diamond Member
May 6, 2011
8,172
137
106
You can easily assign any url you want to a a shortcut. For example:

Code:
start "" "http://www.google.com"

To actually create a shortcut, here is what you would paste in the create shortcut dialog:

Code:
 C:\Windows\System32\cmd.exe /c start "" "http://www.google.com"

Obviously you would change the google to what you want. Once you make the shortcut you can put it anywhere you want. And yes, you can also assign a hotkey for it in the properties.
 
Last edited:

LTC8K6

Lifer
Mar 10, 2004
28,520
1,575
126
You can easily assign any url you want to a a shortcut. For example:

Code:
start "" "http://www.google.com"

To actually create a shortcut, here is what you would paste in the create shortcut dialog:

Code:
 C:\Windows\System32\cmd.exe /c start "" "http://www.google.com"

Obviously you would change the google to what you want. Once you make the shortcut you can put it anywhere you want. And yes, you can also assign a hotkey for it in the properties.

I already posted a perfectly good way to do it...