Is there an easy way to read an application's already embedded manifest file?
I was thinking along the lines of an alternate data stream?
|
|
Is there an easy way to read an application's already embedded manifest file? I was thinking along the lines of an alternate data stream?
|
|||
|
|
|
|
Windows manifest files are Win32 resources. In other words, they're embedded towards the end of the EXE or DLL. You can use LoadLibraryEx, FindResource, LoadResource and LockResource to load the embedded resource. Here's a simple example that extracts its own manifest...
Alternatively, you can use MT.EXE from the Windows SDK:
|
||||
|
|
|
You can extract/replace/merge/validate manifests using the command line manifest tool,
|
||
|
|
|
|
There's a manifest viewer tool available here -- I don't know if the author will make source code available. |
||
|
|
|
|
The easiest way to view/edit manifests in compiled apps is using Resource Tuner: http://www.restuner.com/tour-manifest.htm In some cases, it's more robust than mt.exe from MS, and it's a visual tool. |
||
|
|