Its working perfectly. What is the difference in the way i mapped to
a network drive using 'Map Network Drive' option from explorer and Net
Use command?
Also, i have a problem related to this. I have an installation package
which can be installed from a network drive. Once installation package
is launched, it should know from which drive its launched. For this, i
am using GetCommandLine() MFC function. Problem is, suppose,
installation package say setup.exe is located in Z

network location).
When setup.exe is launched with standard user privileges, then
GetCommandLine() is returning Z:\setup.exe. But when setup.exe is
launched with admin privileges, it's returning with UNC path i.e.
<UNCPath>\setup.exe
Now i checked the above behaviour by mapping network drive using
Net Use command. In this case, even when setup.exe is launched with
admin privileges, GetCommandLine() is returning Z:\setup.exe which i
want.
I cant tell the user to map to a network drive using Net Use
command. He maps using 'Connect to a network drive' option available
in the explorer. Can we achieve the same behaviour with this option?
thanx for the help...