标签:
1 虚拟分区安装: 2 3 Subst b: %windir%\assembly 4 Subst f: D:\ftp.hceg.cn 5 虚拟分区删除: 6 7 Subst b: /d
1 •修改文件夹所在磁盘的卷标为空; 2 • 通过注册表项 HKLM/Software/Microsoft/Windows/CurrentVersion/Explorer/DriveIcons/ K /DefaultLabel下的默认键值为想显示的名称即可。(K对应具体的磁盘分区。)
示例:
1 D:\Program Files (x86)\Microsoft Visual Studio 14.0\VC>Subst f: D:\ftp.hceg.cn 2 3 D:\Program Files (x86)\Microsoft Visual Studio 14.0\VC>help subst 4 将路径与驱动器号关联。 5 6 SUBST [drive1: [drive2:]path] 7 SUBST drive1: /D 8 9 drive1: 指定要分配路径的虚拟驱动器。 10 [drive2:]path 指定物理驱动器和要分配给虚拟驱动器的路径。 11 /D 删除被替换的 12 (虚拟)驱动器。 13 14 不带参数键入 SUBST,以显示当前虚拟驱动器的列表。 15 16 D:\Program Files (x86)\Microsoft Visual Studio 14.0\VC>subst 17 B:\: => C:\Windows\assembly 18 F:\: => D:\ftp.hceg.cn 19 20 D:\Program Files (x86)\Microsoft Visual Studio 14.0\VC>
标签:
原文地址:http://www.cnblogs.com/endv/p/5373277.html