powershell 获取VM快照报告并输出到剪贴板,CSV或控制台。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了powershell 获取VM快照报告并输出到剪贴板,CSV或控制台。相关的知识,希望对你有一定的参考价值。

## CSV format out to clipboard
Get-Snapshot -VM * | ? { $_.PowerState -match 'PoweredOn' } | select VM,Name,Description,SizeGB | ConvertTo-Csv -NoTypeInformation | Out-Clipboard

## Out to CSV
Get-Snapshot -VM * | ? { $_.PowerState -match 'PoweredOn' } | select VM,Name,Description,SizeGB | Export-Csv -NoTypeInformation -Path snapshots.csv

## Out to console
Get-Snapshot -VM * | ? { $_.PowerState -match 'PoweredOn' } | select VM,Name,Description,@{n='SizeGB';e={'{0:N2}' -f $_.sizegb}} | ft -auto

以上是关于powershell 获取VM快照报告并输出到剪贴板,CSV或控制台。的主要内容,如果未能解决你的问题,请参考以下文章

Azure PowerShell - 虚拟机标记报告

PowerShell CLI 获取VM信息

powershell 当与UUID发生冲突时,这将获取并重置虚拟机VM的UUID

从 powershell 中的主机池列出 vm

使用 C/C++ 通过管道到/从 Powershell 设置 UTF-8 输入并获取 UTF-8 输出

如何使用Powershell脚本获取Azure VM来宾指标(性能计数器)