how do I change all my vms from isopath to client device?
C:\Program Files (x86)\VMware\Infrastructure\vSphere PowerCLI
get-vm | where { $_ | get-cddrive | where { $_.ConnectionState.Connected -eq "true" -and $_.ISOPath -like "*.ISO*"} } | set-cddrive - .... ?