TechUG April 2020

TechUG April 2020 For those who attended my TechUG presentation – thank you. Below you will find links to download my presentation along with the GitHub code repository. Please note the slides are meant as talking points and do not necessarily include all topics or information discussed as part of the ‘live’ presentation. The talk … Read more

PowerShell Compare-Hash Function

Quite some time ago I created a PowerShell function which allowed one to compare a given cryptographic hash against one locally generated to see if they match. Looking back on the old version (here is a link to the blog article https://www.bytesizedalex.com/powershell-cryptographic-hash-checker/) it is very much reminiscent of old school batch files. I decided now … Read more

PowerShell Cryptographic Hash Checker

I decided to build a little cryptographic hash checker in PowerShell leveraging some built-in cmdlets and other functions. While there are lots of tools that already do this, many with very nice GUIs I decided it would be fun to build one of my own. The newly made cmdlet is very simple. You select what cryptographic … Read more