I\'m trying to use mt.exe from the Windows SDK to add a manifest to an executable file that doesn\'t have one, using the following command line:
C:\\winsdk61
This worked for me for VS 2005:
On your executable project, add the following post-build event:
"$(DevEnvDir)..\Tools\Bin\mt.exe" -nologo -manifest "$(TargetPath).manifest" -outputresource:"$(TargetPath)"
Hope this helps. Good luck! -Matt Esterak