Does anyone know how to calculate Authenticode File hash in PowerShell?

395 views Asked by At

I'm looking for a way to calculate the Authenticode SHA1,SHA256 hashes of a file inside PowerShell. The file is unsigned.

Get-Filehash outputs the flat hash which is not what I'm looking for.

ConfigCI built-in module can calculate both Authenticode and Page hashes of a file but I don't want to use them since they provide a lot more details and are time consuming to run.

Module's dll is located here: "C:\Windows\assembly\NativeImages_v4.0.30319_64\Microsoft.C99be4d25#\0d6b77335b3aaf092de7496ce37c34bc\Microsoft.ConfigCI.Commands.ni.dll"

.NET or C# code is also okay, I can use either and run them in PowerShell

2

There are 2 answers

0
Tony On BEST ANSWER

Powershell get-applockerfileinformation shows the authenticode hash

0
SpyNet On