Running shortcut from command prompt without the .lnk extension (Windows)
I have created a folder (d:\shortcuts), created shortcuts for most applications in this folder and appended the folder path to the Path environment variable. Now all my applications are available from run and command window without messing around with Path.
However, I now have to type the name of the shortcut as well as extension (e.g. vlc.lnk) to invoke it. Is there any way to do this without typing the extension?
Solution 1:
adjust the PATHEXT
environment to include .lnk
:
% set PATHEXT=%PATHEXT%;.lnk
by using the suffices given in PATHEXT
cmd decides, what kind of files are launchables.