Vmware management with power cli 5.0

1

Click here to load reader

Transcript of Vmware management with power cli 5.0

Page 1: Vmware management with power cli 5.0

VMware vSphere® PowerCLI Quick ReferenceVirtual Machine Operations

Network Operations

Virtual Switch Operations

Port Group Operations

To list all virtual switches attached to a VM and some of their properties, use:Get-VirtualSwitch -VM (Get-VM -Name "MS Win XP SP2")

To create a new virtual switch:New-VirtualSwitch -VMHost (Get-VMHost -Name 192.168.0.10) -Name Switch02

To remove a virtual switch:$vs = Get-VirtualSwitch -VMHost 192.168.0.10 -Name VS23Remove-VirtualSwitch -VirtualSwitch $vs

To change the configuration of a virtual switch:$vs = New-VirtualSwitch -Host 192.168.0.10 -Name VirtSwitch

Set-VirtualSwitch -VirtualSwitch $vs -MTU 500

To list all the port groups and some of their properties:$vs = Get-VirtualSwitch -VMHost 192.168.0.10 -Name Switch02Get-VirtualPortGroup -VirtualSwitch $vs

To add a new port group to a virtual switch:$vs = Get-VirtualSwitch -VMHost 192.168.0.10 -Name Switch02

$vpg = New-VirtualPortGroup -VirtualSwitch $vs -Name VPG1

Other cmdlets include:

Remove-VirtualPortGroupSet-VirtualPortGroup

Resource Pool Operations

To list all resource pools on the connected VMware vSphere server and some of their properties: Get-ResourcePool

To create a new resource pool:$clusterRootRP = Get-ResourcePool -Location (Get-Cluster ResearchAndDevelopmentCluster ) -Name Resources

New-ResourcePool -Location $clusterRootRP -Name Developmen-tResources -CpuExpandableReservation $true -CpuReservationMhz 500 -CpuSharesLevel high -MemExpandableReservation $true -MemReservationMB 500 -MemSharesLevel high

Other resource pool cmdlets:

Move-ResourcePoolRemove-ResourcePool

Set-ResourcePool

Task Information

Snapshot Operations

To list all tasks for a VMware vSphere server and some of their properties:Get-Task -Server (Connect-VIServer -Server 192.168.0.10) -Status Error

To stop a task (example: stops the task of removing the VM):Stop-Task -Task (Remove-VM -VM "MS Win XP SP2" -Confirm -RunAsync)

To wait until a task is completed before continuing:Wait-Task -Task (Remove-VM -VM "MS Win XP SP2" -Confirm -RunAsync)

To list all the snapshots for all virtual machines:Get-VM | Get-Snapshot

To snapshot a VM:New-Snapshot -VM "XP SP2" -Name BeforePatch1

To remove a snapshot:Remove-Snapshot -Snapshot $snapshot1 –RemoveChildren

Other cmdlets include:Set-Snapshot

Cluster Operations

To list all the clusters on the connected VMware vSphere server and some of their properties: Get-Cluster

To add a new cluster:New-Cluster -Name MyCluster -DRSEnabled -DRSMode FullyAutomated

Other cluster cmdlets include:Move-Cluster Remove-Cluster Set-Cluster

API Operations

Returns a VMware vSphere.Net view object by specified search criteria.$vm = Get-View -ViewType VirtualMachine -Filter @{"Name" = "MS Win XP SP2"}

$hostView = Get-View -ID $vm.Runtime.Host

$hostView.Summary.Runtime

Another example:(Get-View (Get-VMHost 'ESX1' | get-view).ConfigManager.VmotionSystem).SelectVnc('vmk0')

API Reference:http://www.vmware.com/support/developer/vcsdk/visdk41pubs/ApiReference/index.html

Get-AlarmDefinition # Returns all the defined alarms on the servers you’re connected to.

Get-AlarmDefinition -Name "virtual machine*" -Enabled $false # Returns all the disabled alarm definitions with names starting with “virtual machine.”

Get-VMHost hostname | Get-AlarmDefinition # Returns all alarms that apply to the host “hostname”. Includes alarms defined on this host and alarms inherited from the parent entity, or from any ancestors in the inventory hierarchy.

Modify an alarm definition: Get-AlarmDefinition "Host memory status" | Set-AlarmDefinition -Name "Host memory" -Enabled $false # This will rename the alarm to “Host memory” and disable it.

