The following is helpfull little tip to create shortcuts to commonly used applications when working in the command prompt.
1. Create a new doskey macrofile (e.g. notepad c:\doskey)
2. Edit doskey macrofile to include all your shortcuts:
sub="C:\Program Files\Sublime Text\sublimetext.exe" $*
ie="C:\Program Files\Internet Explorer\iexplore.exe"
3. Change cmd.exe shortcut to include the following doskey command:
%SystemRoot%\system32\cmd.exe /k doskey /macrofile=c:\doskey
Relevant doskey links:
Loading doskey automatically with CMD
DOSKEY – set shortcuts for DOS commands
all posts