我有一个哈希表,其中包含组件名称和 Codecount ,如下所示:
Name Value
----- ------
Comp1 2000
Comp2 3000
如果将其导出到Excel中,则很容易呈现。
如何将此哈希表从PowerShell导出到Excel?
答案 0 :(得分:10)
对export-csv的另一次投票
&{$hash.getenumerator() |
foreach {new-object psobject -Property @{Component = $_.name;Codecount=$_.value}}
} | export-csv codecounts.csv -notype
答案 1 :(得分:5)
要创建Excel文件,请使用以下内容:
$ht = @{"comp1"="2000";"comp2"="3000"}
$excel = new-Object -comobject Excel.Application
$excel.visible = $true # set it to $false if you don't need monitoring the actions...
$workBook = $excel.Workbooks.Add()
$sheet = $workBook.Sheets.Item(1)
$sheet.Name = "Computers List"
$sheet.Range("A1","A2").ColumnWidth = 40
$sheet.range('A:A').VerticalAlignment = -4160 #align is center (TOP -4108 Bottom -4107 Normal)
$sheet.Cells.Item(1,1) = "Name"
$sheet.cells.Item(1,2) = "Value"
$index = 2
$ht.keys | % {
$sheet.Cells.Item($index,1) = $_
$sheet.Cells.Item($index,2) = $ht.item($_)
$index++
}
$workBook.SaveAs("C:\mylist.xls")
$excel.Quit()
请记住,Excel进程需要在任务管理器中终止或使用此功能:
function Release-Ref ($ref) {
[System.Runtime.InteropServices.Marshal]::ReleaseComObject([System.__ComObject]$ref) | out-null
[System.GC]::Collect()
[System.GC]::WaitForPendingFinalizers()
}
修改上一个脚本的行:
Release-Ref $workbook
Release-Ref $sheet
$excel.Quit()
release-Ref $excel
答案 2 :(得分:1)
使用Export-CSV并使用Excel打开该CSV文件
答案 3 :(得分:1)
考虑哈希表:
$ht = @{"c1" = 100; "c2" = 200}
迭代所有键并将哈希表键和值添加到文件中:
$ht.keys | % { add-content -path myFile.csv -value $("{0},{1}" -f $_, $ht.Item($_)) }