Forum Discussion
SharveshS
Mar 16, 2021Copper Contributor
How to get CSV output for Get-VM and Get-VMNetworkAdapter properties using single PowerShell script?
PS C:\User> Get-VM -Name * | Select-Object -Property Name,State,CPUUsage | Export-Csv -Path E:\MYfolder/report.csv -NoTypeInformation #giving csv expected results alone
PS C:\User> G...