我最近开始了与Powershell的旅程。我的IT经理认为给我项目完成是个好主意。我越来越了解Powershell,但我遇到了很大障碍,需要一些帮助。我的代码末尾的ConvertTo-HTML工作,就像我在指定目录中获取我需要的文件一样。但是,我无法获取HTM文件中显示的数据。有什么建议?同样,这是我自己尝试的第一个脚本。
$computers = Get-ADComputer -Filter {Name -like '[enternamehere]*'} | Select -Expand DNSHostName
foreach ($computer in $computers)
{
Invoke-Command -Computer $computer -scriptblock {
(Get-WmiObject -Class Win32_ComputerSystem -Property Name).Name
Get-ScheduledTask -TaskName *[entertasknamehere]* | Get-ScheduledTaskInfo
}
}
ConvertTo-Html | Out-file -FilePath "[enterfilepathhere]"