top of page

The Blog


Report Windows Updates with PowerShell
Windows includes few tools to report Windows Updates using PowerShell like Get-HotFix and Microsoft.Update.Session COM object. However, each seems to be missing some info - Get-HotFix only includes Security Updates and doesn't include hour:minute:second information which is critical in many scenarios; Microsoft.Update.Session often fails without clear solution provided). Below script combines few various methods to ensure no update is missed in the report. Feel free to just u
Feb 153 min read
Â
Â


Get Information about cached Kerberos tickets on specific server.
Often during troubleshooting or investigation there is a need to list cached Kerberos tickets on given machine. "klist sessions" makes it a breeze but output is fairly hard to read and might be a challenge to parse. Here is a nice little module to get information parsed and in PowerShell-friendly format. You're welcome <# .Synopsis Gathers Information about cached Kerberos tickets on specific server .DESCRIPTION Gathers Information about cached Kerberos tickets on specific s
Feb 152 min read
Â
Â
bottom of page