Disable
Provisioning in all linked clone pools:
Gets
list of all View related cmdlets:
Gets
list of pools, max number of VM's, and datastores associated:
$pools = get-pool
$pools | Update-AutomaticLinkedClonePool -isProvisioningEnabled:$false
get-command | where {$_.modulename -match 'vmware.view'}
#Below is so you can include it into the
#add-pssnapin.ps1 under your View installation directory
function get-viewcommand {get-command | where {$_.modulename -match 'vmware.view'}}
#Helps in making sure your pools are distributed across evenly among datastores.
Get-Pool | Select Pool_ID, MaximumCount, DatastorePaths
No comments:
Post a Comment