ESXTOP through PowerCLI

Logs/Reporting/Configuration

Guest OS

Virtual Machine Host Operations

To list all VMs on the connected VMware vSphere server and some of their properties: Get-VM

To create a new VM:$esxhost = Get-VMHost "ESXHost01.mydomain.com"New-VM -Name XPVM -VMHost $esxhost -DiskMB 4000 -MemoryMB 256

To remove a VM:Remove-VM -VM myVM –DeleteFromDisk

To move a VM:Get-VM -Name XP_VC_Tech | Move-VM -Destination (Get-VMHost 192.168.0.10)

To change the configuration of a VM:Set-VM -VM "Win XP SP1" -Name "Win XP SP2" -GuestId "winXP-ProGuest" -Description "My updated Win XP virtual machine."

To run a script or command inside a VM:Invoke-VMScript -VM myVM -ScriptText "dir"

Other VM-specific cmdlets include:Start-VM Suspend-VM Stop-VM Restart-VM

The following is a list of all other VM-related cmdlets; use the Get-Help function with the -Examples switch for example uses:

Get-CDDriveNew-CDDrive

Remove-CDDriveSet-CDDrive

Get-FloppyDriveNew-FloppyDriveSet-FloppyDrive

Get-HardDiskNew-HardDiskSet-HardDisk

Get-NetworkAdapterNew-NetworkAdapter

Remove-NetworkAdapterSet-NetworkAdapter

Get-VMGuestRestart-VMGuest

Shutdown-VMGuestSuspend-VMGuest

The following is a list of vApp cmdlets; use the Get-Help function for example uses:New-vApp -Name MyvApp -CpuLimitMhz 4000 -CpuReservationMhz 1000 -Location (Get-VMHost MyHost)

Other vApp cmdlets:

Export-vApp Stop-vApp Get-vApp Set-vApp Import-vApp Start-vApp Remove-vApp

Virtual Machine Host Operations

To list all the VMware vSphere servers (VMHost) on the connected vSphere server and some of their properties:Get-VMHost

To add a new VMHost:Add-VMHost 192.168.0.10 -Location (Get-Datacenter Main) -User root -Password MyPass

To remove a VMHost:$myVMHost = Get-VMHost 192.168.0.10Remove-VMHost $myHost

To move a VMHost:Move-VMHost 192.168.0.10 -Destination (Get-Datacenter MyDatacenter)

To change the state of a VMHost:Set-VmHost -VmHost Host01 -State "Disconnected"

The followingis a list of all other VMHost-related cmdlets: use the Get-Help function for example uses:

Getting Started

http://communities.vmware.com/docs/DOC-13700

VMware vSphere PowerCLI frequently asked questions (FAQs) link: http://communities.vmware.com/docs/DOC-13700

To find out what cmdlets are available: Get-VICommand

To show documentation for all available cmdlets: Get-PowerCLIDocumentation

For help with a cmdlet: Get-Help cmdlet-name –Full | More

To connect to a VMware vSphere server. Start a new session or reestablish a previous session with a VMware vSphere server.$srv = Connect-VIServer –Server 192.168.0.10 -User Admin -Password Pass01

To disconnect from the connected vSphere server:Disconnect-VIServer -Server $srv -Confirm:$false

For a list of datastores and other properties:Get-Datastore

Other datastore cmdlets include:

New-DatastoreRemove-Datastore

Set-Datastore

The following is a list of all folder- related cmdlets; use the Get-Help function for example uses:

Get-FolderMove-FolderNew-Folder

Remove-FolderSet-Folder

The following is a list of security cmdlets; use the Get-Help function for example uses:Get-VIPermission -Entity (Get-Datacenter) -Principal Administrator

Other security cmdlets:

VMware vSphere Server

VMware® Management with PowerCLI 5.0

Dismount-ToolsMount-Tools

Update-ToolsWait-Tools

Get-VMGuestRestart-VMGuest

Shutdown-VMGuestSuspend-VMGuestCopy-VMGuestFile

Get-VMGuestNetworkInterfaceSet-VMGuestNetworkInterface

Get-VMGuestRouteNew-VMGuestRoute

Remove-VMGuestRouteInvoke-VMScript

Get-iScsiHbaTargetNew-iScsiHbaTarget

