Tip
You can tell Windows XP to not add new shared resources to My Network Places automatically. To do this, launch Control Panel’s Folder Options icon, display the View tab, and then deactivate the Automatically Search for Network Folders and Printers check box.
Network addresses use the universal naming convention (UNC), which uses the following format:
\\ComputerName\ShareName
Here, ComputerName is the name of the computer, and ShareName is the name given to the shared resource. For example, the following UNC path refers to a shared resource named Downloads on a computer named ZEUS:
\\ZEUS\Downloads\
If the UNC refers to a drive or folder, you can use the regular path conventions to access subfolders on that resource. For example, if the resource Downloads on ZEUS is a drive and if that drive has a Device Drivers subfolder, you can refer to that subfolder as follows:
\\ZEUS\Downloads\Device Drivers
The UNC offers you several alternative methods of accessing shared network resources:
Select Start, Run to open the Run dialog box. Type the UNC for a shared resource and then click OK to open the resource in a folder window.
In a 32-bit application’s Open or Save As dialog box, you can use a UNC name in the File Name text box.
At the command prompt, type START followed by the UNC path. Here’s an example:
START \\ZEUS\Downloads\
At the command prompt, you can use a UNC name as part of a command. For example, to copy a file named archive.zip from \\ZEUS\Downloads\ to the current folder, you’d use the following command:
COPY \\ZEUS\Downloads\archive.zip