Behind the error message, you should be able to see a path. This path may be too deep, or have an invalid character in it.
This process will search the C: before it search D:.
Perhaps what will work to get you around this problem is symbolic links. Symbolic links are available in some version of Windows. I do not have access to a Windows 2003 server to know if it is available on it.
In an Administrative Command Window:
- Create a folder named POWERCHURCH on C:
- Code: Select all
mkdir c:\powerchurch
- Create a symbolic link to D:\PCPLUS10
- Code: Select all
mklink /D c:\powerchurch\pcplus10 d:\pcplus10
- Run PowerChurch 11
- Remove the symbolic link
- Code: Select all
rmdir C:\PowerChurch\PcPlus10