It is my pleasure to announce the release of PowerCLI 12.3. Here are some of the key highlights for this release.
Release Highlight
Workload Management
- Support for vSphere with Tanzu with vSphere Networking
- New cmdlet New-WMNamespaceNetworkSpec to create a network specification for Namespace network
vSphere
- Support for Native Key Provider
- Cross vCenter VM Cloning
vSAN
- vSAN file service Snapshot Management
Horizon
- Latest Horizon API 8.2 binding
SRM
- Latest SRM API 8.4 binding
Let’s explore some of these features in detail.
Workload Management
With the release of PowerCLI 12.3, additional parameters are introduced to Enable-WMCluster cmdlet. These new parameters allow you to enable a workload management cluster with vSphere networking.
Check out the updated syntax below.
Also, a new cmdlet New-WMNamespaceNetworkSpec has been introduced, which allows you to create a network specification for the Namespace network.
Let’s check out the sample script to enable workload management with vSphere Networking.
Do edit and customize the values If you choose to re-use the script for your environment.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 |
#Connect to vCenter. Edit values as appropriate. $vc = "192.168.x.x" $vc_user = "administrator@vsphere.local" $vc_password = "******" Connect-VIServer -User $vc_user -Password $vc_password -Server $vc $Cluster = Get-Cluster -Name "cluster" $datacenter = Get-Datacenter "datacenter" $datastore = Get-Datastore -Name "vsanDatastore" $vmhosts = Get-VMHost $tkgcl = "tkg-cl" $ntpservers = @("time.vmware.com") $ManagementVirtualNetwork = get-virtualnetwork "VM Network" # #Extracting CA Cert from the HAProxy VM $HAProxyVMname = "haproxy-demo" $AdvancedSettingName = "guestinfo.dataplaneapi.cacert" $Base64cert = get-vm $HAProxyVMname |Get-AdvancedSetting -Name $AdvancedSettingName while ([string]::IsNullOrEmpty($Base64cert.Value)) { Write-Host "Waiting for CA Cert Generation... This may take a under 5-10 minutes as the VM needs to boot and generate the CA Cert (if you haven't provided one already)." $Base64cert = get-vm $HAProxyVMname |Get-AdvancedSetting -Name $AdvancedSettingName Start-sleep -seconds 2 } Write-Host "CA Cert Found... Converting from BASE64" $cert = [Text.Encoding]::Utf8.GetString([Convert]::FromBase64String($Base64cert.Value)) # #Enable Workload Management with HAProxy and vSphere Networking Write-Host "Enabling Workload Management" Get-Cluster $Cluster | Enable-WMCluster ` -SizeHint Tiny ` -ManagementVirtualNetwork $ManagementVirtualNetwork ` -ManagementNetworkMode StaticRange ` -ManagementNetworkGateway "192.168.x.x" ` -ManagementNetworkSubnetMask "255.255.255.0" ` -ManagementNetworkStartIPAddress "192.168.x.x" ` -ManagementNetworkAddressRangeSize 5 ` -MasterDnsServerIPAddress @("192.168.x.x") ` -MasterNtpServer @("time.vmware.com") ` -ServiceCIDR "10.96.0.0/24" ` -EphemeralStoragePolicy "kubernetes-demo-storage" ` -ImageStoragePolicy "kubernetes-demo-storage" ` -MasterStoragePolicy "kubernetes-demo-storage" ` -ContentLibrary $tkgcl ` -HAProxyName $HAProxyVMname ` -HAProxyAddressRanges "192.168.24.208-192.168.24.222" ` -HAProxyUsername "admin" ` -HAProxyPassword "vmware" ` -HAProxyDataPlaneAddresses "192.168.x.x:5556" ` -HAProxyServerCertificateChain $cert ` -WorkerDnsServer "192.168.111.1" ` -PrimaryWorkloadNetworkSpecification ( New-WMNamespaceNetworkSpec ` -Name "network-1" ` -Gateway "192.168.24.1" ` -Subnet "255.255.255.0" ` -AddressRanges "192.168.24.2-192.168.24.126" ` -DistributedPortGroup "Workload24" ` ) # |
vSphere Security
vSphere Native Key Provider, a new feature in vSphere 7 Update 2, provides a way within vSphere to enable data-at-rest protections like vSAN Encryption, VM Encryption, and vTPM straight from vSphere itself. You can visit https://core.vmware.com/native-key-provider to learn more about the native key provider.
PowerCLI 12.3 extends the cmdlets to support the native key provider. Below are some of the operations which will help you manage the native key provider.
Filter the Native Key Provider
Get-KeyProvider cmdlet retrieves all key providers from the vCenter Server system. A new parameter -Type is introduced to filter the key provider based on its type.
1 2 |
#Get all the Native Key Provider from vCenter Server PS C:\> Get-KeyProvider -Type NativeKeyProvider |
Export the Key Provider Configuration
It is a good idea that you back up the native key provider, especially if the native key provider is a default key provider.
PowerCLI 12.3 introduces a new cmdlet, Export-KeyProvider to backup (Export) the native key provider.
Note: You can only specify the NativeKeyProvider value to the -KeyProvider parameter.
1 2 |
#backup native key provider PS C:\> Export-KeyProvider -KeyProvider NativeKeyProvider -FilePath .\SecurePath -Password ‘xxxx-xxxx’ |
Import the key provider configuration
Caution: As explained earlier, if you have already configured the native key provider, make sure that you do not delete it. The vSphere UI provides you a conscious choice before you actually hit delete.
PowerCLI 12.3 introduces a new cmdlet, Import-KeyProvider to import (Restore) the native key provider if you need to import the key provider.
12 #Restore native key providerPS C:\> Import-KeyProvider -FilePath .\SecurePath -Password ‘xxxx-xxxx’
Configure the VM encryption with Native key provider
You can now use PowerCLI to configure VM encryption using the native key provider. The Set-VM, Set-HardDisk, New-VM, and New-HardDisk cmdlets are updated to support the native key provider.
1 2 3 4 |
#Restore native key provider PS C:\> $vm = Get-VM TestVM PS C:\> $keyProvider = Get-KeyProvider HBT-Native-KeyProvider PS C:\> Set-VM $vm -KeyProvider $keyProvider |
vSAN File Service Snapshot Management
The vSAN file share snapshot is a built-in feature in vSAN that provides a point-in-time image of a vSAN file share. You can check out the details here.
There are 3 new cmdlets that has been introduced to manage the vSAN File Service snapshot.
New-VsanFileShareSnapshot
This cmdlet creates a vSAN file share snapshot for the specified vSAN file share.
1 2 |
#Creates a new vSAN File Share Snapshot PS C:\> New-VsanFileShareSnapshot -Name "FileShareSnapshot1" -FileShare $fileShare |
Get-VsanFileShareSnapshot
This cmdlet retrieves vSAN file share snapshots based on name or other filters.
1 2 |
#Retrieves all vSAN File Share Snapshot PS C:\> Get-VsanFileShareSnapshot |
Remove-VsanFileShareSnapshot
This cmdlet removes vSAN file share snapshot.
1 2 |
#Removes vSAN File Share Snapshot PS C:\> Remove-VsanFileShareSnapshot -FileShareSnapshot $vSanSnapshot -Confirm:$false |
Other Improvements and bugfixes
There are some notable enhancements done that will help you with day-to-day PowerCLI operations. For example, there is a new parameter -Reason is introduced with Set-VMHost, Stop-VMHost, and Restart-VMhost to specify the reason for respective VMhost Power operation via PowerCLI.
Similarly, The performance of Foreach-parallel has dramatically improved, and bug fixed the issues reported by the PowerCLI community.
Conclusion
The PowerCLI 12.3 is a small release in terms of feature offerings. However, it is quite a significant release for vSphere Security and vSphere with Tanzu. The support for vSphere with Tanzu with vSphere Networking will ease up the deployment of the tanzu environment. Similarly, The PowerCLI support for native key providers extends the automation capabilities to configure Native Key Provider during the build phase itself.
Concluding this, I recommend you to visit the PowerCLI 12.3 release notes to know more about improvements and bug fixes. Also, Do check out the PowerCLI home page for anything and everything related to PowerCLI.
very good article , thanks i used it ^_^
thank you for this article
your article is so convincing that I never stop myself to say something about it. You’re doing a great job Man,Keep it up.
Good article! I will follow you to create useful articles like this.
nice
Oh sorry sir
thanks for this information. keep posting
Thank you very much Sir, glad that i found this one. This is really a great article and great read for me. It’s my first visit to your blog and i have found it so useful and informative specially this article.
Nice
Very Helpfull
Nice and helpfull article
nice and helpfull article.. thanks for this information.
very helpfull article. thanks for this information.
nice article thanks really nice keep posting.
very nice you said it right sir thanks for the info
very nice you said it right sir thanks for the info
ok very nice you said it right sir thanks for the info
Remember those late mornings? When do you have to rush your way for getting everything done? Blow drying is a common and very widely used technique to speed dry the hair instantly. Blow drying comes with pros as well as cons. While it quickly dries your hair, it even damages your hair with its heat.
https://nuway4hair.com/blogs/nuway-blogs/3-easy-steps-to-a-perfect-home-blow-dry
very well article i like your content writing style
Thanks,this was amazing to see it. This information helps me alot.
ok very nice you said it right sir thanks for the info
very well article i like your content writing style
https://www.kuttanadpackage.in
That’s really a detailed article but I don’t know why I am having error on line # 32
very well article i like your content writing style
very well article i like your content writing style
Thanks for your helpful information. I have been struggling to find many questions about this issue. I will follow you!
very well article i like your content writing style
It was great, thank you
alirezamehrabi
wow best
blogfa
Such a helpful article. Thanks for that
Nice article .Thanks for that
Thank you so much for sharing, nice article.
It was great. Good luck with your website. Thanks
thank you
Group B is for Gazetted officers
Oh sorry sir
This is very useful information
thank you
This article very useful for your users
Thank you for this article
nice information keep sharing
ok very nice you said it right sir thanks for the info
thank you
nice information keep sharing
Here your article is very nice also check sarkari job find and thanks …
click my name
We provides you with best quality E Board, electric longboard for sale and electric skateboards. Get the best Motorized Skateboard at the cheapest prices.
We provides you with best quality E Board, electric longboard for sale and electric skateboards. Get the best Motorized Skateboard at the cheapest prices.
good information keep sharing
What a thrilling post. It is extremely chock-full of useful information. Thanks for such a great info.
Many thanks.
Thanks for sharing such wonderful stuff. Keep sharing and keep up the good work…
Watch Out Status Videos From Status-Video.Com
Tamiloneindia.net is a live Tamil news Portal providing live online Tamil One India news updates, Movie News in Tamil, Sports News in Tamil, Business News in Tamil all Tamil news, Kollywood Cinema News in Tamil Astrology videos, art culture recipes, and more. Only at Oneindia Tamil, Latest Thatstamil News in Tamil Find all the latest news headlines, most popular stories, videos, and pictures about Thatstamil on MyKhel Tamil. Thank you so much.
Thank you very much.
Very Well Article I like your content Its Amazing NJOKER
Watch Online Pinoy Lambingan Tv Shows For All Episode In HD Quality Pinoy Tv, Pinoy Teleserye, Pinoy Tambayan Provide On Our PinoyTv
An actor, a political satirist, underestimated even by his supportersAn actor, a political satirist, underestimated even by his supporters
Watch Online Pinoy Lambingan Tv Shows For All Episode In HD Quality Pinoy Tv.
At GRAH, we have a diverse and talented team of Veterinary professionals. You can trust the skills of our vets, leaving the care and treatment of your pet in their capable hands. Let us earn your trust through becoming one of our veterinary families at GRAH
Are You Looking for updated and verified Coupon Code and Discount Vouchers? Visit and Avail > INFOVOUCHERS
Thanks for uploading
Regards – INFOVOUCHERS
Thanks for sharing this useful information,regards.
Thanks for sharing this useful information,regards.
Thanks for sharing this useful information,regards.
https://www.inhindi.co.in
Very Well Article I like your content Its Amazing
very nice article to read!
The results of all competitive exams are shared on the sarkariresult site with links in its result page section, so that the user does not get confused while viewing the result.
Nice article to read!
RPSC School Lecturer (Sanskrit Department) Online Form 2022
Sarkari Results Plus informs you that Rajasthan Public Service Commission (RPSC) has announced for the new vacancy of RPSC School Lecturer (Sanskrit Department) Online Form 2022.
https://sarkariresultsplus.com/rpsc-school-lecturer-sanskrit-department-online-form-2022/
It is a good idea that you back up the native key provider, especially if the native key provider is a default key provider.
https://docs.google.com/document/d/1uYXuqQ_wp_84rAK94hyq0yqps6dX-TJPv7M3Yc7Q-9Q/edit?usp=sharing
Getting started with the VMware PowerCLI
thanks for this information
Sir, I like your website very much, that’s why I come to your website every day.
Every year lakhs of students wait for the exam results after giving job exams and they looking for government results on Google. If you are looking for your exam result then you can also get your Sarkari Naukri Exam Result in minutes through our website.
Kya Aapko Pata hai ki kon se buisness me jayada Munafaa hai sabse jyada kamai wala Buisness Aagar Nahi pata hai toh mere Article me Aapko mai saari jaankaari mil jayegi
All The Interested Candidates Read The Notification of The Following Vacancy. Read and Check Are You Eligible For This Vacancy and Read The How to Apply The Online Form of This Job.
wow nice informational and deep article
i am very glad to read this arthicle it was a very deep and informational blog
Kinemaster Pro Mod APK is one of the best video editing modded apk having no watermark.
couponmarina Mission Is To Provide Daily Usable Products In Discounted Offers And Deals. The World Is Now A Bit Expensive And Our Lifestyles Are Getting An Upgrade With Time. That Why, Couponmarina Is Here With Pleasing Discount Offers, Promo Codes, Deals And Coupon Codes.
dáváme přednost ctít několik dalších webových webových stránek na internetu, i když nejsou spojeny s námi, tím, že na ně odkazujeme. Níže jsou některé webové stránky, které opravdu stojí za vyzkoušení
https://www.safetotosite.pro/
Thank You, Sir Your Site Is Loock NIce But helpful
One of the most important equipment and goods that has been of special importance in human life since the past is carpets and textile products; Because the use of these devices helps in creating a sense of comfort and peace in humans. Meanwhile, one of the most unique and popular types of carpets are hand-woven carpets, which are among the ancient Iranian products. Here, the question that may arise for buyers is, what is a handmade carpet? Be careful that the word “carpet” is an Arabic phrase that has a broad meaning and refers to items such as carpets and rugs.
https://www.cyruscrafts.com/categories/20/handmade-rugs-carpets
paket wisata jogja 1 hari https://yuliatourtrans.com/paket-wisata-jogja-murah/
Great post! Thanks for sharing and keep posting more.
Once you’ve agreed to the terms of service, hotmail will send you a verification email. You’ll need to click on the link in this email to confirm that the email address you provided is valid. Once you’ve done this, your new Hotmail account will be created and you’ll be able to log in and start using it.
your article is so convincing that I never stop myself to say something about it. You’re doing a great job Man,Keep it up.
Nice knowledge gaining article. This post is really the best on this valuable topic. plombier
This is a fantastic website and I can not recommend you guys enough. plombier
Aesthetic wallpapers & backgrounds for laptops are a new post that is popular day by day and here are in great collections
Backyard lighting ideas are various creative and functional ways to light up your backyard. They can include the use of different types of lighting fixtures, such as string lights, lanterns, spotlights, uplights, solar lights, fire pits, and pathway lighting, among others. The purpose of backyard lighting is to create a welcoming and comfortable outdoor space for relaxation, entertainment, and socializing. The right backyard lighting ideas will depend on personal preferences, budget, the size and layout of the backyard, and the intended use of the space.
i have a qustion in this artical you mean fish easy to buy , i thick this website will help you
Online Fish Delivery in Kolkata
your article is so convincing that I never stop myself to say something about it. You’re doing a great job Man,Keep it up.
whoistrending.org have uses Offical trends api to collect daily trending data from google, youtube and twitter and categorized country wise so that you can easily get daily trending topics in every country and compare what most of the people trends in your country.
hey , i loved this blog post , it really helped me,
this is a persian website that educate you for any topic,
naghdpackage.com
thanks