«

»

Jan 06

How can I get information about digital signatures of all files in the folder?

The following PowerShell code snippet allows you to get information about digital signatures of all files in a specific folder:

Get-ChildItem *.* | foreach-object {Get-AuthenticodeSignature $_}

All you have to do is start PowerShell, go to the folder you want to check and run the command.