Oct 12, 2005 #1 zqtqzq Programmer Jul 23, 2003 61 A2 how do i programatically map a Drive to a network folder thanks
Oct 12, 2005 #2 GDGarth Technical User Aug 5, 2000 412 US You can shell out and use the Net Use command: net use T: \\nt_le\temp I use this in a batch file all the time, and it works OK. Upvote 0 Downvote
You can shell out and use the Net Use command: net use T: \\nt_le\temp I use this in a batch file all the time, and it works OK.
Oct 12, 2005 #3 bjd4jc Programmer Nov 8, 2001 1,627 US Well there are a few ways... here is the simplest: Shell "net use x: \\server\share", vbHide Upvote 0 Downvote