Sunday, March 6, 2016

VMware PowerCLI add 1 TB Thin HDD to a vm

clear
Add-PSSnapin VMware.VimAutomation.Core
$Admin ="tech-jockey\jockey-admin"
$Password = Get-Content c:\vccred\securestring.txt | convertto-securestring
$Credential = new-object -typename System.Management.Automation.PSCredential -argumentlist $Admin, $Password
Connect-VIServer tech-jockey-vCenter -SaveCredentials -Credential $Credential

clear
#Add 1.7 TB HDD to vm
$vmm=get-folder -name vm-fol1 |get-vm

foreach($vm in $vmm)
{

$ds=get-vm -name $vm| get-datastore


New-HardDisk -vm $vm  -Datastore $ds -StorageFormat Thin -CapacityKB 1.835e+9
}

No comments:

Post a Comment

Thanks for showing interest in tech-jockey.

Content of this blog has been moved to GITHUB

Looking at current trends and to make my content more reachable to people, I am moving all the content of my blog https://tech-jockey.blogsp...