Loading...
写在开始最近有用到PowerShell来做些操作,其中用到了创建软链接和硬链接的方法。简单列一下PowerShell创建软链接(符号链接)New-Item -ItemType SymbolicLink -Path "新建的符号链接文件或文件夹路径" -Target "源文件或源文件夹"PowerShell创建硬链接New-Item -ItemType ...