greyghost
Still Fresh
I have always wanted a quick way to start my programs on windows. I prefer using the keyboard
than the mouse. So, I use the windows run box (windows key + r) as much as possible.
The problem is that windows installs programs differently to unix systems, so the executables are
strewn all over the filesystem. Starting a program therefore involved either adding the programs
directory to the path variable, or writing some batch file/script to start it, or assigning a shortcut to
it on the windows start menu. I didn't like any of those solutions, since it gets difficult to manage your
shortcuts and it is tedious to write a batch file for every new program installed.
So, I created a new directory (like c:\shortcuts). I then added only that one directory to the system's
PATH environment variable. Now, any program I want to have quick access to, I create a shortcut (.lnk)
to the executable and dump the shortcut in my shortcuts directory, giving it a nice short name.
However, to start the program, I now need to type [program name.lnk] which is pretty annoying. To
get rid of that problem, add ;.LNK to the PATHEXT environment variable.
Now I have quick, easy and very fast access to all the programs from the windows run box. Not sure if this would
be of assistance to anyone else.
than the mouse. So, I use the windows run box (windows key + r) as much as possible.
The problem is that windows installs programs differently to unix systems, so the executables are
strewn all over the filesystem. Starting a program therefore involved either adding the programs
directory to the path variable, or writing some batch file/script to start it, or assigning a shortcut to
it on the windows start menu. I didn't like any of those solutions, since it gets difficult to manage your
shortcuts and it is tedious to write a batch file for every new program installed.
So, I created a new directory (like c:\shortcuts). I then added only that one directory to the system's
PATH environment variable. Now, any program I want to have quick access to, I create a shortcut (.lnk)
to the executable and dump the shortcut in my shortcuts directory, giving it a nice short name.
However, to start the program, I now need to type [program name.lnk] which is pretty annoying. To
get rid of that problem, add ;.LNK to the PATHEXT environment variable.
Now I have quick, easy and very fast access to all the programs from the windows run box. Not sure if this would
be of assistance to anyone else.