A long time ago in what almost seems like another galaxy, I was a server jockey. I was doing Linux before Linux was cool. BASH and Perl were my
PowerShell isn’t just for the server guys though. I’m finding more and more uses for PowerShell to help me in my day to day work in networking. One of the first tools that I’ve come to depend on is the
Enter-PSSession
Another
Driver Versions
Another useful powershell snippet is one that gives you the versions of drivers installed on a computer. I find this useful when troubleshooting client network issues, especially wireless, to compare with known version issues.
Get-WmiObject Win32_PnPSignedDriver| select devicename, driverversion | where {$_.devicename -like "*net*"}
Summary
Although Ansible, Python and such are the big automation buzz, PowerShell definitely has it’s place. Network Engineers should make sure to familiarize themselves with PowerShell. I will continue to make posts as I find useful snippets to share.
1 thought on “PowerShell, It’s Not Just for Server Jockeys”