While trying to debug the code, we have a number of DLL that are included in the project and we get the messge as "Loaded symbols for C:\WINNT\System32\......" . I found it very strange but one of the DLL was being picked from E:\WINNT\System32, since this path was not present the debugging was giving me an error that the DLL is not found. I created this path and copied the DLL in the folder , this resolved the issue and now .. the code that comes now is..........

Loaded symbols for 'C:\WINNT\system32\OLEPRO32.DLL'
Loaded symbols for 'C:\WINNT\system32\MSMAPI32.ocx'
Loaded symbols for 'C:\WINNT\system32\RNR20.DLL'
Loaded symbols for 'C:\WINNT\system32\MSAFD.DLL'
Loaded symbols for 'C:\WINNT\system32\WSHTCPIP.DLL'
Loaded symbols for 'E:\WINNT\system32\RPCLTC1.DLL'
Loaded symbols for 'C:\WINNT\system32\DBNMPNTW.DLL'

You can see that the DLL RPCLTC1.DLL is being picked up from E drive.
Why is this happening ? How can we change the path ?
Any help is appreciated.

Thanks
Parth