Thread: mupack
View Single Post
  #38  
Old 05-21-2016, 20:08
Abaddon Abaddon is offline
Friend
 
Join Date: May 2016
Posts: 43
Rept. Given: 0
Rept. Rcvd 3 Times in 3 Posts
Thanks Given: 181
Thanks Rcvd at 45 Times in 25 Posts
Abaddon Reputation: 3
Quote:
Originally Posted by cybercoder View Post
Also you could change MajorLinkerVersion to 0E, MajorOperatingSystemVersion to 5, MinorOperatingSystemVersion to 01, MajorSubsystemversion to 5 and MinorSubsystemversion to 1 inside optional header to make it run on xp.. Although this solution is not really needed.. it's another way
Setting:

[a] peHeader.MajorOperatingSystemVersion = 5;
[b] peHeader.MinorOperatingSystemVersion = 1;
[c] peHeader.MajorSubsystemVersion = 5;
[d] peHeader.MinorSubsystemVersion = 1;

would make a binary run under XP, although setting only [a] and [c] should suffice...
Having the source, however, mudlord's is the way to follow.

Last edited by Abaddon; 05-21-2016 at 20:14.
Reply With Quote