Manifest Updater

Applications, Games, Tools, User libs and useful stuff coded in PureBasic
drgolf
User
User
Posts: 90
Joined: Tue Mar 03, 2009 3:40 pm
Location: france

Manifest Updater

Post by drgolf »

A little, very little, but maybe useful tool for manipulate manifest in exe.
View manifest, modify manifest, add properties like DPI aware.
Load/save manifest file.
Full purebasic code.
A small zip with 32/64 bits exe (95 ko).
Tested with virus total = 0/48
https://www.virustotal.com/fr/file/5d2b ... 469377597/

download here:
https://cutt.ly/sQQyXeJ
Last edited by drgolf on Fri Aug 06, 2021 10:56 am, edited 2 times in total.
c4s
Addict
Addict
Posts: 1981
Joined: Thu Nov 01, 2007 5:37 pm
Location: Germany

Re: Manifest Updater

Post by c4s »

Thanks. Would be nice though if PureBasic could do some of that "editing" automatically: Add correct manifest to application
If any of you native English speakers have any suggestions for the above text, please let me know (via PM). Thanks!
ozzie
Enthusiast
Enthusiast
Posts: 429
Joined: Sun Apr 06, 2008 12:54 pm
Location: Brisbane, Qld, Australia
Contact:

Re: Manifest Updater

Post by ozzie »

Is this still available? The download link has expired. I'm looking for a way to embed a manifest file for dpiAware into my executables.
JHPJHP
Addict
Addict
Posts: 2129
Joined: Sat Oct 09, 2010 3:47 am
Contact:

Re: Manifest Updater

Post by JHPJHP »

Hi ozzie,

Services, Stuff, and Shellhook:
- Stuff\ManifestResource\SetManifest.pb

dpiAware

Code: Select all

<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" >
  <asmv3:application>
    <asmv3:windowsSettings xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">
      <dpiAware>true</dpiAware>
    </asmv3:windowsSettings>
  </asmv3:application>
</assembly>
drgolf
User
User
Posts: 90
Joined: Tue Mar 03, 2009 3:40 pm
Location: france

Re: Manifest Updater

Post by drgolf »

Hello,
I have updated the first post with new link for download.
ozzie
Enthusiast
Enthusiast
Posts: 429
Joined: Sun Apr 06, 2008 12:54 pm
Location: Brisbane, Qld, Australia
Contact:

Re: Manifest Updater

Post by ozzie »

Thanks, both of you.
highend
Enthusiast
Enthusiast
Posts: 123
Joined: Tue Jun 17, 2014 4:49 pm

Re: Manifest Updater

Post by highend »

Does anyone still have the version from drgolf (including source code) and could reupload it somewhere and share a link?
drgolf
User
User
Posts: 90
Joined: Tue Mar 03, 2009 3:40 pm
Location: france

Re: Manifest Updater

Post by drgolf »

I have updated the link (x64 exe / x86 exe / and C version with pb 6 a 3).
highend
Enthusiast
Enthusiast
Posts: 123
Joined: Tue Jun 17, 2014 4:49 pm

Re: Manifest Updater

Post by highend »

Thank you!

Would it be possible to add the source code or is it private?
Post Reply