View Single Post
  #8  
Old 12-03-2005, 06:56
ADX
 
Posts: n/a
Exclamation Add manifest

Hi.
If you want to put the manifest xp on Olly, you can do two things:
1. Use an OLLYDBG.EXE.MANIFEST file (if your olly names ollydbg.exe, sure ), that contains that XML data:
Code:
<?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="Olly.Debugger.XPThemed" 
        type="win32" />
    <description>XP.Manifest</description>
    <dependency>
        <dependentAssembly>
            <assemblyIdentity 
                type="win32" 
                name="Microsoft.Windows.Common-Controls" 
                version="6.0.0.0" 
                processorArchitecture="X86" 
                publicKeyToken="6595b64144ccf1df" 
                language="*" />
        </dependentAssembly>
    </dependency>
</assembly>
2. Or you can directly "embeed" these manifest info into the executable. To do this, you can use tools like Resource Tuner, PE Explorer or XP Visual Style Manifest. You can find a trial of all of this ones in hxxp://www.heaventools.com. This programs have options to make Visual XP themes (apply the manifest).
For change the icons, or bitmaps, use Resource Tuner or the tipical Resource Hacker xD (hxxp://www.angusj.com/resourcehacker/).
For make your own icons you can use Axialis IconWorkshop.
For make your own bmps you can use Photoshop.
This is all.

Byez
Reply With Quote