• Skip to primary navigation
  • Skip to content

jdgreen.io

The personal blog of James Green

  • Home
  • Technology
    • Announcements
    • Industry
    • Reviews/Guides
    • Tech Field Day
    • Interviews
  • Health
    • Food
    • Biohacking
    • Fitness
  • Faith
  • Book Notes
    • Business Books
    • Faith Books
    • Health Books
    • Technology Books
  • About
  • Show Search
Hide Search

VMFS

Find VMFS3 Datastores

James Green · Oct 16, 2013 ·

I was looking to find all the VMFS3 datastores still existing in an environment today so that we could migrate them to their new VMFS5 counterparts. I used this PowerCLI one-liner which I thought someone else might find useful. Let me know if it helps!

 

[code language=”powershell”]Get-Datastore | Select Name,FileSystemVersion,CapacityGB | Where {
$_.FileSystemVersion -lt 5 -and $_.FileSystemVersion -ne $null
} | Sort Name | ft -autosize[/code]

Copyright © 2021 · Monochrome Pro on Genesis Framework · WordPress · Log in