How to verify the integrity of Windows/Sysinternals tools

Jorpi 1 Reputation point
2020-12-18T12:55:40.037+00:00

Hi,
Does Microsoft publish checksum values for Windows/Sysinternals tools? I want to verify the integrity after downloading.

Thanks.
Marcel

Sysinternals
Sysinternals
Advanced system utilities to manage, troubleshoot, and diagnose Windows and Linux systems and applications.
1,087 questions
0 comments No comments
{count} votes

2 answers

Sort by: Most helpful
  1. Cheong00 3,471 Reputation points
    2020-12-21T03:42:30.173+00:00

    All EXE/DLL files in sysinternals tools are now signed with signature from Microsoft. You can:

    1) Right click and select Properties, then change to Digital Signatures tab and open the cert that used to sign it and see if it's valid.

    2) If you have the Visual Studio installed, you can open the "development command prompt for VS20XX", and use "signtool verify /all /pa <your exe/dll filename>" to verifiy them.

    3) If you have older version of Sysinternal Tools Suite, you may also consider verify with SigCheck.

    0 comments No comments

  2. mariora 376 Reputation points
    2021-01-01T09:13:01.23+00:00

    sigcheck -c -h -w c:\temp\sysint.csv c:\sysinternalssuite

    or

    sigcheck -c -h -vt -vr -w c:\temp\sysint.csv c:\sysinternalssuite

    This latest line will verify each hash against Virus Total.. there may be few false positive as always with Sysinternals tools.

    HTH
    -mario

    0 comments No comments