Search This Blog

Thursday, 27 October 2022

Powercli: VM uptime

Powercli VM uptime 



Get-Stat -Entity $VMNAME -State sys.osuptime.latest -RealTime -MaxSample 1


Get-Stat -Entity $VMNAME -State sys.uptime.latest -RealTime -MaxSample 1

$VMNAME.ExtensionData.Runtime.BootTime

Ansible_Notes

   ansible -i inventory.ini -m ping all   # inventory.ini it will ping to the hosts which are in inventory # ansible -i inventory.ini -m pin...