Remove-iScsiHbaTargetSet-iScsiHbaTarget

Get-NicTeamingPolicySet-NicTeamingPolicy

Get-OSCustomizationNicMappingNew-OSCustomizationNicMapping

Remove-OSCustomizationNicMappingSet-OSCustomizationNicMapping

Get-ScsiControllerNew-ScsiController

Set-ScsiControllerGet-ScsiLunSet-ScsiLun

Get-ScsiLunPathSet-ScsiLunPath

Get-VirtualPortGroupNew-VirtualPortGroup

Remove-VirtualPortGroupSet-VirtualPortGroup

Get-VirtualSwitchNew-VirtualSwitch

Remove-VirtualSwitchSet-VirtualSwitch

Get-VMGuestNetworkInterfaceSet-VMGuestNetworkInterface

Get-VMGuestRouteNew-VMGuestRoute

Remove-VMGuestRouteGet-VMHostFirewallDefaultPolicySet-VMHostFirewallDefaultPolicy

Get-VMHostFirewallExceptionSet-VMHostFirewallException

Get-VMHostHbaSet-VMHostHba

Get-VMHostNetworkSet-VMHostNetwork

Get-VMHostNetworkAdapterNew-VMHostNetworkAdapter

Remove-VMHostNetworkAdapterSet-VMHostNetworkAdapter

Add-VmHostNtpServerGet-VMHostNtpServer

Remove-VMHostNtpServerTest-VMHostSnmpGet-VMHostSnmpSet-VMHostSnmp

Get-EsxTop –Counter

# View the fields available for vCPU counter:

(Get-EsxTop –Counter –CounterName VCPU).Fields

Get-EsxTop –TopologyInfo

# View the entries of a specific topology:

(Get-EsxTop –TopologyInfo –Topology SchedGroup).Entries | Format-Table

# Retrieve the counter values for “VCPU” and “SchedGroup" counters:

Get-EsxTop –CounterName VCPU | Format-Table * -AutoSize

Get-EsxTop –CounterName SchedGroup | Format-Table * -AutoSize

Host Operations vCenter Update Manager

Get-PatchBaselineNew-PatchBaseline

Set-PatchBaselineRemediate-Inventory

Scan-Inventory

Attach-BaselineDetach-Baseline

Get-BaselineRemove-Baseline

For latest documentation, sample code, and information, visit:http://vmware.com/go/powercliupdate

Get-ComplianceDownload-Patch

Get-PatchStage-Patch

Datacenter Operations

Cluster Operations

Get-DatacenterMove-DatacenterNew-Datacenter

Remove-DatacenterSet-Datacenter

Resource Pool Operations

Get-ResourcePoolMove-ResourcePoolNew-ResourcePool

Remove-ResourcePoolSet-ResourcePool

Get-ClusterGet-DatastoreCluster

Move-ClusterNew-Cluster

Remove-ClusterSet-Cluster

Resources

For more information and help with the VMware vSphere PowerCLI, use the following cmdlets: Get-PowerCLICommunity Get-PowerCLIHelp Get-VICommand

Important third-party Web sites: http://virtu-al.net http://powerscripting.net http://www.lucd.info http://ict-freak.nl http://get-scripting.blogspot.com http://www.van-lieshout.com

VMware scripting support - http://vmware.com/go/sdksupportvSphere PowerCLI training - http://vmware.com/go/vsphereautomation

Third-party PowerCLI training from Trainsignal: http://trainsignal.com

Special thanks to our PowerCLI VIP community members for helping us improve PowerCLI.

Automating vSphere Administration ISBN-10: 0470890797

vSphere 4.0 Quick Start Guide ISBN-10: 1439263450

Managing VMware Infrastructure with Windows PowerShellISBN-10: 0982131402

Get-ErrorReportGet-PowerCLICommunity

Get-PowerCLIConfigurationSet-PowerCLIConfiguration

Get-PowerCLIDocumentationGet-PowerCLIVersion

PowerCLI Books PowerCLI Settings

VMware vSphere PowerCLI is a powerful, easy-to-use scripting interface to manage the

vSphere platform. Administrators can leverage more than 320 commandlets to

simplify everyday tasks.

For latest documentation, sample code, and information, visit:

http://vmware.com/go/powercli

O�cial VMware PowerCLI Blog:http://blogs.vmware.com/vipowershell

Apply-VMHostProfileExport-VMHostProfile

