View Single Post
  #237  
Old 18-08-2023, 14:53
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
Thumbs up Resolved!

Tell me if it's good or bad to have solved this way...

It basically created double backslashes in the log file

Code:
RegWriteStringValue(HKEY_LOCAL_MACHINE, 'SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{#AppName}_is1', 'DisplayIcon', ExpandConstant('{app}\{#E1[60]}\{#E1[61]}') )
so i had to change to

Code:
RegWriteStringValue(HKEY_LOCAL_MACHINE, 'SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{#AppName}_is1', 'DisplayIcon', ExpandConstant('{app}\{#E1[61]}'))
and this is where it now appears correctly in the log file,



please if you can ... do a test too I succeeded but you never know.

Thanks in advance to everyone.
Reply With Quote