Questions tagged [mt]

Mt.exe as provided in recent versions of the Windows SDK can also be used to generate manifests for managed assemblies and unmanaged side-by-side assemblies.

Mt.exe is a tool that generates signed files and catalogs. It is available in the Microsoft Windows Software Development Kit (SDK).

The version of Mt.exe provided in recent versions of the Windows SDK can also be used to generate manifests for managed assemblies and unmanaged side-by-side assemblies.

Mt.exe generates hashes using the CryptoAPI implementation of the Secure Hash Algorithm (SHA-1).

Mt.exe uses Makecat.exe to generate catalog files (.cat) from catalog definition files (.cdf). This tool fills out a standard template CDF with the name and location of your manifest. You can use this with Makecat.exe to generate the assembly catalog.

https://learn.microsoft.com/en-us/windows/desktop/sbscs/mt-exe

43 questions
1
vote
1 answer

How to use a static library (/MT) in a dynamic lib (/MD) project?

Our project structured like this. 1) MainApp, it loads dlls dynamically by using boost, and all the dlls projects/modules are build with /MD. 2) Any other projects that is needed by these dlls are built as static (.lib) or dynamic (.dll) lib. There…
Peter
  • 21
  • 1
  • 3
1
vote
0 answers

CopySystemProxySettings Equivalent in Monotouch

What's the equivalent api to copy phone's system settings to my app in Monotouch? can i use webproxy instead? how to do that? can the monotouch team give some example? Thank you.
sharif y
  • 513
  • 4
  • 11
1
vote
0 answers

use QT with DLL compiled with -MT crash

I compiled QT dynamic with -MT( modify config file ) my code is like this( my program is release mode with MT too ): int main( int argc, char *argv[] ) { int ret = 0; if( 0 == ret ) { QApplication a( argc, argv ); { …
高海辉
  • 11
  • 1
1
vote
2 answers

regenerate-makefiles.sh generates libtoolize linking error when compiling IRSTLM

I'm having trouble getting IRSTLM to compile, due to an apparent problem linking to the ltmain.sh file in the libtool directories. I'm using Cygwin, by the way. cook@mt-g66 /cygdrive/c/irstlm/trunk $ ./regenerate-makefiles.sh Calling…
1
vote
1 answer

Couldn't run my test using Microsoft Test Manager

When I'm running the test in Microsoft Test Manager I get an error: The build directory of the test run either does not exist or access permission is required. What does it mean? Where can I check build directory?
Lesya Makhova
  • 1,340
  • 3
  • 14
  • 28
1
vote
1 answer

mt.exe in Qt StandAlone .exe

I finally built a static version of Qt 5.1.1 using microsoft visual studio. I created my .exe standalone file using this code: qmake Hello.pro nmake release cd release mt.exe -manifest Hello.exe.manifest -outputresource: Hello.exe;1 what is mt.exe…
Aidin.T
  • 731
  • 3
  • 10
  • 25
1
vote
1 answer

Visual Studio 2010 C++ Build: "mt.exe" error

I am writing a very simple program in C++, to copy the bootsector from one file to another. My code is: #include int main () { char buffer[512]; std::fstream myfile ("boot.bin", std::ios::binary || std::ios::in); …
Ruben
  • 524
  • 1
  • 6
  • 14
0
votes
1 answer

Visual Studio Boost Thread /MT Linking Issues

I am using boost's threading library and have run into linking issues in Visual Studio. Right now, I'm compiling my VS project with /MT. The library I'm linking against is called libboost_thread-vc100-mt-1_48.lib, which seems to indicate that it,…
Ben
  • 7,692
  • 15
  • 49
  • 64
0
votes
1 answer

How do I correctly reference a private Windows assembly in the Application Manifest?

My setup and what I try to achieve My project is set up to use CMake, Ninja as my generator and MSVC as my compiler. I have an executable target A.exe and 2 shared library targets (B.dll and C.dll). I'm on Windows and use load-time linking by…
bub1ick
  • 21
  • 6
0
votes
0 answers

Google Machine Translation plugin in MemoQ translation software connected via VPN, receiving timeout message. Can I increase the time out threshold?

I am a translator visiting my mum in Guangzhou China after a 3-year Covid lockdown. I am working with a VPN connection. My translation software MemoQ has a Google Machine Translation plug in set up through my Google API account. I can't get the…
0
votes
0 answers

Grid Data paging problem after filter for Kendo Angular

I have a grid and from outside I have texbox when I write something in textbox I can filter my grid but when I remove text in texbox I try to bind all data and I can do it but the grid cannot do paging. The first grid collects all data in page one…
saulyasar
  • 797
  • 1
  • 17
  • 45
0
votes
0 answers

ERROR: Activation Context generation failed at the end of trace file, with NO previous ERROR

I have used sxstrace.exe and so far the tool has been very useful. But now it says, at the end, that there is an error, with no previous errors in the trace... How can I debug my problem? ================= Begin Activation Context Generation. Input…
manuell
  • 7,528
  • 5
  • 31
  • 58
0
votes
0 answers

How do I mount a travan tape drive in Linux

I have some old travan tapes that I'd like to read. I bought an old Travan drive (HP colorado memory systems) from ebay. This drive originally connected to a floppy drive IDE connector. Since my motherboard doesn't have a floppy connector, I bought…
sliptonic
  • 460
  • 3
  • 11
0
votes
1 answer

Can mt.xe update a manifest embedded in middle (not near the end) of an exe?

I'm trying to update the manifest included in a Visual FoxPro app with some registry free COM entries. A compiled FoxPro exe appears to contain a VFP runtime along with with some string resources and a default manifest, as well as the pre-compiled…
RMart
  • 548
  • 1
  • 5
  • 20
0
votes
1 answer

Color getting overlapped in the indicator MQL5

I am trying to paint the portions of the graph with Bollinger Bands. But while coloring the graph bands some portions are appearing to be colored with 2 colors or overlapped with colors, See the following image: See the portion marked with yellow…
Jaffer Wilson
  • 7,029
  • 10
  • 62
  • 139