我正在尝试通过-FromSession
cmdlet的Copy-Item
参数从远程会话中复制一些日志文件。在呼叫机器上我安装了PS版本5。运行脚本时出现以下错误:
Copy-Item : A parameter cannot be found that matches parameter name 'FromSession'.
当我在源计算机上调用$PSVersionTable
时,我得到以下输出:
PSVersion 5.0.10586.672
PSCompatibleVersions {1.0, 2.0, 3.0, 4.0...}
BuildVersion 10.0.10586.672
CLRVersion 4.0.30319.42000
WSManStackVersion 3.0
PSRemotingProtocolVersion 2.3
SerializationVersion 1.1.0.1
我还检查会话状态,它是打开的:
$session | select State
State
-----
Opened
脚本:
$globalTargets = @("machine1.domain", "machine2.domain")
function Copy-LogsFromRemotes {
param (
[Parameter(Mandatory=$true)]
$Destination
)
$password = "xxxxx" | ConvertTo-SecureString -AsPlainText -Force
$credentials = new-object -typename System.Management.Automation.PSCredential -argumentlist "domain\user",$password
foreach ($target in $globalTargets) {
$session = New-PSSession -ComputerName $target -Credential $credentials
if (!(Test-Path $Destination)){
New-Item -Path $Destination -ItemType Directory
}
$copyDestination = ("{0}\{1}" -f $Destination, $session.ComputerName)
if (!(Test-Path $copyDestination)){
New-Item -Path $copyDestination -ItemType Directory
}
Invoke-Command -Session $session -ScriptBlock { Test-Path "D:\Logs"}
Copy-Item -LiteralPath "D:\Logs" -Destination $copyDestination -Verbose -FromSession $session
Remove-PSSession -Session $session
}
}
我是否还需要目标机器上的PS版本5?实际上PS版安装在目标上。
任何提示?
答案 0 :(得分:4)
当您尝试从不同的驱动器复制文件或向不同的驱动器复制文件时,您可能会遇到此PowerShell 5.0错误。如果其他系统上不存在该驱动器,则会发生此错误。
作为一种解决方法,您可以:
答案 1 :(得分:1)
当您在源文件名(例如c:\*.log
)中放置通配符时,我也看到了同样的错误。根据{{3}},-Path参数不接受通配符。
答案 2 :(得分:0)
当我收到错误时,我必须指定完整的源路径。
答案 3 :(得分:0)
这似乎是PowerShell中的一个错误。对我有用的是确保您尝试复制的远程文件(例如D:\ remotefolder \ mylog.log)已存在于本地计算机上(完全相同的驱动器和路径)。
更新:Bug似乎已修复(至少在5.1.14409.1018中)
# Workaround PowerShell bug by creating local dummy copy of remote file we want to fetch
"" | Set-Content "D:\remotefolder\mylog.log"
# Copy down remote file, overwriting dummy copy with -Force
Copy-Item -FromSession $app01 -Path "D:\remotefolder\mylog.log" -Destination "D:\localfolder\" -Force
当然,您还必须事先在本地创建D:\remotefolder
。
如果您在本地和远程没有相同的驱动器号,则无效。你必须确保你这样做。