0

我正在尝试获取包含集群中所有虚拟机的预置磁盘大小的 html 报告。我正在尝试列出集群内的所有虚拟机:

$VMs = get-ClusterGroup | ? {$_.GroupType -eq "VirtualMachine" } | Get-VM

这就像一个魅力。但是,当我尝试循环时:

foreach ($VM in $VMs)
{
 Get-VM -VMName $VM.Name | Select-Object VMId | Get-VHD
}

当我运行它时,每个不在我当前集群节点上的虚拟机都会出错。因此,每个节点我都运行以下命令:

Get-VM -VMName * | Select-Object VMId | Get-VHD | ConvertTo-HTML -Proprerty path,computername,vhdtype,@{label='Size(GB)');expression={$_.filesize/1gb -as [int]}} > report.html

这也很有效。但这需要登录到集群中的每个 Hyper-V 主机。如何让集群中的所有虚拟机从一个节点以 HTML 格式输出?

4

1 回答 1

0

这样的事情怎么样?

$nodes = Get-ClusterNode
foreach($node in $nodes)
{
    $VMs=Get-VM -ComputerName $node.name
    foreach($VM in $VMs)
    {
        $VM.VMName
        Get-VHD -ComputerName $node.Name -VMId $VM.VMId | ft vhdtype,path -AutoSize
    }
}

据我所知;您需要节点名称作为每个 Get-VHD 调用-ComputerName-VMId出于某种原因,将 Get-VM 传递给 Get-VHD 不会提供节点名称。

您正在寻找什么,上面没有提供结果作为要格式化的单个对象(html 或其他)。然而,有一个内联ForEach-Object可以解决问题。

这可能是您正在寻找的:

Get-VM -ComputerName (Get-ClusterNode) | 
ForEach-Object {Get-VHD -ComputerName $_.ComputerName -VMId $_.VMId} | 
ConvertTo-HTML -Property path,computername,vhdtype,@{label='Size(GB)';expression={$_.filesize/1gb -as [int]}} > report.html

在一行中:

Get-VM -ComputerName (Get-ClusterNode) | ForEach-Object {Get-VHD -ComputerName $_.ComputerName -VMId $_.VMId} | ConvertTo-HTML -Property path,computername,vhdtype,@{label='Size(GB)';expression={$_.filesize/1gb -as [int]}} > report.html

希望这能满足您的需求。享受!

于 2016-05-09T23:08:57.897 回答