steve4king
IS-IT--Management
My version of InstallShield predates windows Vista and it's implementation of a embedded manifests/definable execution level.
I've found a bit of information suggesting that I could create a manifest and embed it using mt.exe.
However, whenever I attempt to add this manifest, it appears to wipe most of my installshield executable. (from 90mb down to 112kb)
No errors appear, only microsoft logo information.
my manifest file:
my batch line:
What am I doing wrong here?
I've found a bit of information suggesting that I could create a manifest and embed it using mt.exe.
However, whenever I attempt to add this manifest, it appears to wipe most of my installshield executable. (from 90mb down to 112kb)
No errors appear, only microsoft logo information.
my manifest file:
Code:
Executable: MyInstaller.exe
Manifest:MyInstaller.exe.manifest
Sample application manifest file:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<assemblyIdentity version="1.0.0.0"
processorArchitecture="X86"
name="MyInstaller"
type="win32"/>
<description>My program description</description>
<!-- Identify the application security requirements. -->
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v2">
<security>
<requestedPrivileges>
<requestedExecutionLevel
level="requireAdministrator"
uiAccess="false"/>
</requestedPrivileges>
</security>
</trustInfo>
</assembly>
my batch line:
Code:
mt.exe –manifest MyInstaller.exe.manifest –outputresource:MyInstaller.exe;#1
What am I doing wrong here?