I would like to read a registry key while installation process.
if the key exist, a plugin is already installed on machine.
if the key is missing I need NSIS to install the plugin before proceeding with main software.
would like to ask your help if the code I am using is OK and I wont have troubles on other machines (works fine on my testing machine):
thx
ReadRegStr $0 HKCR "AppID\{AGDGD-4504-JJSK-JSIE-HDGD84747}" "instl"
${If} ${Errors}
StrCpy $instplugin yes
${Else}
StrCpy $instplugin no
${EndIf}