Windows 10 shortcut keys only work when shortcut is on desktop












7















I am creating a keyboard shortcut to open the calculator in Windows 10. I have created a shortcut on my desktop and added the following key configurations:



Link to settings screenshot of shortcut



This works fine whilst the shortcut is on the desktop; pressing CTRL+NUM0 opens the calculator.



However, I don't want the shortcut cluttering my desktop so I want to hide it somewhere, but when the shortcut is moved from the desktop it stops working. This includes moving it to the StartMenu folder.



I read on this thread that on Windows 7 the keyboard shortcuts only work on the desktop and when the shortcut is placed in the StartMenu folder.



Has this changed with Windows 10? Is there a way to implement this natively on Windows 10 without having the shortcut on the desktop?










share|improve this question





























    7















    I am creating a keyboard shortcut to open the calculator in Windows 10. I have created a shortcut on my desktop and added the following key configurations:



    Link to settings screenshot of shortcut



    This works fine whilst the shortcut is on the desktop; pressing CTRL+NUM0 opens the calculator.



    However, I don't want the shortcut cluttering my desktop so I want to hide it somewhere, but when the shortcut is moved from the desktop it stops working. This includes moving it to the StartMenu folder.



    I read on this thread that on Windows 7 the keyboard shortcuts only work on the desktop and when the shortcut is placed in the StartMenu folder.



    Has this changed with Windows 10? Is there a way to implement this natively on Windows 10 without having the shortcut on the desktop?










    share|improve this question



























      7












      7








      7


      1






      I am creating a keyboard shortcut to open the calculator in Windows 10. I have created a shortcut on my desktop and added the following key configurations:



      Link to settings screenshot of shortcut



      This works fine whilst the shortcut is on the desktop; pressing CTRL+NUM0 opens the calculator.



      However, I don't want the shortcut cluttering my desktop so I want to hide it somewhere, but when the shortcut is moved from the desktop it stops working. This includes moving it to the StartMenu folder.



      I read on this thread that on Windows 7 the keyboard shortcuts only work on the desktop and when the shortcut is placed in the StartMenu folder.



      Has this changed with Windows 10? Is there a way to implement this natively on Windows 10 without having the shortcut on the desktop?










      share|improve this question
















      I am creating a keyboard shortcut to open the calculator in Windows 10. I have created a shortcut on my desktop and added the following key configurations:



      Link to settings screenshot of shortcut



      This works fine whilst the shortcut is on the desktop; pressing CTRL+NUM0 opens the calculator.



      However, I don't want the shortcut cluttering my desktop so I want to hide it somewhere, but when the shortcut is moved from the desktop it stops working. This includes moving it to the StartMenu folder.



      I read on this thread that on Windows 7 the keyboard shortcuts only work on the desktop and when the shortcut is placed in the StartMenu folder.



      Has this changed with Windows 10? Is there a way to implement this natively on Windows 10 without having the shortcut on the desktop?







      windows windows-10 keyboard keyboard-shortcuts shortcuts






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Mar 20 '17 at 10:16









      Community

      1




      1










      asked Feb 27 '16 at 19:30









      MSOACCMSOACC

      13814




      13814






















          3 Answers
          3






          active

          oldest

          votes


















          7














          Yes. You can place the shortcut in this folder, or one of its sub-folders:



          C:ProgramDataMicrosoftWindowsStart MenuPrograms



          *note
          you must first sign out and back in or restart your computer for the shortcut to start working.






          share|improve this answer


























          • Apparently there is a bug in some Windows 10 installations causing keyboard shortcuts to link to work only from the Desktop, not from the Start Menu or subfolder. I've confirmed this for my newly-reinstalled OS: Create a shortcut on the Desktop (e.g. to CMD) and set its keyboard shortcut (e.g. Ctrl-Alt-C) -- it works. Move the shortcut to Start Menu, it fails. Move it back, it works again. If the keyboard shortcut s added while in the Start Menu folder, it works... but fails after a reboot.

            – DrMoishe Pippik
            Jul 18 '17 at 1:20






          • 2





            The folder %USERPROFILE%AppDataRoamingMicrosoftWindowsStart MenuPrograms can also be used, if you want your shortcut per-user.

            – Jonathan
            Jul 20 '18 at 15:59











          • It's the middle of 2018...has this yet changed with 2 years of updates? Are there more options for places to save shorcut-assigned programs (apps)?

            – theforestecologist
            Aug 30 '18 at 13:06











          • 2nd question: can I simply create a shortcut to a folder containing all of my programs with shortcuts-assigned for this method to work?

            – theforestecologist
            Aug 30 '18 at 13:38



















          1














          This might not exactly answer how to fix this specific issue with how windows behaves with application keyboard shortcuts. But I had this same problem like just yesterday, and the alternative solution I found worked best for me (and as a nice bonus doesn't require me to have a shortcut on my desktop or anywhere else) was using AutoHotkey



          With autohotkey you can create scripts in a format like this:



          ^!x:: ;Ctrl+Alt+X
          Run, C:Program.exe ;or a similar absolute path to the program, batch script or whatever it is you want to launch.
          return


          The above script will run C:Program.exe when I press Ctrl+Alt+X when running, and it is rather absolute (i.e. not as likely to fail as those stupid windows shrtocut file keyboard shortcuts, they seem kinda badly implemented if you ask me)



          This script would have to be in an autohotkey script file with a name something like startprogram.ahk and if you want to start this script on startup (so that it is always active, i.e. the shortcut you created can always be used as soon as you start up your computer) you can place it in C:UsersUsernameAppDataRoamingMicrosoftWindowsStart MenuProgramsStartup



          And it will autostart along with every other program you put in there when you boot. Nice and easy. To test the script you simply run it by double clicking on it and it executes like any other program.



          You can find a list of valid key-symbols here (like + for shift, # for win logo key, etc) or alternatively here is a list of all valid keys and how to write them into a script (turns out you can write shift as "Shift" and not "+", be sure when you're writing scripts to be careful with upper/lowercase letters, these things matter).



          Don't forget that you can put as many shortcuts as you want in one script file, (after the return line just put another shortcut that looks something like the above code sample) so you only need to have one script for your keyboard shortcuts. The only downside to this program is that some online games with punkbuster/anti-cheating systems will detect autohotkey as a potential cheat, so if you do a lot of online gaming (especially shooters) you may want to keep that in mind.



          In your use case the script would look like this:



          ^Numpad0:: ;Ctrl+NUM0
          Run, C:WindowsSystem32calc.exe
          return


          And you can also for redundancy add a shortcut that does the same with
          NumpadIns (for times when num lock is off) if you'd like.



          Hope this was helpful.






          share|improve this answer





















          • 1





            Thanks for the answer. I would upvote you if I had enough rep. I had used AutoHotKey before but I wanted to see if this could be accomplished natively :)

            – MSOACC
            Feb 29 '16 at 2:18











          • @MSOACC Well, you can just upvote it later once you've got 15 rep :)

            – Cestarian
            Feb 29 '16 at 6:44



















          0














          Why not try putting the shortcut in your system32 folder, and say call the shortcut c then you pres Windows Key + R then enter C and hit Enter.



          That's how I do a lot of my shortcuts. :)






          share|improve this answer



















          • 1





            That runs "Google Chrome" when I try it here ...

            – DavidPostill
            Feb 28 '16 at 18:00











          Your Answer








          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "3"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1046261%2fwindows-10-shortcut-keys-only-work-when-shortcut-is-on-desktop%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          3 Answers
          3






          active

          oldest

          votes








          3 Answers
          3






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          7














          Yes. You can place the shortcut in this folder, or one of its sub-folders:



          C:ProgramDataMicrosoftWindowsStart MenuPrograms



          *note
          you must first sign out and back in or restart your computer for the shortcut to start working.






          share|improve this answer


























          • Apparently there is a bug in some Windows 10 installations causing keyboard shortcuts to link to work only from the Desktop, not from the Start Menu or subfolder. I've confirmed this for my newly-reinstalled OS: Create a shortcut on the Desktop (e.g. to CMD) and set its keyboard shortcut (e.g. Ctrl-Alt-C) -- it works. Move the shortcut to Start Menu, it fails. Move it back, it works again. If the keyboard shortcut s added while in the Start Menu folder, it works... but fails after a reboot.

            – DrMoishe Pippik
            Jul 18 '17 at 1:20






          • 2





            The folder %USERPROFILE%AppDataRoamingMicrosoftWindowsStart MenuPrograms can also be used, if you want your shortcut per-user.

            – Jonathan
            Jul 20 '18 at 15:59











          • It's the middle of 2018...has this yet changed with 2 years of updates? Are there more options for places to save shorcut-assigned programs (apps)?

            – theforestecologist
            Aug 30 '18 at 13:06











          • 2nd question: can I simply create a shortcut to a folder containing all of my programs with shortcuts-assigned for this method to work?

            – theforestecologist
            Aug 30 '18 at 13:38
















          7














          Yes. You can place the shortcut in this folder, or one of its sub-folders:



          C:ProgramDataMicrosoftWindowsStart MenuPrograms



          *note
          you must first sign out and back in or restart your computer for the shortcut to start working.






          share|improve this answer


























          • Apparently there is a bug in some Windows 10 installations causing keyboard shortcuts to link to work only from the Desktop, not from the Start Menu or subfolder. I've confirmed this for my newly-reinstalled OS: Create a shortcut on the Desktop (e.g. to CMD) and set its keyboard shortcut (e.g. Ctrl-Alt-C) -- it works. Move the shortcut to Start Menu, it fails. Move it back, it works again. If the keyboard shortcut s added while in the Start Menu folder, it works... but fails after a reboot.

            – DrMoishe Pippik
            Jul 18 '17 at 1:20






          • 2





            The folder %USERPROFILE%AppDataRoamingMicrosoftWindowsStart MenuPrograms can also be used, if you want your shortcut per-user.

            – Jonathan
            Jul 20 '18 at 15:59











          • It's the middle of 2018...has this yet changed with 2 years of updates? Are there more options for places to save shorcut-assigned programs (apps)?

            – theforestecologist
            Aug 30 '18 at 13:06











          • 2nd question: can I simply create a shortcut to a folder containing all of my programs with shortcuts-assigned for this method to work?

            – theforestecologist
            Aug 30 '18 at 13:38














          7












          7








          7







          Yes. You can place the shortcut in this folder, or one of its sub-folders:



          C:ProgramDataMicrosoftWindowsStart MenuPrograms



          *note
          you must first sign out and back in or restart your computer for the shortcut to start working.






          share|improve this answer















          Yes. You can place the shortcut in this folder, or one of its sub-folders:



          C:ProgramDataMicrosoftWindowsStart MenuPrograms



          *note
          you must first sign out and back in or restart your computer for the shortcut to start working.







          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited Jul 10 '17 at 7:20









          Cooper Beaman

          32




          32










          answered Feb 28 '16 at 4:37









          Win32GuyWin32Guy

          7,28322434




          7,28322434













          • Apparently there is a bug in some Windows 10 installations causing keyboard shortcuts to link to work only from the Desktop, not from the Start Menu or subfolder. I've confirmed this for my newly-reinstalled OS: Create a shortcut on the Desktop (e.g. to CMD) and set its keyboard shortcut (e.g. Ctrl-Alt-C) -- it works. Move the shortcut to Start Menu, it fails. Move it back, it works again. If the keyboard shortcut s added while in the Start Menu folder, it works... but fails after a reboot.

            – DrMoishe Pippik
            Jul 18 '17 at 1:20






          • 2





            The folder %USERPROFILE%AppDataRoamingMicrosoftWindowsStart MenuPrograms can also be used, if you want your shortcut per-user.

            – Jonathan
            Jul 20 '18 at 15:59











          • It's the middle of 2018...has this yet changed with 2 years of updates? Are there more options for places to save shorcut-assigned programs (apps)?

            – theforestecologist
            Aug 30 '18 at 13:06











          • 2nd question: can I simply create a shortcut to a folder containing all of my programs with shortcuts-assigned for this method to work?

            – theforestecologist
            Aug 30 '18 at 13:38



















          • Apparently there is a bug in some Windows 10 installations causing keyboard shortcuts to link to work only from the Desktop, not from the Start Menu or subfolder. I've confirmed this for my newly-reinstalled OS: Create a shortcut on the Desktop (e.g. to CMD) and set its keyboard shortcut (e.g. Ctrl-Alt-C) -- it works. Move the shortcut to Start Menu, it fails. Move it back, it works again. If the keyboard shortcut s added while in the Start Menu folder, it works... but fails after a reboot.

            – DrMoishe Pippik
            Jul 18 '17 at 1:20






          • 2





            The folder %USERPROFILE%AppDataRoamingMicrosoftWindowsStart MenuPrograms can also be used, if you want your shortcut per-user.

            – Jonathan
            Jul 20 '18 at 15:59











          • It's the middle of 2018...has this yet changed with 2 years of updates? Are there more options for places to save shorcut-assigned programs (apps)?

            – theforestecologist
            Aug 30 '18 at 13:06











          • 2nd question: can I simply create a shortcut to a folder containing all of my programs with shortcuts-assigned for this method to work?

            – theforestecologist
            Aug 30 '18 at 13:38

















          Apparently there is a bug in some Windows 10 installations causing keyboard shortcuts to link to work only from the Desktop, not from the Start Menu or subfolder. I've confirmed this for my newly-reinstalled OS: Create a shortcut on the Desktop (e.g. to CMD) and set its keyboard shortcut (e.g. Ctrl-Alt-C) -- it works. Move the shortcut to Start Menu, it fails. Move it back, it works again. If the keyboard shortcut s added while in the Start Menu folder, it works... but fails after a reboot.

          – DrMoishe Pippik
          Jul 18 '17 at 1:20





          Apparently there is a bug in some Windows 10 installations causing keyboard shortcuts to link to work only from the Desktop, not from the Start Menu or subfolder. I've confirmed this for my newly-reinstalled OS: Create a shortcut on the Desktop (e.g. to CMD) and set its keyboard shortcut (e.g. Ctrl-Alt-C) -- it works. Move the shortcut to Start Menu, it fails. Move it back, it works again. If the keyboard shortcut s added while in the Start Menu folder, it works... but fails after a reboot.

          – DrMoishe Pippik
          Jul 18 '17 at 1:20




          2




          2





          The folder %USERPROFILE%AppDataRoamingMicrosoftWindowsStart MenuPrograms can also be used, if you want your shortcut per-user.

          – Jonathan
          Jul 20 '18 at 15:59





          The folder %USERPROFILE%AppDataRoamingMicrosoftWindowsStart MenuPrograms can also be used, if you want your shortcut per-user.

          – Jonathan
          Jul 20 '18 at 15:59













          It's the middle of 2018...has this yet changed with 2 years of updates? Are there more options for places to save shorcut-assigned programs (apps)?

          – theforestecologist
          Aug 30 '18 at 13:06





          It's the middle of 2018...has this yet changed with 2 years of updates? Are there more options for places to save shorcut-assigned programs (apps)?

          – theforestecologist
          Aug 30 '18 at 13:06













          2nd question: can I simply create a shortcut to a folder containing all of my programs with shortcuts-assigned for this method to work?

          – theforestecologist
          Aug 30 '18 at 13:38





          2nd question: can I simply create a shortcut to a folder containing all of my programs with shortcuts-assigned for this method to work?

          – theforestecologist
          Aug 30 '18 at 13:38













          1














          This might not exactly answer how to fix this specific issue with how windows behaves with application keyboard shortcuts. But I had this same problem like just yesterday, and the alternative solution I found worked best for me (and as a nice bonus doesn't require me to have a shortcut on my desktop or anywhere else) was using AutoHotkey



          With autohotkey you can create scripts in a format like this:



          ^!x:: ;Ctrl+Alt+X
          Run, C:Program.exe ;or a similar absolute path to the program, batch script or whatever it is you want to launch.
          return


          The above script will run C:Program.exe when I press Ctrl+Alt+X when running, and it is rather absolute (i.e. not as likely to fail as those stupid windows shrtocut file keyboard shortcuts, they seem kinda badly implemented if you ask me)



          This script would have to be in an autohotkey script file with a name something like startprogram.ahk and if you want to start this script on startup (so that it is always active, i.e. the shortcut you created can always be used as soon as you start up your computer) you can place it in C:UsersUsernameAppDataRoamingMicrosoftWindowsStart MenuProgramsStartup



          And it will autostart along with every other program you put in there when you boot. Nice and easy. To test the script you simply run it by double clicking on it and it executes like any other program.



          You can find a list of valid key-symbols here (like + for shift, # for win logo key, etc) or alternatively here is a list of all valid keys and how to write them into a script (turns out you can write shift as "Shift" and not "+", be sure when you're writing scripts to be careful with upper/lowercase letters, these things matter).



          Don't forget that you can put as many shortcuts as you want in one script file, (after the return line just put another shortcut that looks something like the above code sample) so you only need to have one script for your keyboard shortcuts. The only downside to this program is that some online games with punkbuster/anti-cheating systems will detect autohotkey as a potential cheat, so if you do a lot of online gaming (especially shooters) you may want to keep that in mind.



          In your use case the script would look like this:



          ^Numpad0:: ;Ctrl+NUM0
          Run, C:WindowsSystem32calc.exe
          return


          And you can also for redundancy add a shortcut that does the same with
          NumpadIns (for times when num lock is off) if you'd like.



          Hope this was helpful.






          share|improve this answer





















          • 1





            Thanks for the answer. I would upvote you if I had enough rep. I had used AutoHotKey before but I wanted to see if this could be accomplished natively :)

            – MSOACC
            Feb 29 '16 at 2:18











          • @MSOACC Well, you can just upvote it later once you've got 15 rep :)

            – Cestarian
            Feb 29 '16 at 6:44
















          1














          This might not exactly answer how to fix this specific issue with how windows behaves with application keyboard shortcuts. But I had this same problem like just yesterday, and the alternative solution I found worked best for me (and as a nice bonus doesn't require me to have a shortcut on my desktop or anywhere else) was using AutoHotkey



          With autohotkey you can create scripts in a format like this:



          ^!x:: ;Ctrl+Alt+X
          Run, C:Program.exe ;or a similar absolute path to the program, batch script or whatever it is you want to launch.
          return


          The above script will run C:Program.exe when I press Ctrl+Alt+X when running, and it is rather absolute (i.e. not as likely to fail as those stupid windows shrtocut file keyboard shortcuts, they seem kinda badly implemented if you ask me)



          This script would have to be in an autohotkey script file with a name something like startprogram.ahk and if you want to start this script on startup (so that it is always active, i.e. the shortcut you created can always be used as soon as you start up your computer) you can place it in C:UsersUsernameAppDataRoamingMicrosoftWindowsStart MenuProgramsStartup



          And it will autostart along with every other program you put in there when you boot. Nice and easy. To test the script you simply run it by double clicking on it and it executes like any other program.



          You can find a list of valid key-symbols here (like + for shift, # for win logo key, etc) or alternatively here is a list of all valid keys and how to write them into a script (turns out you can write shift as "Shift" and not "+", be sure when you're writing scripts to be careful with upper/lowercase letters, these things matter).



          Don't forget that you can put as many shortcuts as you want in one script file, (after the return line just put another shortcut that looks something like the above code sample) so you only need to have one script for your keyboard shortcuts. The only downside to this program is that some online games with punkbuster/anti-cheating systems will detect autohotkey as a potential cheat, so if you do a lot of online gaming (especially shooters) you may want to keep that in mind.



          In your use case the script would look like this:



          ^Numpad0:: ;Ctrl+NUM0
          Run, C:WindowsSystem32calc.exe
          return


          And you can also for redundancy add a shortcut that does the same with
          NumpadIns (for times when num lock is off) if you'd like.



          Hope this was helpful.






          share|improve this answer





















          • 1





            Thanks for the answer. I would upvote you if I had enough rep. I had used AutoHotKey before but I wanted to see if this could be accomplished natively :)

            – MSOACC
            Feb 29 '16 at 2:18











          • @MSOACC Well, you can just upvote it later once you've got 15 rep :)

            – Cestarian
            Feb 29 '16 at 6:44














          1












          1








          1







          This might not exactly answer how to fix this specific issue with how windows behaves with application keyboard shortcuts. But I had this same problem like just yesterday, and the alternative solution I found worked best for me (and as a nice bonus doesn't require me to have a shortcut on my desktop or anywhere else) was using AutoHotkey



          With autohotkey you can create scripts in a format like this:



          ^!x:: ;Ctrl+Alt+X
          Run, C:Program.exe ;or a similar absolute path to the program, batch script or whatever it is you want to launch.
          return


          The above script will run C:Program.exe when I press Ctrl+Alt+X when running, and it is rather absolute (i.e. not as likely to fail as those stupid windows shrtocut file keyboard shortcuts, they seem kinda badly implemented if you ask me)



          This script would have to be in an autohotkey script file with a name something like startprogram.ahk and if you want to start this script on startup (so that it is always active, i.e. the shortcut you created can always be used as soon as you start up your computer) you can place it in C:UsersUsernameAppDataRoamingMicrosoftWindowsStart MenuProgramsStartup



          And it will autostart along with every other program you put in there when you boot. Nice and easy. To test the script you simply run it by double clicking on it and it executes like any other program.



          You can find a list of valid key-symbols here (like + for shift, # for win logo key, etc) or alternatively here is a list of all valid keys and how to write them into a script (turns out you can write shift as "Shift" and not "+", be sure when you're writing scripts to be careful with upper/lowercase letters, these things matter).



          Don't forget that you can put as many shortcuts as you want in one script file, (after the return line just put another shortcut that looks something like the above code sample) so you only need to have one script for your keyboard shortcuts. The only downside to this program is that some online games with punkbuster/anti-cheating systems will detect autohotkey as a potential cheat, so if you do a lot of online gaming (especially shooters) you may want to keep that in mind.



          In your use case the script would look like this:



          ^Numpad0:: ;Ctrl+NUM0
          Run, C:WindowsSystem32calc.exe
          return


          And you can also for redundancy add a shortcut that does the same with
          NumpadIns (for times when num lock is off) if you'd like.



          Hope this was helpful.






          share|improve this answer















          This might not exactly answer how to fix this specific issue with how windows behaves with application keyboard shortcuts. But I had this same problem like just yesterday, and the alternative solution I found worked best for me (and as a nice bonus doesn't require me to have a shortcut on my desktop or anywhere else) was using AutoHotkey



          With autohotkey you can create scripts in a format like this:



          ^!x:: ;Ctrl+Alt+X
          Run, C:Program.exe ;or a similar absolute path to the program, batch script or whatever it is you want to launch.
          return


          The above script will run C:Program.exe when I press Ctrl+Alt+X when running, and it is rather absolute (i.e. not as likely to fail as those stupid windows shrtocut file keyboard shortcuts, they seem kinda badly implemented if you ask me)



          This script would have to be in an autohotkey script file with a name something like startprogram.ahk and if you want to start this script on startup (so that it is always active, i.e. the shortcut you created can always be used as soon as you start up your computer) you can place it in C:UsersUsernameAppDataRoamingMicrosoftWindowsStart MenuProgramsStartup



          And it will autostart along with every other program you put in there when you boot. Nice and easy. To test the script you simply run it by double clicking on it and it executes like any other program.



          You can find a list of valid key-symbols here (like + for shift, # for win logo key, etc) or alternatively here is a list of all valid keys and how to write them into a script (turns out you can write shift as "Shift" and not "+", be sure when you're writing scripts to be careful with upper/lowercase letters, these things matter).



          Don't forget that you can put as many shortcuts as you want in one script file, (after the return line just put another shortcut that looks something like the above code sample) so you only need to have one script for your keyboard shortcuts. The only downside to this program is that some online games with punkbuster/anti-cheating systems will detect autohotkey as a potential cheat, so if you do a lot of online gaming (especially shooters) you may want to keep that in mind.



          In your use case the script would look like this:



          ^Numpad0:: ;Ctrl+NUM0
          Run, C:WindowsSystem32calc.exe
          return


          And you can also for redundancy add a shortcut that does the same with
          NumpadIns (for times when num lock is off) if you'd like.



          Hope this was helpful.







          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited Feb 28 '16 at 7:29

























          answered Feb 28 '16 at 7:18









          CestarianCestarian

          1,01411433




          1,01411433








          • 1





            Thanks for the answer. I would upvote you if I had enough rep. I had used AutoHotKey before but I wanted to see if this could be accomplished natively :)

            – MSOACC
            Feb 29 '16 at 2:18











          • @MSOACC Well, you can just upvote it later once you've got 15 rep :)

            – Cestarian
            Feb 29 '16 at 6:44














          • 1





            Thanks for the answer. I would upvote you if I had enough rep. I had used AutoHotKey before but I wanted to see if this could be accomplished natively :)

            – MSOACC
            Feb 29 '16 at 2:18











          • @MSOACC Well, you can just upvote it later once you've got 15 rep :)

            – Cestarian
            Feb 29 '16 at 6:44








          1




          1





          Thanks for the answer. I would upvote you if I had enough rep. I had used AutoHotKey before but I wanted to see if this could be accomplished natively :)

          – MSOACC
          Feb 29 '16 at 2:18





          Thanks for the answer. I would upvote you if I had enough rep. I had used AutoHotKey before but I wanted to see if this could be accomplished natively :)

          – MSOACC
          Feb 29 '16 at 2:18













          @MSOACC Well, you can just upvote it later once you've got 15 rep :)

          – Cestarian
          Feb 29 '16 at 6:44





          @MSOACC Well, you can just upvote it later once you've got 15 rep :)

          – Cestarian
          Feb 29 '16 at 6:44











          0














          Why not try putting the shortcut in your system32 folder, and say call the shortcut c then you pres Windows Key + R then enter C and hit Enter.



          That's how I do a lot of my shortcuts. :)






          share|improve this answer



















          • 1





            That runs "Google Chrome" when I try it here ...

            – DavidPostill
            Feb 28 '16 at 18:00
















          0














          Why not try putting the shortcut in your system32 folder, and say call the shortcut c then you pres Windows Key + R then enter C and hit Enter.



          That's how I do a lot of my shortcuts. :)






          share|improve this answer



















          • 1





            That runs "Google Chrome" when I try it here ...

            – DavidPostill
            Feb 28 '16 at 18:00














          0












          0








          0







          Why not try putting the shortcut in your system32 folder, and say call the shortcut c then you pres Windows Key + R then enter C and hit Enter.



          That's how I do a lot of my shortcuts. :)






          share|improve this answer













          Why not try putting the shortcut in your system32 folder, and say call the shortcut c then you pres Windows Key + R then enter C and hit Enter.



          That's how I do a lot of my shortcuts. :)







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Feb 28 '16 at 6:30









          Vas BVas B

          11




          11








          • 1





            That runs "Google Chrome" when I try it here ...

            – DavidPostill
            Feb 28 '16 at 18:00














          • 1





            That runs "Google Chrome" when I try it here ...

            – DavidPostill
            Feb 28 '16 at 18:00








          1




          1





          That runs "Google Chrome" when I try it here ...

          – DavidPostill
          Feb 28 '16 at 18:00





          That runs "Google Chrome" when I try it here ...

          – DavidPostill
          Feb 28 '16 at 18:00


















          draft saved

          draft discarded




















































          Thanks for contributing an answer to Super User!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1046261%2fwindows-10-shortcut-keys-only-work-when-shortcut-is-on-desktop%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          How do I know what Microsoft account the skydrive app is syncing to?

          Grease: Live!

          When does type information flow backwards in C++?