如果我使用其IP地址10.10.10.10
,以下代码会将文件复制到remote_computer$j = "remote_computer"
New-PSDrive -Name Z -PSProvider FileSystem -Root \\$j\share -Credential $credentials -ErrorAction Stop
Copy-Item -Path D:\ps_*able.ps1 -Destination \\10.10.10.10\share
Remove-PSDrive -name Z
如果我使用Z,即psdrive
,此脚本不会复制文件$j = "remote_computer"
New-PSDrive -Name Z -PSProvider FileSystem -Root \\$j\share -Credential $credentials -ErrorAction Stop
Copy-Item -Path D:\ps_*able.ps1 -Destination Z
Remove-PSDrive -name Z
如何解决?
答案 0 :(得分:2)
" Z"不是有效路径
Copy-Item -Path D:\ps_*able.ps1 -Destination Z:\