View Single Post
  #61  
Old 03-02-2019, 04:50
zirkhaki's Avatar
zirkhaki zirkhaki is offline
Registered User
 
Join Date: Jul 2009
Location: Iran
Posts: 309
Thanks: 1,455
Thanked 178 Times in 111 Posts
zirkhaki is on a distinguished road
thanks for the updated version.
just a question!
Did you add the registry option to enable Developer mode automatically? you know if we don not enable it, this game won't install properly.
as Simorq said, if you add this to Registry.iss, developer mode will be enabled after installation:
Code:
Root: HKLM; Subkey: "SOFTWARE\Microsoft\Windows\CurrentVersion\AppModelUnlock"; ValueName: "AllowAllTrustedApps"; ValueType: Dword; ValueData: "$1"; MinVersion: 0.0,5.0; Flags: uninsdeletevalue uninsdeletekeyifempty 
Root: HKLM; Subkey: "SOFTWARE\Microsoft\Windows\CurrentVersion\AppModelUnlock"; ValueName: "AllowDevelopmentWithoutDevLicense"; ValueType: Dword; ValueData: "$1"; MinVersion: 0.0,5.0; Flags: uninsdeletevalue uninsdeletekeyifempty 
Root: HKLM64; Subkey: "SOFTWARE\Microsoft\Windows\CurrentVersion\AppModelUnlock"; ValueName: "AllowAllTrustedApps"; ValueType: Dword; ValueData: "$1"; Check: "isWin64"; MinVersion: 0.0,5.0; Flags: uninsdeletevalue uninsdeletekeyifempty 
Root: HKLM64; Subkey: "SOFTWARE\Microsoft\Windows\CurrentVersion\AppModelUnlock"; ValueName: "AllowDevelopmentWithoutDevLicense"; ValueType: Dword; ValueData: "$1"; Check: "isWin64"; MinVersion: 0.0,5.0; Flags: uninsdeletevalue uninsdeletekeyifempty
Reply With Quote
The Following User Says Thank You to zirkhaki For This Useful Post:
GTX590 (03-02-2019)
Sponsored Links