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 […]
Steve Borba
My notes, I hope they help you, feel free to comment/add to them
Month: March 2019
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 […]
I don’t have a vCenter (because it is a low power lab), but I still want to keep my lab up to date, so I found a way to to do through ssh. I leave ssh running at all times, and changed “UserVars.SuppressShellWarning” to “1” so it doesn’t bug me to disable it. First step […]