Is there a keyboard shortcut for creating a new Microsoft Word document? Like Ctrl Shift N creates a new folder?
There is a keyboard shortcut possible to create a Word document:
Windows 10 English version:
Shortcut keys to create document files in windows 10
To create MS Access Database
To create Text Document
To create Winrar Archives
if you word document, then you can create a text or any kind of file from above them rename the extension to .docx
Commented Apr 15, 2018 at 16:00cause i don't find a specific shortcut for word document, so i create a txt file first , rename it to my desired file extension
Commented Apr 15, 2018 at 16:01I suggest using AutoHotKey which is a fantastic tool. You can access it here: https://www.autohotkey.com
Once you install the tool using this link: https://www.autohotkey.com/download/ahk-install.exe, you can start writing simple scripts to define your own shortcuts for any program or command in windows. For example I use:
Alt + W to create a New Word file, using the script below:
!w:: Run WINWORD.exe
Alt + E to create a New Excel file, using the script below:
To make your life easier so that the code is run every time you boot your laptop do this:
After you created a script, simply put it in your Windows Startup folder located at: C:*USER**\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup
Make sure you put your own username instead of the USER in the address above.
You can also use a tool in the AHK installed folder to generate simple .exe file out of your scripts!
answered Nov 23, 2017 at 2:49 UCDMetalHead UCDMetalHeadI'd rather not install software to make this happen, since its possible with just windows 10. Thanks for your answer though.
Commented Nov 24, 2017 at 9:15Hey Kars, you are right. There is the built-in option to define hotkeys for programs’ shortcuts, however: 1) it only works for shortcuts 2) the shortcut should be located under Windows\Start Menu\Programs to work. The advantage of using AHK is that you can define hotkeys for any files or folder on your PC, and 1) it doesn’t need to be necessarily a shortcut file 2) doesn’t need to be located in the Programs folder under Start Menu. Please correct me if I am wrong. Thanks!
Commented Nov 26, 2017 at 1:05 answered Feb 19, 2018 at 17:46 1 1 1 bronze badgeHere's how I'd do it: I'd create a standard Windows shortcut file in my Start Menu that points to the Word 'Normal' template*, and assign the desired Shortcut key to it. This will result in the user having to press just one key combination (as requested by the OP.)
Here's a step-by-step:
Pressing your shortcut combination should now launch Word with a blank document based on the Normal template.
*You could, of course, create the shortcut to Word itself if you wanted to see the Word start-up dashboard; or to a different template to open a document based on that.