Answers:
您正在寻找命令“ mklink”。
Microsoft Docs或ss64.com中的文档和示例。
链接示例:
// To create a symbolic link named MyDocs from the root directory to the \Users\User1\Documents directory, type:
mklink /d \MyDocs \Users\User1\Documents
可能还有其他方法,但是我熟悉的方法是mklink:
C:\>mklink
Creates a symbolic link.
MKLINK [[/D] | [/H] | [/J]] Link Target
/D Creates a directory symbolic link. Default is a file
symbolic link.
/H Creates a hard link instead of a symbolic link.
/J Creates a Directory Junction.
Link specifies the new symbolic link name.
Target specifies the path (relative or absolute) that the new link
refers to.
正如@inf所说,mklink是Vista和更高版本的解决方案。
对于2000 / XP,可以使用fsutil hardlink。请注意,与mklink不同,硬链接不适用于驱动器。
fsutil hardlink
仅适用于Vista和上面。Windows 2000和XP是否有较旧的版本?
Link Shell Extension可以创建符号链接(以及其他功能)。尼斯上下文菜单集成。适用于最新的Windows版本并频繁更新。
只要微软建议在使用PowerShell的作为,因为超过5年前和一个命令解释器cmd.exe
正成为传统应用程序这个问题缺乏PowerShell的答案:
New-Item -path ~\Desktop\hosts -itemType SymbolicLink -target c:\Windows\System32\Drivers\etc\hosts
从Powershell v5.0开始运行