Get-PC/Private/ExportTo-Excel.ps1

9 lines
246 B
PowerShell
Raw Normal View History

2024-06-11 18:27:55 +00:00
function ExportToExcel{
param (
$GetPCArray
)
$timestamp = get-date -Format "MMddhhmmssms"
$outfile = "$env:TMP\getpcoutput$timestamp.csv"
$GetPCArray | Export-Csv $outfile -NoTypeInformation
Invoke-Item $outfile
}