View Single Post
  #5  
Old 21-08-2023, 08:41
XxAZAxX XxAZAxX is offline
Registered User
 
Join Date: Jul 2018
Location: LUNA
Posts: 26
Thanks: 48
Thanked 6 Times in 5 Posts
XxAZAxX is on a distinguished road
Solved!

Quote:
Originally Posted by Cesar82 View Post
TRY CHANGING TO:
Code:
RegWriteStringValue(HKEY_LOCAL_MACHINE, 'SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{#AppName}_is1', 'DisplayIcon', ExpandConstant(AddBackslash('{app}\{#E1[60]}') + '{#E1[61]}') )
I confirm, problem solved Thanks to the string that Cesar82 gave me

This was the one I had set, and it was temporary of course...
Code:
ExpandConstant('{app}\{#E1[61]}')
This is the right one instead, thanks to Cesar82
Code:
ExpandConstant(AddBackslash('{app}\{#E1[60]}') + '{#E1[61]}')
Reply With Quote