Markus
Markus

Reputation: 1430

Where is the signtool.exe located in windows 10 SDK?

I'm searching for the latest version of sign tool. Already installed latest windows 10 SDK, but signtool.exe date did not change.

Upvotes: 16

Views: 23842

Answers (4)

Shaiful Islam
Shaiful Islam

Reputation: 442

You could find:

"C:\Program Files (x86)\Windows Kits\10\bin\10.0.22621.0\x64\signtool.exe"

Upvotes: 1

Markus
Markus

Reputation: 1430

Starting from windows 10 SDK, the signtool.exe is now located here:

C:\Program Files (x86)\Windows Kits\10\bin\10.0.16299.0\x64

In this example, I used the Windows 10 Fall Creators Update SDK-Version (10.0.16299) - and 64bit edition

Be careful, additionally it may be located here: C:\Program Files (x86)\Windows Kits\10\App Certification Kit

Update: Windows 10 Build 1809, now here C:\Program Files (x86)\Windows Kits\10\bin\10.0.17763.0\x64

Update: Visual Studio 2022: C:\Program Files (x86)\Windows Kits\10\bin\10.0.19041.0\x64

Upvotes: 34

Tecman
Tecman

Reputation: 3009

If I do not install Windows 10 SDK, but install Visual Studio, I typically find signtool.exe in the following location:

C:\Program Files (x86)\Microsoft SDKs\ClickOnce\SignTool\signtool.exe

This is a constant path that doesn't depend on the version of the Windows SDK. It's very convenient to use it in bat files or another automation stuff.

Upvotes: 18

PhonicUK
PhonicUK

Reputation: 13864

If you install the 'Windows 10 SDK' ( https://developer.microsoft.com/en-gb/windows/downloads/windows-10-sdk/ ) then it'll be at C:\Program Files (x86)\Windows Kits\10\bin\x64 as somewhere static that won't change.

Upvotes: 0

Related Questions