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
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
Net use [drive letter] [unc path]
example:
net use z: \\servername\share$
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.
"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.