PowerCLI

 View Only
  • 1.  CLI Command to Get list of VM Snapshots with Name and Size

    Posted Jan 26, 2021 06:43 PM

    Get-vm | get-snapshot | select-object vm ,name, create, size but size column is blank.. Any other idea?

    jsobejana_0-1611686593523.png

     



  • 2.  RE: CLI Command to Get list of VM Snapshots with Name and Size

    Posted Jan 26, 2021 08:34 PM

     

    Moderator: Moved to PowerCLI Discussions



  • 3.  RE: CLI Command to Get list of VM Snapshots with Name and Size

    Posted Jan 26, 2021 08:58 PM

    Use SizeGB or SizeMB instead of Size.

    Get-VM | Get-Snapshot | Select-Object vm ,name, created, sizegb