Hello,
i need a way with PowerCLI to get 2 things about a VM :
- the date of the last recompose
- the base image
I can get it from the horizon server :
(sorry it's in French).
I'm using the hv.helper module, and the connection to the server is OK.
I can get a VM, and display a lot of information :
$nomVM = ”W7-Bureau-42”
$vm = Get-View –viewtype VirtualMachine -filter @{“Name”=$nomVM}
$vm.config
but i'm unable to find what i need...
Does someone know where i can find that ?
Thank in advance !