无法弄清楚如何运行脚本

时间:2020-05-11 16:56:11

标签: powershell cmd powershell-4.0 powershell-remoting cmdlet

我将如何运行以下内容:

基本上是这样。

我希望PowerShell可以查看我的文档,其中包含2000台计算机的列表 我希望它查看每台计算机的C驱动器,并在文件夹

中查找最后添加的内容

有人可以帮我扩展以下内容吗?

$Computers = Get-Content "c:\temp\bentest.txt" 

invoke-command -ComputerName  { Get-ChildItem -Path 'C:\\analyst\data\ntx' -Recurse } | Where-Object {$_.name  -Like "*NTX"} |  Sort-Object lastwritetime | Select-Object -Last 1

0 个答案:

没有答案