1

我已经编写了一个代码片段,并且我已经在其中合并了写入主机我希望写入主机和转换 html 来运行这个片段,任何人都可以帮助我。

 $arrComputers = get-Content -Path "C:\Computers.txt"
    foreach ($strComputer in $arrComputers)
    {
        $colItems = get-wmiobject -class "Win32_BIOS" -namespace "root\CIMV2" `
        -computername $strComputer
       foreach ($objItem in $colItems)
       {
         write-host "Computer Name: " $strComputer
          write-host "BIOS Version: " $objItem.BIOSVersion
      }

       $colItems1 = get-wmiobject -class Win32_logicaldisk -Filter "DeviceID = 'C:'" -computername $strComputer
       foreach ($objItem1 in $colItems1)
       {
        $e=$objItem1.freeSpace/1GB
         write-host "Total Space:  " $e
         }

        $colItems4 = Get-WMIObject -class Win32_PhysicalMemory  -computername $strComputer
      $colItems5=$colItems4 | Measure-Object -Property capacity -Sum 
      foreach ($objItem4 in $colItems5)
   {
      $e4=$colItems5.Sum/1GB
      write-host "Memory :  " $e4
   }


    }
4

1 回答 1

1

您可以使用 -Fragment 参数。

$pcName = "Computer Name: $strComputer" | ConvertTo-HTML -Fragment;
$biosV = "BIOS Version: $objItem.BIOSVersion" | ConvertTo-HTML -Fragment;

ConvertTo-HTML -Body "$pcName $biosV" -Title "List of Computers" |  Out-File c:\listofcomputers.html

只需在具有相同内容的 Write-Host 之后创建变量,并在脚本末尾使用 converTo-HTML。

通过这种方式,您也可以通过使用 param 标签甚至 table 标签来设置 HTML 输出的样式,以获得更好的布局,然后是干净的无菌布局。

于 2013-07-17T14:43:58.857 回答