PowerCLI One-liner: Check for Fast-Provisioning Enabled/Disabled on Org vDC in vCD

Ran across something and needed to be able to check to see what vDC’s had Fast-Provisioning enabled in my lab.  Here is a quick one-liner to list them and if they are enabled or disabled:

Get-OrgVdc | Get-CIView | Select Name, UsesFastProvisioning | Sort Name

Figured I would throw this up here for fun…