0

Possible Duplicate:
Useful Command-line Commands on Windows

we need to mape a network folder on 2008server and client is XP; we want to use the command line on windows XP

3 Answers3

4

Net use [drive letter] [unc path]

example:

net use z: \\servername\share$
squillman
  • 37,618
  • 10
  • 90
  • 145
Nate
  • 3,378
  • 14
  • 21
3

the syntax is Net Use x: \\servername\sharename. X can be replaced with drive letter not already in use. If a drive letter is already in use and you need to reuse it, try Net use x: /del to remove the mapping first.

uSlackr
  • 6,337
  • 21
  • 36
1

"network folder on 2008server and client is XP"

If the XP account is different from the 2008 (server) account, then the "/user:[username]" option should also be included.

net use [drive letter] \\[servername]\[sharename] /user:[username]

It will then prompt for the password of the remote user on the server.

user48838
  • 7,393
  • 2
  • 17
  • 14