Get-VMHostProfileImport-VMHostProfile

New-VMHostProfileRemove-VMHostProfile

Set-VMHostProfileTest-VMHostProfileCompliance

Export-vAppGet-vApp

Import-vAppMove-VappNew-vApp

Remove-vAppSet-vApp

Start-vAppStop-vApp

Host ProfilesvApps

Argentina05 Sep 11 GTM -3 / Licencias On Line - Argentina Australia22 Aug 11 Canberra ACT / VMware Training - Australia29 Sep 11 Melbourne VIC / VMware Training - AustraliaAustria16 Aug 11 Wien / Magirus - Austria29 Sep 11 Wien / Magirus - Austria21 Nov 11 Wien / Magirus - AustriaChina05 Sep 11 Shanghai / Bestcom - ChinaCosta Rica05 Sep 11 Live Online / Adistec - Costa RicaCzech Republic 28 Nov 11 Prague / Arrow ECS a.s. Czech RepublicDenmark24 Oct 11 Ballerup / Arrow ECS Denmark10 Nov 11 Magirus - Herlev / Magirus - DenmarkFrance19 Sep 11 RUEIL-MALMAISON / Global Knowledge - France 29 Sep 11 Nanterre / Magirus - France04 Oct 11 Paris / IB Groupe Cegos - France10 Oct 11 Paris / Amosdec - France13 Oct 11 Nanterre / Magirus - France 28 Nov 11 RUEIL-MALMAISON / Global Knowledge - France08 Dec 11 Nanterre / Magirus - France19 Dec 11 Paris / Amosdec - France19 Dec 11 Paris / Amosdec - FranceGermany01 Sep 11 Frankfurt / Fast Lane - GY07 Sep 11 Berlin / AddOn - GY 07 Sep 11 Böblingen / AddOn - GY 07 Sep 11 Walldorf / AddOn - GY 07 Sep 11 Unterschleißheim / AddOn - GY 07 Sep 11 Köln / AddOn - GY 07 Sep 11 Dresden / AddOn - GY 08 Sep 11 Böblingen / AddOn - GY08 Sep 11 Walldorf / AddOn - GY 08 Sep 11 Unterschleißheim / AddOn - GY 08 Sep 11 Köln / AddOn - GY21 Sep 11 Berlin / Fast Lane - GY 04 Oct 11 Frankfurt / Tech Data Azlan - GY 04 Oct 11 Dusseldorf / Fast Lane - GY27 Oct 11 Hallbergmoos / Fast Lane - GY 27 Oct 11 Hallbergmoos / Fast Lane - GY 02 Nov 11 München / Knowledge - GY 08 Nov 11 Hamburg / Fast Lane - GY

16 Nov 11 Berlin / AddOn - GY 16 Nov 11 Böblingen / AddOn - GY 16 Nov 11 Walldorf / AddOn - GY16 Nov 11 Unterschleißheim / AddOn - GY 16 Nov 11 Köln / AddOn - GY16 Nov 11 Dresden / AddOn - GY 17 Nov 11 Böblingen / AddOn - GY 17 Nov 11 Walldorf / AddOn - GY 17 Nov 11 Unterschleißheim / AddOn - GY 17 Nov 11 Köln / AddOn - GY 29 Nov 11 Stuttgart / Fast Lane - GY 13 Dec 11 Frankfurt / Fast Lane - GY 19 Dec 11 Hamburg / Global Knowledge - GY 26 Jan 12 Böblingen / AddOn - GY 26 Jan 12 Walldorf / AddOn - GY 26 Jan 12 Unterschleißheim / AddOn - GY 26 Jan 12 Köln / AddOn - GY 26 Mar 12 Böblingen / AddOn - GY 26 Mar 12 Walldorf / AddOn - GY 26 Mar 12 Unterschleißheim / AddOn - GY26 Mar 12 Köln / AddOn - GY29 May 12 Böblingen /AddOn - GY29 May 12 Walldorf / AddOn - GY29 May 12 Unterschleißheim / AddOn - GY 29 May 12 Köln / AddOn - GY05 Jul 12 Böblingen / AddOn - GY05 Jul 12 Walldorf / AddOn - GY05 Jul 12 Unterschleißheim / AddOn - GY05 Jul 12 Köln / AddOn - GY13 Sep 12 Böblingen / AddOn - GY13 Sep 12 Walldorf / AddOn - GY 13 Sep 12 Unterschleißheim / AddOn - GY13 Sep 12 Köln / AddOn - GY25 Oct 12 Böblingen / AddOn - GY25 Oct 12 Walldorf / AddOn - GY25 Oct 12 Unterschleißheim / AddOn - GY25 Oct 12 Köln / AddOn - GY06 Dec 12 Böblingen / AddOn - GY06 Dec 12 Walldorf / AddOn - GY06 Dec 12 Unterschleißheim / AddOn - GY06 Dec 12 Köln / AddOn - GYHong Kong29 Aug 11 Hong Kong / Kenfil - Hong KongHungary20 Oct 11 Budapest / Szamalk Ltd - Hungary15 Dec 11 Budapest / Szamalk Ltd - HungaryIndia12 Sep 11 New Delhi / Koenig Solutions Private Limited

