The simplest solution to do is to compile your exe with the CRT statically linked instead of dynamically linked.
Open your project with Visual Studio.
Select from the menu Project->Properties (or right click on the project and select "Properties: from the Solution Explorer).
From the tabbed tree control: Configuration Properties : C/C++ : Code Generation
Change the "Runtime library" setting from "Multi-threaded Debug DLL (/MDd)" to "Multi-threaded Debug (/MTd)"
Rebuild, recopy, and all shoudl be good
Otherwise, the other solution is to actually build an MSI that bundles the VC9 runtime bits. Build a setup project that includes these MSM merge modules:
"C:\Program Files\Common Files\Merge Modules\Microsoft_VC90_DebugCRT_x86.msm"
"C:\Program Files\Common Files\Merge Modules\policy_9_0_Microsoft_VC90_DebugCRT_x86.msm"
(If you are running 64bit, these files are in your "c:\program files (x86)" directory.)
Finally, if this doesn't work, you probably got some other DLL (MFC?) that might need to be copied as well. I believe when you get the "application configuration is incorrect" error, you can look at the System Event logs (Control Panel->Admin tools->Event Viewer). There is usually a detailed error message about the missing DLL.