Is there any advantage to running 32 bit programs from C:\Program Files (x86)\myfolder?

2

I have 64bit Windows7.

Does it make any difference if I run 32 bit programs from a directory, say, at C:\myfolder ? Is there any advantage to keeping them in C:\Program Files (x86)\myfolder ?

bgmCoder

Posted 2012-06-21T16:29:38.333

Reputation: 1 771

Answers

5

No, there's no real difference other than organization. At least, there shouldn't be.

I've definitely had issues with programs that can't handle ( and ) in their path names, or otherwise are poorly programmed and only work from C:\Program Files\, though. You can install the programs wherever you like, or wherever they have to be installed to work.

Darth Android

Posted 2012-06-21T16:29:38.333

Reputation: 35 133

I absolutely do not like the space-(x86) in the program files folder name. That is such a pain to type all the time - and you can't even use the good old %programfiles% environmental variable for it! M$, what were you thinking? Mr. Darth, have you tried using only one folder, then? I do notice that when I install 32 bit programs, many of the installers default to the (x86) folder. Is there a way to disable that? – bgmCoder – 2012-06-21T18:42:14.670

@BGM %PROGRAMFILES% still points to the old location, but there's %PROGRAMFILES(X86)% for the new one. There's no easy way to disable that, because when a 32-bit program launches, it's given the (x86) path whenever it asks for %PROGRAMFILES%. I personally keep my programs separated, since I often have both 32- and 64-bit version of the same application installed (developmental purposes), and it usually doesn't matter after I install the program - I don't actually type the path anywhere. – Darth Android – 2012-06-21T18:49:50.540

Okay, I found another good post in superuser, which I will add to your answer (and then accept!). That is an important tidbit about having the same application installed in both program files dirs. In the end, it all means that I can run my standalone 32bit programs from whereever I like. Thanks for your time! – bgmCoder – 2012-06-21T18:54:44.043

Okay, the "peers" didn't seem to have accepted my edit, so here is that link: http://superuser.com/questions/118628/merging-program-files-and-program-files-x86-folders-in-windows-7-64-bit

– bgmCoder – 2012-06-22T00:36:55.007