Reputation: 13440
I am trying to get the name of the signers from a signed files using PowerShell.
The signer of FlashUtil_ActiveX.exe (in Windows 10) is “Microsoft Windows Third Party Application Component”:
Checked with Right Click on the file
When I tried it with powershell it shows me different names:
Any of the names (the “Subject” and the “Issuer”) are not “Microsoft Windows Third Party Application Component”.
I also tried with Get-AppLockerFileInformation
with no success:
Upvotes: 2
Views: 1584
Reputation: 13440
I needed to use the Get-PfxCertificate
command.
Now I can see the name of the signer appeared in the "Signature list".
This is how it looks using the command:
And this is an example for file (igfxSDK.exe) with number of signatures:
Upvotes: 3