Tag: PowerCLI
Running VMFS Unmap via PowerCLI
Ben Liebowitz
- 0
- 4696
Starting in vSphere 5.5, VMware introduced a new command in the esxcli namespace that allows deleted blocks to be reclaimed on thin provisioned LUNs that support the VAAI UNMAP primitive. You can run the command without any maintenance window, and the reclaim mechanism has been enhanced: Reclaim disk space size can be specified in blocks instead of a percentage value…
PowerCLI Script to Change Tag Assignment
Ben Liebowitz
- 0
- 3426
I have an environment where, using tags, unused VMs are automatically shutdown. This is done by creating a Tag Category called “Suspend Date” and when the current value is in the past, your VM gets shutdown. I don’t have many VMs that I own in this “test” environment, but the ones that I DO have there, I want to be…
Using vSphere Tags to Check for Pending Reboot State
Ben Liebowitz
- 0
- 884
You may have seen my blog post on the Test-PendingReboot PowerShell module. I’ve been using it a lot lately and had the thought to use vSphere Tags to check pending reboot state. In my environment, we normally check for pending reboot states before patching. If a server is in a pending reboot state, it won’t receive the patches from SCCM,…
The Pending Reboot Nightmare… PowerShell to the Rescue!
Ben Liebowitz
- 5
- 1690
My company has been having issues dealing with servers in a pending reboot state for quite a while. Part of it stems from using SCCM to deploy patches and having the patch deployment set to suppress the reboot and our Operations Team reboots the servers manually. Well, some months require multiple reboots and we get stuck in the rabbit hole…
PowerShell Script To Get vMotion Events
Ben Liebowitz
- 0
- 1403
Recently, I had the need to get a list of vMotion events to pass to management. I attempted to use the Get-VIEvent cmdlet for this, but found it wasn’t easy to only pull logs from one specific cluster. I attempted to use the -Entity option and direct it to the cluster I wanted, but that didn’t work well. So I…
Using PowerCLI to Create a Local Scratch Partition
Ben Liebowitz
- 0
- 500
My company recently purchased some Dell Servers with ESXi installed to local SD cards. The issue we had was that the 8gb SD cards that came with the server and there wasn’t enough space on the cards for a scratch partition. We ordered the servers with a single 300gb HD in order to get the RAID controller, so we decided…
vDocumentation: Check Out These Scripts To Automate Your Documentation!
Ben Liebowitz
- 0
- 536
Now that VMworld 2017 US has come to a close, many of the sessions are already up on youtube to watch. One of the ones I watched yesterday was SER2077BU – Achieve Maximum vSphere Stability with PowerCLI Assisted Documentation. My friend, Ariel Sanchez Mora (@arielsanchezmor), and his friend, Edgar Sanchez (@EdmSanchez13), put together these scripts to automatically document your environment.…
PowerCLI Script to Check Host Over-commitment Percentage & Ratios
Ben Liebowitz
- 5
- 1294
At my previous employer, we had a Dev/QA vSphere environment that was very over provisioned. The environment had lots of CPUReady issues with VMs having to wait for CPU time, which caused things to be slow, etc. We knew this but the application teams didn’t understand. I ended up writing a PowerCLI script to check the CPU overcommitment and sent…
Script to backup your vCenter DRS Rules
Ben Liebowitz
- 8
- 1365
I was thinking yesterday, I have a script that I run on a monthly basis to backup my vDS configs… Shouldn’t I also have something that does the same for my DRS rules? So, I wrote a script that I can schedule to run on a weekly/monthly basis to backup my DRS rules. I have multiple vCenter servers, so I…
PowerCLI Script to create new vDS Portgroups
Ben Liebowitz
- 0
- 2128
We deployed new hosts into one of our office locations. Because these hosts would have different number of uplinks as well as use a LAG group instead of normal dvUplinks, we decided to create a new vDS Switch. Then, we needed to re-create all the portgroups as well. I figured, instead of manually adding 15-20 portgroups, I’ll automate it. I…