View Single Post
  #10  
Old 18-06-2017, 01:39
macut18's Avatar
macut18 macut18 is offline
Registered User
 
Join Date: Jun 2017
Location: Thailand
Posts: 21
Thanks: 82
Thanked 6 Times in 4 Posts
macut18 is on a distinguished road
Thanks for the good work.

There was a ShortcutName error (Unlisted)

Code:
[Icons]
#ifdef AppExe1
Name: {group}\{#E1[63]}; Filename: {app}\{#E1[60]}\{#E1[61]}; WorkingDir: {app}\{#E1[60]}; Comment: {#E1[59]};
Name: {commondesktop}\{#E1[63]}; Filename: {app}\{#E1[60]}\{#E1[61]}; WorkingDir: {app}\{#E1[60]}; Check: CreateShortcuts;
#endif

Fix to (Original of Windows Phone Installer by Razor12911)

Code:
[Icons]
#ifdef AppExe1
Name: {group}\{#E1[62]}; Filename: {app}\{#E1[60]}\{#E1[61]}; WorkingDir: {app}\{#E1[60]}; Comment: {#E1[59]};
Name: {commondesktop}\{#E1[62]}; Filename: {app}\{#E1[60]}\{#E1[61]}; WorkingDir: {app}\{#E1[60]}; Check: CreateShortcuts;
#ifdef AppExe2
Name: {group}\{#E2[62]}; Filename: {app}\{#E2[60]}\{#E2[61]}; WorkingDir: {app}\{#E2[60]}; Comment: {#E2[59]};
Name: {commondesktop}\{#E2[62]}; Filename: {app}\{#E2[60]}\{#E2[61]}; WorkingDir: {app}\{#E2[60]}; Check: CreateShortcuts;
#ifdef AppExe3
Name: {group}\{#E3[62]}; Filename: {app}\{#E3[60]}\{#E3[61]}; WorkingDir: {app}\{#E3[60]}; Comment: {#E3[59]};
Name: {commondesktop}\{#E3[62]}; Filename: {app}\{#E3[60]}\{#E3[61]}; WorkingDir: {app}\{#E3[60]}; Check: CreateShortcuts;
#ifdef AppExe4
Name: {group}\{#E4[62]}; Filename: {app}\{#E4[60]}\{#E4[61]}; WorkingDir: {app}\{#E4[60]}; Comment: {#E4[59]};
Name: {commondesktop}\{#E4[62]}; Filename: {app}\{#E4[60]}\{#E4[61]}; WorkingDir: {app}\{#E4[60]}; Check: CreateShortcuts;
#ifdef AppExe5
Name: {group}\{#E5[62]}; Filename: {app}\{#E5[60]}\{#E5[61]}; WorkingDir: {app}\{#E5[60]}; Comment: {#E5[59]};
Name: {commondesktop}\{#E5[62]}; Filename: {app}\{#E5[60]}\{#E5[61]}; WorkingDir: {app}\{#E5[60]}; Check: CreateShortcuts;
#ifdef AppExe6
Name: {group}\{#E6[62]}; Filename: {app}\{#E6[60]}\{#E6[61]}; WorkingDir: {app}\{#E6[60]}; Comment: {#E6[59]};
Name: {commondesktop}\{#E6[62]}; Filename: {app}\{#E6[60]}\{#E6[61]}; WorkingDir: {app}\{#E6[60]}; Check: CreateShortcuts;
#endif
#endif
#endif
#endif
#endif
#endif

You will update to Pzlib v3 2017?
http://fileforums.com/attachment.php...7&d=1496658757

Last edited by macut18; 18-06-2017 at 01:50.
Reply With Quote