Steve Borba

My notes, I hope they help you, feel free to comment/add to them

Month: March 2019

Powershell Can Talk

I was working on some powershell scripts and my son came into the room and asked me if I could get the computer to talk to him, so I had to figure out how to do it: Add-Type -AssemblyName System.speech $speak = New-Object System.Speech.Synthesis.SpeechSynthesizer ForEach ($Voice in ($speak.GetInstalledVoices() | % {$_.VoiceInfo.Name})) { $speak.SelectVoice($Voice) $speak.Speak(“I am […]

Capture at ESXi Host

With everything becoming virtual, we get more tools, but that means more things to remember. These are my notes for a capture from an ESXi host. First lets look capture at the uplink, we need to find which port: esxcfg-nics -l Which gives us something like this: Name PCI Driver Link Speed Duplex MAC Address […]