Jump to content

Sky Slate Blueberry Blackcurrant Watermelon Strawberry Orange Banana Apple Emerald Chocolate
Photo

Comprehensive list of Windows hotkeys.


  • Please log in to reply
145 replies to this topic
MacroMan!
  • Members
  • 604 posts
  • Last active: Mar 20 2012 11:40 AM
  • Joined: 28 Aug 2009
Couldn't find this one in the list anywhere.

If you press Ctrl-Alt-Del twice on the welcome screen in Win XP, it will switch for this logon to the old style logon scren (type the username in yourself).

This is handy if you need to login as Administrator (since this user is not shown by default on many XP systems), also if you have hidden a user via the registry or TweakUI.

Not sure if its the same on Win7 or Vista.
What ever happened, happened.

meowstash
  • Guests
  • Last active:
  • Joined: --
what is the windows key?

Frankie
  • Members
  • 2930 posts
  • Last active: Feb 05 2015 02:49 PM
  • Joined: 02 Nov 2008

what is the windows key?

Posted Image
aboutscriptappsscripts
Request Video Tutorials Here or View Current Tutorials on YouTube
Any code ⇈ above ⇈ requires AutoHotkey_L to run

Casey2
  • Guests
  • Last active:
  • Joined: --
What about CTRL-scroll up and down? Zoom active window.

codybear
  • Members
  • 600 posts
  • Last active: Feb 09 2015 12:41 PM
  • Joined: 15 Sep 2009

What about CTRL-scroll up and down? Zoom active window.

I'm pretty sure that's listed in there somewhere (Maybe not, I didn't read all of the pages).
I know you can use the Control and Plus or minus (numpad or regular plus minus) and it will zoom in or out. Also you can use control and the mouse wheel.
Also if you have a laptop and have a trackpad that has a scroll bar thing on the side you can use that with control and it will zoom in and out.

Not sure if that's what you meant by scroll up and down, but that's what I was thinking you meant. haha. (I've only had about 5 triple jack and cokes...so my perception of reality may be a bit off right now. :D).

MasterFocus
  • Moderators
  • 4323 posts
  • Last active: Jan 28 2016 01:38 AM
  • Joined: 08 Apr 2009

What about CTRL-scroll up and down? Zoom active window.

I suppose you're refering to browsers. If yes, this is browser specific, not a Windows generic hotkey.

-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

Antonio França -- git.io -- github.com -- ahk4.net -- sites.google.com -- ahkscript.org

Member of the AHK community since 08/Apr/2009. Moderator since mid-2012.


codybear
  • Members
  • 600 posts
  • Last active: Feb 09 2015 12:41 PM
  • Joined: 15 Sep 2009
I'd personally say program specific since I've seen it show up in more and more programs lately.

  • Guests
  • Last active:
  • Joined: --

BackSpace: Go up one level to the parent directory.
Alt + Left: Go back one folder.
Alt + Right: Go forward one folder.


Going up a folder level in Windows Vista / 7 is Alt+ Up, not Alt+> or Alt+<

Alt+< functions exactly the same as Backspace, going to previous navigated folder, while Alt+> go forward in history.

ewerybody
  • Members
  • 70 posts
  • Last active: Feb 01 2017 01:55 PM
  • Joined: 18 Sep 2006
Ctrl+MouseWheel Up/Down for Zoom in/out is pretty generic!

Windows Explorer has it, All Browsers that I know: just tested: IE8, Chrome, Firefox 4, then: Outlook, Excel, Word, Notepad++, Wordpad, Visual Studio, yEd Graph Editor, Audacity, Miranda IM, WinMerge, Adobe Reader, Sumatra PDF, ... and looks like some generic input fields have it as well: like Textfields in Maya, TortoiseSVN ...

So that are just the once that I could test positive in a couple of minutes. I'd say its save to add it to the generic list. If a program doesn't support it. I'd consider it a missing feature/bug.

asdlkf
  • Guests
  • Last active:
  • Joined: --
Key Sequence:

(described weird, because I dont know if there is another way syntacticly to describe it)



i.e. alt(0059) prints a ";"

alt(0159) prints a Ÿ

see here: http://www.expanding...et/keycode.html

Frankie
  • Members
  • 2930 posts
  • Last active: Feb 05 2015 02:49 PM
  • Joined: 02 Nov 2008
Yes, you can give the code for a character and it types it.
>> alt(0059) prints a ";"
Try this code:
Msgbox % Chr(0059)
It gives you the ; symbol.

Once you get past 255 AHK (Unicode at least) and windows give different values. I believe it is a windows hotkey though.
aboutscriptappsscripts
Request Video Tutorials Here or View Current Tutorials on YouTube
Any code ⇈ above ⇈ requires AutoHotkey_L to run

nimda
  • Members
  • 4368 posts
  • Last active: Aug 09 2015 02:36 AM
  • Joined: 26 Dec 2010
Ctrl+Backspace: backspace a whole word

GreenLeaf
  • Members
  • 6 posts
  • Last active: Mar 27 2008 08:29 AM
  • Joined: 01 Nov 2005

Ctrl+Backspace: backspace a whole word


No, that will DELETE the previous whole word.

PS: the full list of MS hotkeys in XP is here: http://support.microsoft.com/kb/301583

nimda
  • Members
  • 4368 posts
  • Last active: Aug 09 2015 02:36 AM
  • Joined: 26 Dec 2010
What's the difference?

word word (^{Backspace})
becomes
word

^Delete removes the word in front, just as delete removes the character in front.
^Backspace removes the word to the left, just as backspace removes the character to the left

sumon
  • Moderators
  • 1317 posts
  • Last active: Dec 05 2016 10:14 PM
  • Joined: 18 May 2010
In case someone finds it interesting, here's a visual layout over (most/all?) Windows shortkey commandos:

http://img849.images...5/img0111ge.jpg