954,323 Members — Technology Publication meets Social Media
Username:
Password:
Lost login information?
Have something to say? Contribute New Article Reply to this Article

Help on dedicated network drive please.

Wotcha, folks.

My first post, so please bear with me - I tend to ramble.

I've just set up a small network at work. 2 XP machines sharing a folder - no problems. I used the HomePlug network thingy here .

I want to write a small Visual Basic program that will share and update data accross this network.

The problem is, is that I can't figure out where to locate the data. The shared folder is located here:

//user/shared folder

....but that doesn't help when I want to load or save data to a specific place.

Is there a way I can dedicate a harddrive or a standalone machine to act as a server - and then refer to it as Z:? So that regardless of which networked machine you're at, saving data to Z: will always direct to that specific location / drive?

I hope this makes sense. As i say, i do tend to ramble when I'm confused.

Any way, look forward to any help that might pass this way.

Thanks for listening.


Jack.

JacktheNoob
Newbie Poster
3 posts since Jan 2005
Reputation Points: 10
Solved Threads: 0
 
Wotcha, folks. My first post, so please bear with me - I tend to ramble. I've just set up a small network at work. 2 XP machines sharing a folder - no problems. I used the HomePlug network thingy here . I want to write a small Visual Basic program that will share and update data accross this network. The problem is, is that I can't figure out where to locate the data. The shared folder is located here: //user/shared folder ....but that doesn't help when I want to load or save data to a specific place. Is there a way I can dedicate a harddrive or a standalone machine to act as a server - and then refer to it as Z:? So that regardless of which networked machine you're at, saving data to Z: will always direct to that specific location / drive? I hope this makes sense. As i say, i do tend to ramble when I'm confused. Any way, look forward to any help that might pass this way. Thanks for listening. Jack.

You should be able to map the shared folder to a designated drive. Try the following:Go to start, choose run, type in \\user\sharedfolder , hit return. A window to your shared folder will pop up.
go to "Tools", choose map network drive.
Enter \\user\sharedfolder in the blank for folder
Ensure 'reconnect at logon' is checked
Continue through the drive map wizard.
Enjoy your network!
On a side note, I have problems on my 7 person LAN with people disconnecting their drives (deteting them because they are silly) so I've come up with a batch script that remaps network drives for me. I'll post it here for you to use. I drop it into startup and then it will detach and remap any drives that I need people to have access to. It's pretty simple and has worked for about 2 years now. Enjoy!

rem **********************************************
rem *		 Please Wait............		 *
rem *		 Setting Up Network Drives.		*
rem *											*
rem **********************************************
rem
rem
@Echo Off
net use h: /d
net use h:  <a href="file:///computershare1here">\\computer\share1\here</a> 
net use s: /d
net use s:  <a href="file:///computershare2here">\\computer\share2\here</a>


Hopefully that will help you out. :)

TKS
Posting Pro in Training
470 posts since Jan 2004
Reputation Points: 108
Solved Threads: 18
 

having had persistent drive mapping problems in the past too, I am stealing that snippet! Thanks TKS!

w1r3sp33d
Junior Poster
186 posts since Dec 2004
Reputation Points: 13
Solved Threads: 3
 

TKS - you are a life-saver, mate.

That did the job fantastically, just what I was after.

Again - thanks.

Jack.

JacktheNoob
Newbie Poster
3 posts since Jan 2005
Reputation Points: 10
Solved Threads: 0
 

NP Jack!

Let us here at Daniweb know if we can help you out with anything else!

TKS
Posting Pro in Training
470 posts since Jan 2004
Reputation Points: 108
Solved Threads: 18
 

This article has been dead for over three months

Post: Markdown Syntax: Formatting Help
You