You can connect two computers and share drives over a LAN network or an Internet connection. Before starting, you might want to make sure that the following services were up and running (already running by default):
- TCP/IP
- NetBEUI
- Remote Access Service
Make sure both computers are connected to Internet (or LAN if sharing over local network) and follow these steps:
- Obtain the IP adress of Computer A. Take 60.120.90.230 for an example.
- On Computer A, enable sharing by right clicking on the desired drives and select “Sharing and Security…”. Specify the share name. For example, SharedDrive
- On Computer B, open Command Prompt. Type:
NET USE X: \\60.120.90.230\SharedDrive /USER:uname passwd
- Replace uname and passwd with the appropriate user name and password of Computer A.
Now SharedDrive on Computer A will be mapped to drive X: of Computer B, and Computer B can access the drive just like a local disk.
From Chami