PowerShell for View Operations

The following operations may not integrate with the core PowerCLI cmdlets as expected.

Auto Deploy Operations

Switch-ActiveDeployRuleSetRepair-DeployImageCache

Add-DeployRuleCopy-DeployRule

Get-DeployRuleNew-DeployRule

Remove-DeployRuleSet-DeployRule

Get-DeployRuleSetSet-DeployRuleSet

Repair-DeployRuleSetComplianceTest-DeployRuleSetCompliance

Apply-ESXImageProfileGet-VMHostAttributes

Get-VMHostImageProfileGet-VMHostMatchingRules

Image Builder Operations

Get-LicenseDataManager

Licensing Operations

vCloud Operations

O�cial vSphere PowerCLI Training latest course information. All courses subject to change without notice. http://vmware.com/go/vsphereautomation.

vApp Operations

How to Connect to vCenter Server or ESX and ESXi

Security Operations

Datacenter Operations

To list all datacenters from a VMware vSphere server:Get-Datacenter

To add a new datacenter:New-Datacenter -Name France

Other datastore cmdlets:

Move-DatacenterRemove-Datacenter

Set-Datacenter

DRS Rules

Retrieve a list of DRS rules for the specified clusters:Get-DrsRule -Cluster (Get-Cluster “Production”)

Other DRS rule cmdlets:

New-DrsRuleRemove-DrsRule

Set-DrsRule

Managing Events Alarms

Datastore Operations Folder Operations

Israel23 Oct 11 Hertzelia / Hi-Tech College - IsraelJapan05 Sep 11 Tokyo / HP Education - JapanNorway08 Sep 11 Oslo / Global Knowledge - Norway26 Sep 11 Oslo / Arrow ECS Norway AS - Norway13 Oct 11 Oslo / Global Knowledge - Norway17 Nov 11 Oslo / Global Knowledge - Norway28 Nov 11 Oslo / Arrow ECS Norway AS - Norway08 Dec 11 Oslo / Global Knowledge - Norway26 Jan 12 Oslo / Global Knowledge - NorwayPoland01 Sep 11 Krakow / Arrow ECS Services Sp. z.o.o. - PolandSpain14 Sep 11 Madrid / Afina - Iberia28 Sep 11 Barcelona / Afina - Iberia18 Oct 11 Madrid / Afina - Iberia16 Nov 11 Madrid / Afina - Iberia21 Nov 11 Madrid / Afina - Iberia24 Nov 11 Barcelona / Afina - IberiaSweden19 Dec 11 Kista / Arrow ECS Sweden ABSwitzerland17 Oct 11 Luzern / Digicomp - CH17 Oct 11 Zürich / Digicomp - CH17 Oct 11 St. Gallen / Digicomp - CH17 Oct 11 Bern / Digicomp - CHThe Netherlands12 Sep 11 Gouda / XTG - NL20 Sep 11 Nieuwegein / Global Knowledge - NLUnited Kingdom30 Aug 11 Leeds / QA-IQ Ltd 30 Aug 11 London EC2N / Global Knowledge Network Training Limited - UK 22 Sep 11 London / QA-IQ Ltd 29 Sep 11 Hampshire RG27 / HP Education - UK 07 Nov 11 Bracknell Berks / Magirus - UK17 Nov 11 London / QA-IQ Ltd24 Nov 11 Leeds / QA-IQ Ltd08 Dec 11 Hampshire RG27 / HP Education - UKUnited States14 Sep 11 Live Online (MST) / HP Education - United States 14 Dec 11 Live Online (MST) / HP Education - United States

