View Single Post
  #330  
Old 04-04-2013, 09:41
altef_4's Avatar
altef_4 altef_4 is offline
Registered User
 
Join Date: Mar 2012
Location: Ukraine
Posts: 361
Thanks: 248
Thanked 1,022 Times in 239 Posts
altef_4 is on a distinguished road
Quote:
Originally Posted by spawniectes View Post
Hi guys, I have a doubt, I making the conversion for gears of war and the registry key that I have is for x64 windows 'cause is what I have installed.
Code:
Root: HKLM; SubKey: SOFTWARE\Wow6432Node\Microsoft\Microsoft Games\Gears of War; ValueType: expandsz; ValueName: SetupPath; ValueData: {app}\binaries\; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\Wow6432Node\Microsoft\Microsoft Games\Gears of War; ValueType: expandsz; ValueName: EXEPath; ValueData: {app}\Binaries\startup.exe; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\Wow6432Node\Microsoft\Microsoft Games\Gears of War; ValueType: string; ValueName: PID; ValueData: 92353-896-4404376-70444; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\Wow6432Node\Microsoft\Microsoft Games\Gears of War; ValueType: binary; ValueName: DigitalProductID; ValueData: 6c 93 48 93 31 c3 4a c3 7f 3b c1 a2 6f 88 03 00; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\Wow6432Node\Microsoft\Microsoft Games\Gears of War; ValueType: string; ValueName: PID 2.0 Ex; ValueData: 92353-00140-896-440437-00-11274-7600.0000-0932013; Flags: uninsdeletevalue uninsdeletekeyifempty
but will not work in 32bit system, how can I make it work for both operating systems.
add this lines:
Code:
Root: HKLM; SubKey: SOFTWARE\Wow6432Node\Microsoft\Microsoft Games\Gears of War; ValueType: expandsz; ValueName: SetupPath; ValueData: {app}\binaries\; Flags: uninsdeletevalue uninsdeletekeyifempty; Check: IsWin64;
Root: HKLM; SubKey: SOFTWARE\Wow6432Node\Microsoft\Microsoft Games\Gears of War; ValueType: expandsz; ValueName: EXEPath; ValueData: {app}\Binaries\startup.exe; Flags: uninsdeletevalue uninsdeletekeyifempty; Check: IsWin64;
Root: HKLM; SubKey: SOFTWARE\Wow6432Node\Microsoft\Microsoft Games\Gears of War; ValueType: string; ValueName: PID; ValueData: 92353-896-4404376-70444; Flags: uninsdeletevalue uninsdeletekeyifempty; Check: IsWin64;
Root: HKLM; SubKey: SOFTWARE\Wow6432Node\Microsoft\Microsoft Games\Gears of War; ValueType: binary; ValueName: DigitalProductID; ValueData: 6c 93 48 93 31 c3 4a c3 7f 3b c1 a2 6f 88 03 00; Flags: uninsdeletevalue uninsdeletekeyifempty; Check: IsWin64;
Root: HKLM; SubKey: SOFTWARE\Wow6432Node\Microsoft\Microsoft Games\Gears of War; ValueType: string; ValueName: PID 2.0 Ex; ValueData: 92353-00140-896-440437-00-11274-7600.0000-0932013; Flags: uninsdeletevalue uninsdeletekeyifempty; Check: IsWin64;


Root: HKLM; SubKey: SOFTWARE\Microsoft\Microsoft Games\Gears of War; ValueType: expandsz; ValueName: SetupPath; ValueData: {app}\binaries\; Flags: uninsdeletevalue uninsdeletekeyifempty; Check: not IsWin64;
Root: HKLM; SubKey: SOFTWARE\Microsoft\Microsoft Games\Gears of War; ValueType: expandsz; ValueName: EXEPath; ValueData: {app}\Binaries\startup.exe; Flags: uninsdeletevalue uninsdeletekeyifempty; Check: not IsWin64;
Root: HKLM; SubKey: SOFTWARE\Microsoft\Microsoft Games\Gears of War; ValueType: string; ValueName: PID; ValueData: 92353-896-4404376-70444; Flags: uninsdeletevalue uninsdeletekeyifempty; Check: not IsWin64;
Root: HKLM; SubKey: SOFTWARE\Microsoft\Microsoft Games\Gears of War; ValueType: binary; ValueName: DigitalProductID; ValueData: 6c 93 48 93 31 c3 4a c3 7f 3b c1 a2 6f 88 03 00; Flags: uninsdeletevalue uninsdeletekeyifempty; Check: not IsWin64;
Root: HKLM; SubKey: SOFTWARE\Microsoft\Microsoft Games\Gears of War; ValueType: string; ValueName: PID 2.0 Ex; ValueData: 92353-00140-896-440437-00-11274-7600.0000-0932013; Flags: uninsdeletevalue uninsdeletekeyifempty; Check: not IsWin64;

Last edited by altef_4; 04-04-2013 at 09:46.
Reply With Quote
The Following User Says Thank You to altef_4 For This Useful Post:
spawniectes (04-04-2013)