How to MAP the drive

  • Thread starter Thread starter Iouri
  • Start date Start date
I need to MAP the network drive with VB.NET.
Thank you

Open a Command Prompt window and enter:

net use /?

It will give you the syntax you need. Then, just use the Process class
to invoke the command from your VB app.
 
I need to MAP the network drive with VB.NET.
Thank you

Open a Command Prompt window and enter:

net use /?

It will give you the syntax you need. Then, just use the Process class
to invoke the command from your VB app.
 
Back
Top