If you need a drive letter (some applications don't like UNC style paths that start with a machine-name) you can "map a drive" to a UNC path. Right-click on "My Computer" and select Map Network Drive... or use this command line:
NET USE z: \server\c$\folder1\folder2
NET USE y: \server\d$
Note that you can map drive-to-drive or drill down and map to sub-folder.
By default, Windows makes the root of each drive available (provided you've got Administrator privileges) as (e.g.) \\server\c$. These are known as Administrative Shares.
发布评论
评论(3)
如果不是XP家庭版,可以使用
\\servername\c$
Mark Brackett 的注释:
If it's not the Home edition of XP, you can use
\\servername\c$
Mark Brackett's comment:
如果您需要驱动器号(某些应用程序不喜欢以计算机名称开头的 UNC 样式路径),您可以将驱动器“映射”到 UNC 路径。 右键单击“我的电脑”并选择映射网络驱动器...或使用此命令行:
NET USE z: \server\c$\folder1\folder2
NET USE y: \server\d$
请注意,您可以映射驱动器-驱动或向下钻取并映射到子文件夹。
If you need a drive letter (some applications don't like UNC style paths that start with a machine-name) you can "map a drive" to a UNC path. Right-click on "My Computer" and select Map Network Drive... or use this command line:
NET USE z: \server\c$\folder1\folder2
NET USE y: \server\d$
Note that you can map drive-to-drive or drill down and map to sub-folder.
默认情况下,Windows 使每个驱动器的根目录可用(前提是您具有管理员权限),例如
\\server\c$
。 这些被称为管理共享。By default, Windows makes the root of each drive available (provided you've got Administrator privileges) as (e.g.)
\\server\c$
. These are known as Administrative Shares.