windows:quickaccess
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
windows:quickaccess [2011/09/01 07:25] – creado rlunaro | windows:quickaccess [2022/12/02 21:02] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ====== Quick Access To Everything ====== | ||
+ | |||
+ | ===== Other way to do the same is through run alias commands ===== | ||
+ | |||
+ | http:// | ||
+ | |||
+ | ===== Intro ===== | ||
+ | |||
+ | |||
+ | If you are like me, probably you prefer to open Start -> run and then type the name of the program and enter to access easy and quick to every kind of programs. For instance, if you do '' | ||
+ | |||
+ | However, there are some programs that resist to this approximation. I've found that creating specialy crafted bat files could solve this issue. | ||
+ | |||
+ | The first point is to add to the PATH variable the folder " | ||
+ | |||
+ | The second point is to put there the batch files. Here are some: | ||
+ | |||
+ | ===== Launch the gimp ===== | ||
+ | |||
+ | Call this program " | ||
+ | |||
+ | <code bat> | ||
+ | |||
+ | @start " | ||
+ | |||
+ | </ | ||
+ | |||
+ | ===== Open a folder ===== | ||
+ | |||
+ | <code bat> | ||
+ | @echo off | ||
+ | |||
+ | set destdir=" | ||
+ | |||
+ | start " | ||
+ | |||
+ | </ | ||
+ | |||
+ | |||