I need to analyze the source code and check to see the application has hard coded values to the network directory or if the application writes to any directories in it's current location.
In a nutshell, we are worried that moving the location of the program directory might break the application for our user base.
Search through the source code looking for some mention of:
1. Your network path.
2. "cwd" (for _gtcwd), or GetCurrentDirectory.
3. GetModuleFileName (to get the path to the program's EXE).
Ultimately though, you'll just have to test it.