问题描述
需要以下脚本的帮助,我可以为我指定的所有远程计算机创建磁盘空间的HTML报告;但是,如何为每个主机添加有意义的描述,即下面的图片。
下面的脚本
$Machine = @("Fakehost1","Fakehost2","fakehost3")
Get-CimInstance Win32_Logicaldisk -ComputerName $Machine -Filter "DriveType = '3'" -ErrorAction SilentlyContinue |
Select-Object PsComputerName,deviceid,@{N="disk Size (GB) "; e={[math]::Round($($_.Size) / 1073741824,0)}},@{N="Free Space (GB)"; e={[math]::Round($($_.FreeSpace) / 1073741824,@{N="Free Space (%)"; e={[math]::Round($($_.FreeSpace) / $_.Size * 100,1)}} |
sort-object -Property 'Free Space (%)' |
ConvertTo-Html -Head $Head -Title "$Title" -PreContent "<p><font size=`"6`">$Title</font><p>Generated on $date</font></p>" > $HTML
解决方法
一个快速解决方案是使用同一Select-Object
命令来整理PSComputerName对象。您已经在做很多计算的属性,还有1个...
Get-CimInstance Win32_LogicalDisk -ComputerName $Machine -Filter "DriveType = '3'" -ErrorAction SilentlyContinue |
Select-Object @{N = 'PSComputerName'; E = { $_.PSComputerName + " : Description" }},DeviceID,@{N="Disk Size (GB) ";e={[math]::Round($($_.Size) / 1073741824,0)}},@{N="Free Space (GB)";e={[math]::Round($($_.FreeSpace) / 1073741824,@{N="Free Space (%)";e={[math]::Round($($_.FreeSpace) / $_.Size * 100,1)}} |
Sort-Object -Property 'Free Space (%)' |
ConvertTo-Html -Head $Head -Title "$Title" -PreContent "<p><font size=`"6`">$Title</font><p>Generated on $date</font></p>" > $HTML
这在我的环境中测试得很好,但是您必须决定如何或实际的描述应该是什么...如果您处于AD环境中,则可以创建一个散列来保存如下描述:
$Descriptions = @{}
$Machine |
Get-ADComputer -Properties Description |
ForEach-Object{ $Descriptions.Add( $_.Name,$_.Description ) }
然后更改PSComputerName表达式,例如:
@{N = 'PSComputerName'; E = { $_.PSComputerName + $Descriptions[$_.PSComputerName] }}
这将引用哈希值并返回从AD description属性获得的值。当然,这意味着必须填充该属性。但是,证明必须从某个地方进行挖掘的观点只是一种想法。
更新:
要回答您的评论,您可以手动指定哈希。在Get-CimInstance
命令之前使用类似下面的内容。确保删除以前的广告内容...
$Descriptions =
@{
Fakehost1 = "SQL Server for some bug app..."
Fakehost2 = "File Server 1"
Fakehost3 = "Another file server"
}