远程文件共享上的Get-Item cmdlet不通过invoke-command返回结果

时间:2019-04-27 14:31:35

标签: powershell

我运行一个简单的Get-Item cmdlet以获得以下结果:

(Get-Item -Path \\priam\coste\ZEDMB5T-Intransit-report\* -Include DAILYREPORT_TES_MSS_20190426_*.XLS).name

enter image description here

我使用invoke命令尝试相同的操作,但是它没有给我任何东西:

invoke-command -ScriptBlock {(Get-Item -Path \\priam\coste\ZEDMB5T-Intransit-report\* -Include DAILYREPORT_TES_MSS_20190426_*.XLS).name} -computername localhost -Credential Get-Credential

凭据没有问题,因为它确实适用于以下命令:

invoke-command -ScriptBlock {"testing"} -computername localhost -Credential Get-Credential

enter image description here

我也可以访问该路径:

 Get-Acl -Path \\priam\coste\ZEDMB5T-Intransit-report | Format-List -Property *

enter image description here

我正在以管理员身份运行Powershell ISE,如标题栏中所示: enter image description here

我正在使用PS的最新版本: enter image description here

我在这里做什么错了?

0 个答案:

没有答案