Situatie
In cazul in care dorim sa aflam ce masini sunt hostate pe un windows server core, se pot folosi pasii de mai jos.
Solutie
Pasi de urmat
Ne conectam pe serverul respectiv.
Deschidem powershell prin tastarea comenzii de mai jos in CMD:
Powershell
Pentru a vedea toate masinile virtuale hostate, folosim comanda de mai jos:
Get-VM
Comanda de mai jos afiseaza toate masinile virtuale hostate pe Server1 (host)
Get-VM -ComputerName Server1 | Where-Object {$_.State -eq ‘Running’}
Aceasta comanda arata toate masinile virtuale din Cluster-ul de care apartin:
Get-ClusterGroup | ? {$_.GroupType -eq ‘VirtualMachine’ } | Get-VM
Leave A Comment?