PowerShell

PowerCLI

vSphere vCloud Licensing

ImageBuilder

AutoDeploy

UpdateManager

View

Copy-VMGuestFileGet-VMGuestNetworkInterfaceSet-VMGuestNetworkInterface

Get-VMGuestRouteNew-VMGuestRoute

Remove-VMGuestRouteSet-VMGuestRouteGet-VMQuestionSet-VMQuestion

Get-VMResourceConfigurationSet-VMResourceConfiguration

Get-VMStartPolicySet-VMStartPolicy

Restart-VMHostStart-VMHostStop-VMHost

Suspend-VMHostGet-VMHostAccountNew-VMHostAccountSet-VMHostAccount

Remove-VMHostAccountSet-VMHostAdvancedConfigurationGet-VMHostAdvancedConfiguration

Get-VMHostDiagnosticPartitionSet-VMHostDiagnosticPartition

Get-VMHostFirewallDefaultPolicySet-VMHostFirewallDefaultPolicy

Get-VMHostFirewallExceptionSet-VMHostFirewallException

Get-VMHostFirmwareSet-VMHostFirmware

Get-VMHostModuleSet-VMHostModule

Get-VMHostNetworkSet-VMHostNetwork

New-VMHostNetworkAdapterRemove-VMHostNetworkAdapter

Set-VMHostNetworkAdapterAdd-VMHostNtpServerGet-VMHostNtpServer

Remove-VMHostNtpServer*-VMHostPatch*-VMHostRoute

Get-VMHostServiceSet-VMHostService

Restart-VMHostServiceStart-VMHostServiceStop-VMHostService

Get-VMHostSnmpTest-VMHostSnmpSet-VMHostSnmp

Get-VMHostStartPolicySet-VMHostStartPolicy

Get-VMHostStorageGet-VMHostSysLogServerSet-VMHostSysLogServer

New-VIPermissionRemove-VIPermission

Set-VIPermission

Get-VIPrivilegeGet-VIRoleNew-VIRole

Remove-VIRoleSet-VIRole

Get-CDDriveNew-CDDrive

Remove-CDDriveSet-CDDrive

Get-FloppyDriveNew-FloppyDrive

Remove-FloppyDriveSet-FloppyDrive

Copy-HardDiskGet-HardDisk

New-HardDiskRemove-HardDisk

Set-HardDiskNew-NetworkAdapter

Remove-NetworkAdapterSet-NetworkAdapter

Add-PassthroughDeviceGet-PassthroughDevice

Remove-PassthroughDeviceGet-Snapshot

New-SnapshotRemove-Snapshot

Set-SnapshotGet-Template

Move-TemplateNew-Template

Remove-TemplateSet-Template

Get-UsbDeviceRemove-UsbDevice

Get-VMMove-VMNew-VM

Restart-VMRemove-VM

Set-VMStart-VMStop-VM

Suspend-VM

Get-VMQuestionSet-VMQuestion

Get-VMResourceConfigurationSet-VMResourceConfiguration

Get-VMStartPolicySet-VMStartPolicy

Get-ErrorReportGet-Log

Get-LogTypeGet-OSCustomizationSpec

New-OSCustomizationSpecRemove-OSCustomizationSpec

Set-OSCustomizationSpecGet-Stat

Get-StatIntervalNew-StatInterval

Remove-StatInterval

Set-StatIntervalGet-StatType

Get-VICredentialStoreItemNew-VICredentialStoreItem

Remove-VICredentialStoreItemGet-VMHostSysLogServerSet-VMHostSysLogServer

Get-VMResourceCongurationGet-VIEvent

Get-VIPropertyNew-VIProperty

Compare-EsxImageProfileExport-EsxImageProfile

Get-EsxImageProfileNew-EsxImageProfile

Set-EsxImageProfile Get-EsxSoftwareChannel

Add-EsxSoftwareDepotRemove-EsxSoftwareDepot

Add-EsxSoftwarePackageGet-EsxSoftwarePackage

Remove-EsxSoftwarePackage

Connect-CloudDisconnect-Cloud

Search-CloudGet-CloudCatalog

Get-CloudExternalNetworkGet-CloudUserGroup

