40

Is there a keyboard shortcut to bring up the calendar in Windows 7? I am referring to the calendar that is displayed if you click on the date-time display in the system tray. If that is not possible, is there any trick to display any calendar (with current date highlighted) with a keyboard shortcut?

6 Answers6

95

Windows 11

Win+n

Windows 10 (as of Anniversary Update)

New in Windows 10 Anniversary Update:

Win+Alt+d

This will pop-open the calendar and pressing it again will close it.

For a full list of windows shortcuts go here.

JohnnyO
  • 1,355
11

Keyboad shortcut

You can display the calendar with a combination of three keyboard shortcuts:

Win+B, Arrow right, Enter

Explanation

  • Win+B selects the Windows system tray
  • Arrow right selects the calendar
  • Enter opens the calendar

Screenshot

clock Image source: How-To Geek.

Lernkurve
  • 2,052
3

Write this AutoHotKey script:

!d:: send #t{tab}{tab}{left}{enter}

Now Alt+D will open the date/clock window.

If you don't know what Autohotkey is, just google it, download it, open a notepad document, insert the script line and save the file. rename it as filename.ahk. The file logo will become a green H. Double-click it. The logo will appear in the right hand task bar icons, and the script should work. To change the hotkey, exchange ! for #, ^, or + for Win, Ctrl, or Shift, respectively (or keep ! for Alt). And change the letter if you want. Or learn about AHK and do anything you like:)

phuclv
  • 30,396
  • 15
  • 136
  • 260
spejr
  • 31
2

You can bring up the "Date and Time" window, which comes up when you click on the "Change date and time settings...", with a shortcut key by doing the following:

  1. On the desktop (or any folder) right-click an empty location and click "New", then "Shortcut".

  2. For the location type timedate.cpl. Click "Next", enter any name you prefer. Then click "Finish".

  3. Now right-click the new shortcut and select "Properties". In the "Shortcut key:" text box type any key you would like for the shortcut.

Source

Indrek
  • 24,874
Ben
  • 21
1

The suggested shortcut is physically difficult to trigger. So I used PowerToys to use a simpler shortcut. PowerToys is much simpler to use than AutoHotkey if you're just starting out.

Win+C is usually for Cortana, which I don't use, so I have set it to map to the original Win+Alt+D. Now, if I press Win+C, the Calendar opens.

PowerToys shortcut remap window showing the mapping I made

1

I could not find any direct way to do this. Instead, I added the Calendar gadget in Windows 7 and created a AutoHotKey script to show or hide Gadgets (and thus Calendar) whenever needed when a keyboard shortcut (Win+G) was pressed. The AHK script to do this can be found here and more details on it here.