Hi there,Is anyone aware of any script that can be run to a VCenter (with multiple datacentrer, clusters ) and get "esxcli system account list again" from all the hosts attached?Not good with scripting, but this will help me grab the information I need on 100ts of hosts.Thanks
PowerCLI?
Want your thread moving to the area of VMTN dedicate to PowerCLI?
Yes, How do I move it to VMTN?
Thanks
This entire forum is VMTN - look in the top-left of your screen.
I've reported your thread, asking moderators to move it here: https://communities.vmware.com/t5/VMware-PowerCLI-Discussions/bd-p/2805
You should take a look at that area and do a search, rather than expecting someone else to write a script for you.
You could do something like this
Get-VMHost -PipelineVariable esx | ForEach-Object -Process { $esxcli = Get-EsxCli -VMHost $esx -v2 $esxcli.system.account.list.Invoke() | Select @{N='VMHost';E={$esx.Name}},UserId,Description }
Thanks, Luc your help is much appreciated.
Cheers,