Get-CloudMediaGet-CloudNetworkPoolGet-CloudOrganization

Get-CloudOrganizationNetwork

Get-CloudOrganizationVDCGet-CloudProviderVDC

Get-CloudUserRoleGet-CloudUser

Import-CloudVAppTemplateGet-CloudVAppTemplate

Get-CloudVAppImport-CloudVApp

Get-CloudViewGet-ViewByCloudView

Get-CloudVM

Add-AutomaticPoolUpdate-AutomaticPool

Add-AutomaticLinkedClonePoolUpdate-AutomaticLinkedClonePool

Get-ComposerDomainGet-ConnectionBroker

Update-ConnectionBrokerGet-DesktopPhysicalMachine

Get-DesktopVMGet-EventReport

Get-EventReportListGet-GlobalSetting

Update-GlobalSettingGet-LicenseSet-License

Send-LinkedCloneRebalanceSend-LinkedCloneRecompose

Send-LinkedCloneRefreshGet-LocalSession

Send-LocalSessionRollbackAdd-ManualPool

Update-ManualPoolAdd-ManualUnmanagedPool

Update-ManualUnmanagedPool

Get-MonitorGet-Pool

Remove-PoolAdd-PoolEntitlementGet-PoolEntitlement

Remove-PoolEntitlementGet-ProfileDisk

Get-TerminalServerAdd-TerminalServerPool

Update-TerminalServerPoolGet-RemoteSession

Send-SessionDisconnect

Send-SessionLogo�Get-User

Remove-UserOwnershipUpdate-UserOwnership

Add-ViewVCGet-ViewVC

Remove-ViewVCUpdate-ViewVCSend-VMReset

Get-HAPrimaryVMHostAdd-VMHostGet-VMHost

Move-VMHostRemove-VMHostRestart-VMHost

Set-VMHostStart-VMHostStop-VMHost

Suspend-VMHostGet-VMHostAccount

New-VMHostAccountSet-VMHostAccount

Remove-VMHostAccountGet-VMHostAdvancedConfigurationSet-VMHostAdvancedConfiguration

Get-VMHostAuthenticationSet-VMHostAuthentication

Get-VMHostAvailableTimeZoneGet-VMHostDiagnosticPartitionSet-VMHostDiagnosticPartition

Get-VMHostDiskFormat-VMHostDiskPartition

Get-VMHostDiskPartitionGet-VMHostFirmwareSet-VMHostFirmware

Get-VMHostModuleSet-VMHostModule

Get-VMHostPatchInstall-VMHostPatch

Get-VMHostProfileRequiredInputGet-VMHostRoute

New-VMHostRouteRemove-VMHostRoute

Set-VMHostRouteGet-VMHostService

Restart-VMHostServiceSet-VMHostService

Start-VMHostServiceStop-VMHostServiceGet-VMHostStorageSet-VMHostStorage

Get-VMHostStartPolicySet-VMHostStartPolicy

Get-VMHostSysLogServerSet-VMHostSysLogServer

Get-AdvancedSettingNew-AdvancedSetting

Remove-AdvancedSettingSet-AdvancedSetting

Get-AlarmActionNew-AlarmAction

Remove-AlarmActionGet-AlarmActionTrigger

New-AlarmActionTriggerRemove-AlarmActionTrigger

Get-AlarmDefinitionSet-AlarmDefinition

Get-AnnotationSet-Annotation

Get-CustomAttribute

New-CustomAttributeRemove-CustomAttribute

Set-CustomAttributeNew-Datastore

Remove-DatastoreGet-DatastoreSet-Datastore

Copy-DatastoreItemApply-DrsRecommendation

Get-DrsRecommendationGet-DrsRule

New-DrsRuleRemove-DrsRule

Set-DrsRuleGet-EsxCli

Get-EsxTopMove-FolderNew-FolderGet-Folder

Remove-FolderSet-Folder

Get-InventoryMove-Inventory

Remove-InventoryGet-NetworkAdapter

Get-TaskStop-TaskWait-Task

Get-VIAccountGet-View

Get-VIObjectByVIViewGet-VIPermission

New-VIPermissionRemove-VIPermission

Set-VIPermissionGet-VIPrivilege

New-VIPropertyRemove-VIProperty

Get-VIRoleNew-VIRole

Remove-VIRoleSet-VIRole

Connect-VIServerDisconnect-VIServer