• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

is it possible to set windows up so that i can type something in the run box and it will open a program?

gopunk

Lifer
i know that this works for stuff like notepad, word, etc... but say i wanted to set it up so that typing photoshop in the run box opened up photoshop... is this even possible?
 
The run box looks for either predefined programs and/or progs that are in the known Windows path structure.

Assuming that the program is not starting from the above situations, try setting up a shortcut or batch file to activate the prog.
 
yea, i've tried the shortcut, didn't seem to work too well...

so is there a way to define what windows thinks are predefined programs? maybe some sort of registry edit?
 
Maybe at the photoshop directory to Windows' path?

In Win2k or XP, it's in the system properties under Environment Variables. There should be one that says path.
 
hmm... okay, i'll check that when i get home... i'm at work and it looks like i don't have privilege to change that 🙁
 
perhaps one way to do it is to create a DOS batch file and call it photoshop.bat and place it in the windows folder.

i think the bat file would look something like this:

cd\progra~1\adobe\photos~1.0
photoshop.exe
echo off


After making this file and putting in the windows directory, try typing in "photoshop" in the run box and see what happens

i forget how to do simple batch operations. I'm getting rusty
 
to make a batch file, go to the dos prompt/command by typing command on the run screen. At the command line, type

copy con photoshop.bat
cd..
cd progra~1
cd adobe
cd photos~1
photoshop.exe
echo off
(then hit ctl-z, then enter on this line) ^z

thats it. maybe... it should work though, if you save it in the windows folder
 
Back
Top