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…

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…

WordPress on IIS 8.5 (Windows 2012 R2)

The Manual Installation and Configuration of WordPress and all accompanying components on Windows Server 2012 R2 WordPress “Requirements” PHP 5.6 or greater MySQL 5.5 or greater The mod_rewrite Apache module – You can find the requirements more depth directly from the WordpPress page: WordPress Requirements We are going to use: WordPress Version 4.3.1 PHP 5.4 MySQL…