- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Is it possible to access the appinfo data from the new v11 tools using powercli?
For those unaware of the new appinfo plugin
appInfo - Collects the information about running applications inside the guest and publishes the information to a guest variable.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Yes, like this
$vmName = 'MyVM'
$vm = Get-VM -Name $vmName
$vm.ExtensionData.Config.ExtraConfig | where{$_.Key -match "guestinfo.appInfo"} |
Select -ExpandProperty Value
---------------------------------------------------------------------------------------------------------
Was it helpful? Let us know by completing this short survey here.
Blog: lucd.info Twitter: @LucD22 Co-author PowerCLI Reference