View Single Post
Old 03-12-2008, 14:17   #5
Raistlin
Inactive
 
Join Date: Feb 2004
Location: There's no place like 127.0.0.1
Services: Depends on the person and the price they're offering
Posts: 12,384
Raistlin is seeing silvered starsRaistlin is seeing silvered starsRaistlin is seeing silvered stars
Raistlin is seeing silvered starsRaistlin is seeing silvered starsRaistlin is seeing silvered starsRaistlin is seeing silvered starsRaistlin is seeing silvered starsRaistlin is seeing silvered starsRaistlin is seeing silvered starsRaistlin is seeing silvered starsRaistlin is seeing silvered starsRaistlin is seeing silvered starsRaistlin is seeing silvered starsRaistlin is seeing silvered stars
Re: Map network drive from xp to 2008

If all else fails, save this as something like net_logon.bat and put it in your XP startup directory (you'll need to change details appropriately):

Code:
@echo off

echo Setting up network drives, please wait.....

NET USE X: \\<Server>\<FolderPath> /USER:<Server>\<UserName> <Password>

echo Setup complete.....

pause
This Maps \\<Server>\<FolderPath> to X using the credentials <UserName> and <Password> for an account that exists on the server. Provided the account has access to that share it should work ok.

---------- Post added at 14:14 ---------- Previous post was at 14:14 ----------

Forgot to say, this actually re-maps the drive every time you login rather than mapping it persistently.

---------- Post added at 14:17 ---------- Previous post was at 14:14 ----------

Oh, yeah, and it's not a very pretty/elegent solution either

In fact, it's a god awful hack
Raistlin is offline   Reply With Quote