无法将System.Object []转换为{System.String,System.Management.Automation.ScriptBlock}类型

时间:2019-04-19 14:31:54

标签: powershell remote-access invoke-command

当我在Powershell中使用Invoke-command时,选择对象在程序上生成错误。

$pc='server1','server2'

$csv = "\\mypc\c$\Users\me\Desktop\Script\PC2\Length.csv"
$command=Get-ChildItem -Path C:\Users -Exclude C:\Users\*\AppData -Recurse -Force -File | 
where Length -gt 300mb | Sort-Object -Property Length -descending | 
Out-String -stream | Select-Object -Property $pc,Directory,Name,$properties | 
Export-Csv -Path $csv -Delimiter ';' -Encoding UTF8 -NoTypeInformation

Invoke-Command -Computername $pc -ScriptBlock {$command}

这是错误代码:

Select-Object : Impossible de convertir System.Object[] dans l’un des types suivants {System.String, System.Management.Automation.ScriptBlock}.
Au caractère C:\Users\me\Desktop\Script\ScanPC.ps1:40 : 22
+ ... ng -stream | Select-Object -Property $pc,Directory,Name,$properties |

1 个答案:

答案 0 :(得分:0)

最后我发现了我的错误,我的变量未在“ Invoke-Command”中声明。

但是,当我使用Invoke-Command在远程服务器上启动命令时,我在多个服务器上收到此错误:

Impossible de trouver un paramètre correspondant au nom « File ».
+ CategoryInfo          : InvalidArgument : (:) [Get-ChildItem], ParameterBindingException
+ FullyQualifiedErrorId : NamedParameterNotFound,Microsoft.PowerShell.Commands.GetChildItemCommand
+ PSComputerName        : Server1

我发送的命令是:

Get-ChildItem -Path C:\Users -Recurse -Force -File | 
Sort-Object -Property Length -descending | 
Select-Object -Property Directory,Name,$properties | 
Export-Csv -Path \\Server2\c$\script\LogER\file.csv -Delimiter ';' -Encoding UTF8 - 
NoTypeInformation

当我在Server2中启动Get-Child item命令并将输出保存到Server2文件时,它可以工作,但是Server1到Server2无法工作