Is there a "run" command for Alt+Tab in Windows 7?

1

Is there a "run" command to access the Alt+Tab window switcher in Windows 7?

Ideally, I'd like to re-assign the Alt+Ctrl+Tab persistent app switcher to another, less unwieldy hotkey. I know of AutoHotKey, but it does not work well on my laptop for some reason.

Redandwhite

Posted 2012-10-30T15:13:20.140

Reputation: 3 196

Would a (non-AutoHotKey) script that does Alt+Ctrl+Tab solve your problem? – Richard – 2013-01-21T11:39:46.893

On a personal level, I've solved it by assigning a hotkey to a mouse button using the mouse manufacturer's utility. Please feel free to post a solution here for reference. If it's the best here, I'll accept that one – Redandwhite – 2013-01-21T11:55:25.607

Answers

0

There is no equivalent "run" command. Alt + Ctrl + Tab is the only way to access this window switcher.

Redandwhite

Posted 2012-10-30T15:13:20.140

Reputation: 3 196

3

You can do so with the 3D view via

rundll32 DwmApi #105

but there isn't such a thing for the normal Alt+Tab window that I'm aware of.

Joey

Posted 2012-10-30T15:13:20.140

Reputation: 36 381

Great answer! I don't know why this wasnt chosen! is there a similar command for CTRL + TAB? – Kalamalka Kid – 2017-04-07T09:56:38.300

2Elaboration: This probably exists as an API call because it was supposed to be triggered by things like mouse drivers or an icon in the task bar (which it was in Windows Vista, as far as I remember). The original Alt+Tab functionality is far older and also controlled by CSRSS which isn't exactly the nicest component to control programmatically from user mode. – Joey – 2012-10-30T15:48:53.787