Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

During testing we want to start application with the small start command that seems to work for some applications.

START chrome //-starts Google Chrome

This also works for Firefox, Notepad and many other applications. But our problem is that is doesn't seems to work on all machines. 'START chrome' works on 80% of our cloned testmachines, but not not on the other.

How does the START-command work when you pass e.g. 'chrome'? Where does it look up the path?

share|improve this question

2 Answers

up vote 3 down vote accepted

Found it, the paths are located here: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths

List all of them: reg query "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths" /s

share|improve this answer
Now explain why "START calc" works :) – Hans Passant Aug 5 '12 at 12:28

I'm not completely understanding your question. If you are talking about batch files

you can have a look here http://ss64.com/nt/start.html

which looks for the windows path variable %PATH% which should have a path to where the executable are located.

Hope this helps

share|improve this answer
I know the start command that is used to start batch files, but the command also seems to work with apps in windows. e.g. start chrome, even though chrome.exe isn't in your %PATH% – Tkhduracelll Aug 5 '12 at 11:32

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.