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…

Populate list of all Steam Games

I have updated this as of 12/27/2023 as a user came across this page and informed me the script I wrote is not long working. I have updated the script to work again. Log into your steam account, navigate to your profile page and then the “Games” page and Select “All Games”. Open up the…

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…

Powershell On Linux

You can now use Powershell with Linux Operating Systems! See instructions below on how to set up your Linux distro with Powershell Source CentOS / RHEL Install wget (if not already installed): sudo yum install wget -y Download PS to the temp folder: wget -i /tmp/ https://github.com/PowerShell/PowerShell/releases/download/v6.0.0-alpha.9/powershell-6.0.0_alpha.9-1.el7.centos.x86_64.rpm Install PS: sudo yum install powershell-6.0.0_alpha.9-1.el7.centos.x86_64.rpm -y Ubuntu…