Any standard environment variables for those two?

link|improve this question

feedback

2 Answers

up vote 5 down vote accepted

From the output of set in cmd.exe:

ProgramFiles=C:\Program Files
ProgramFiles(x86)=C:\Program Files (x86)

So yes, there is %ProgramFiles% and %ProgramFiles(x86)%

link|improve this answer
1  
And here's a list of environment variables on Windows – Siim K Mar 22 '11 at 8:59
feedback

If you run the

SET

command from a command prompt window it gives you the following information:

ProgramFiles=C:\Program Files
ProgramFiles(x86)=C:\Program Files (x86)

so these are:

%ProgramFiles%
%ProgramFiles(x86)%

respectively...

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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