To mount a network drive from the cmd prompt on windows I can do, for example:
net use z: \\vboxsvr\somedrive
How would I disconnect it from the cmd prompt?
To mount a network drive from the cmd prompt on windows I can do, for example:
net use z: \\vboxsvr\somedrive
How would I disconnect it from the cmd prompt?
net use z: /delete
Ignacio answered the immediate problem, but one hint: There is a /help parameter for any subprogram of the net command. So, net use /help
shows you everything you need to know for connecting to network resources, and with net /help
you get an overview of the complete program.