0

如果我使用其 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

怎么修?

4

1 回答 1

2

“Z”不是有效路径

Copy-Item -Path D:\ps_*able.ps1 -Destination Z:\
于 2014-09-18T18:21:20.020 回答