This content has been marked as final.
Show 2 replies
-
1. Re: A trivial question, but I can't find the answer
RvdNieuwendijk Nov 30, 2011 7:36 AM (in response to StuartB201110141)Hi Stu,
you can get the annotations with the Get-Annotation cmdlet. Like this:
Get-VM | ` Select-Object Name,@{N="Install date";E={($_|Get-Annotation -CustomAttribute "Install date").Value}} | ` Sort-Object Powerstate
Regards, Robert
Message was edited by: RvdNieuwendijk
-
2. Re: A trivial question, but I can't find the answer
RParker Nov 30, 2011 7:49 AM (in response to StuartB201110141)