Home Made Tool: XP Style!

Published by

data/avatar/default/avatar04.webp
lol, this just fixed my sound problems in Unreal Tournament! No more distorted sound now and again!
data/avatar/default/avatar04.webp
Dosnt the same thing happen by just writing a manifest file? make a text file with this info Your application description here. and name the file applicationname.exe.manifest, place it in the directory of the executable, and thats it. ps, it will kill progys such as excel when you do it.
data/avatar/default/avatar04.webp
oh well, it wont let me post the script. but its easy to find. search google.
data/avatar/default/avatar04.webp
Save the following code in "YourApp.exe.manifest" file and put this file in same folder with .exe (ex.: Word.exe.manifest) <?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="Your application.exe" type="win32" /> <description>Your application description here.</description> <dependency> <dependentAssembly> <assemblyIdentity type="win32" name="Microsoft.Windows.Common-Controls" version="6.0.0.0" processorArchitecture="X86" publicKeyToken="6595b64144ccf1df" language="*" /> </dependentAssembly> </dependency> </assembly>