Windows – Installing 32 bit app to c:\program files in 64 bit Windows 7

64-bitwindows 7x86

I have a custom built 32-bit app that I'm trying to install. When I ran the installer (ol' setup.exe) it installed to Program Files(x86) as all good 32 bit apps seem to. Unfortunately it looks like this app is hardcoded about a million different ways to load configuration files in c:\program files. Literally "C:\Program Files\AppName\FileName".

What are my options here? Can I attempt to reinstall to C:\Program Files? What should I look out for?

Best Answer

Symlink:

mklink /d "C:\Program Files\AppName" "C:\Program Files (x86)\AppName" 

(Requires Administrator.)