Difference between revisions of "PowerCLI"
From HackerNet
Helikopter (talk | contribs) (Created page with "Category:VMware PowerCLI är ett Windows Powershell-gränssnitt för hantering av VMware vSphere. PowerCLI distribueras som en Powershell snapin, och innehåller över 370...") |
Helikopter (talk | contribs) m |
||
Line 12: | Line 12: | ||
Get-Datastore | Get-Datastore | ||
Get-VM -Datastore Datastore1 | Move-VM -Datastore Datastore2 -DiskStorageFormat thin | Get-VM -Datastore Datastore1 | Move-VM -Datastore Datastore2 -DiskStorageFormat thin | ||
+ | |||
+ | Visa alla notes | ||
+ | Get-VM | Select-Object -ExpandProperty Notes |
Revision as of 20:55, 17 June 2015
PowerCLI är ett Windows Powershell-gränssnitt för hantering av VMware vSphere. PowerCLI distribueras som en Powershell snapin, och innehåller över 370 Powershell-cmdlets för att hantera och automatisera vSphere och vCloud.
"a powerful command-line tool that lets you automate all aspects of vSphere management, including network, storage, VM, guest OS and more" - VMware
Installation
Ladda ner installationsfilen från VMwares hemsida. Anslut till din ESXi/vCenter med:
Connect-VIServer
Exempel
Flytta alla vms från en datastore till en annan.
Get-Datastore Get-VM -Datastore Datastore1 | Move-VM -Datastore Datastore2 -DiskStorageFormat thin
Visa alla notes
Get-VM | Select-Object -ExpandProperty Notes