Browsed by
Month: January 2016

Upcoming Posts and PowerShell Modules

Upcoming Posts and PowerShell Modules

I wanted to share some of the PowerShell Modules that I will be going over the next few months as I learn and share the experiance and headaches I run into; Cisco UCS PowerTool – Available here. It requires a Cisco login, a little more info can be found here. VMWare PowerCLI – Available here. – Eventually I will start covering 6, instead of 5.5. Like Cisco, it also requires an account. NetApp PowerShell Toolkit – Available here. Also requires…

Read More Read More

Experimenting with vSphere PowerCLI – Portgroups

Experimenting with vSphere PowerCLI – Portgroups

Despite last weeks frustration with enhanced LACP and vDS through vSphere PowerCLI, some things can still be automated while others will have to be done by hand. I looked into the deployment of PortGroup’s as the next logical step, here is what I came up with so far: # Create Portgroups Get-VDSwitch -Name “vTest” | New-VDPortGroup -Name “Windows Servers” -PortBinding Static -Numports 32 -VlanID 100 Get-VDSwitch -Name “vTest” | New-VDPortGroup -Name “Linux Servers” -PortBinding Static -Numports 32 -VlanID 101 This…

Read More Read More