I can’t for the life of me figure out how to escape the GUID with a parameter.
parameter “PreviousGUID” = “{{0B0D7AD3-AF14-4760-B524-E43B7879EC25}”
This works but i had to add the escape char to the end of the GUID.
if {exists keys “{0B0D7AD3-AF14-4760-B524-E43B7879EC25}}” of keys “HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall” of (x64 registries; x32 registries)}
endif
This does not work. Can’t figure out how to add the escape char
if {exists keys parameter PreviousGUID of keys “HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall” of (x64 registries; x32 registries)}
endif
I have tried several variations that would include adding an extra }" but it still gives me the same error “expression contained character that is not allowed”
Any ideas how to accomplish this?