Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to install just mt.exe?

The manifest tool mt.exe is included in the Windows SDK. But the full SDK is large and includes a lot of things as shown in the screenshot. But which of these options actually includes mt.exe?

Ideally I'd like to install just the minimum to get this tool on the system.

enter image description here

It does say in the docs that mt "is available in the Microsoft Windows Software Development Kit (SDK)" - but thats it, without any further detail.

like image 817
StayOnTarget Avatar asked Jan 31 '19 14:01

StayOnTarget


1 Answers

Choose Windows SDK for Desktop C++ x86 Apps.

Additionally, you can then grab the mt.exe binary and put it in a location of your choice, if you don't want to keep the rest of the stuff that comes with that option (say, on a build server). The mt.exe doesn't have any dependencies other than OS dlls.

like image 134
xMRi Avatar answered Nov 15 '22 13:11

xMRi