Home Lab 2.0

This post will serve as the 10,000 ft overview of my environment and what it all consists of. I plan to follow up this post with a series of smaller posts breaking down my Home Lab into the following sections: (as I update these blog posts, links will appear and become active) Home Lab Servers…

Configure and Run vCheck

vCheck is a PowerShell HTML framework script that started with one guy, but is now a community driven and from what I have seen, it’s pretty neat. vCheck can be configured to just run once, or as a scheduled task on a Windows box. It also offers the option of sending the report via email.…

Cmdlet for PowerCLI to load vCenter & esxi Hosts

Powershell & PowerCLI Prep #Set Execution Policy Set-ExecutionPolicy RemoteSigned #Ignore SSL Certificates warnings Set-PowerCLIConfiguration -InvalidCertificateAction Ignore -WarningAction SilentlyContinue #Connecting to server & save creds: Connect-VIServer vCenter.DOMAIN.com -User DOMAIN\Administrator -Password -SaveCredentials #Location to open up PowerCLI normally: . “C:\Program Files (x86)\VMware\Infrastructure\vSphere PowerCLI\Scripts\Initialize-PowerCLIEnvironment.ps1” CMDLET function Load-PowerCLI { Add-PSSnapin VMware.VimAutomation.Core -ErrorAction SilentlyContinue Add-PSSnapin VMware.VumAutomation -ErrorAction SilentlyContinue Add-PSSnapin VMware.DeployAutomation…