Hello,
Is there a way to escape the $ char in a Delete instruction?
For example Delete "$INSTDIR\anypath\ResBundleCapable$StrDataBean.class" won't run; the compiler error message is
I have try to use '\$' but I always get this compiler warning : unknown variable "StrDataBean.class" detected
Any idea?
Philippe
Special char escaping in uninstall section
3 posts
You can escape quotes like " using using $\"
$ can be escaped using $$
$ can be escaped using $$
Double dollar should do it.
"A string that costs $$500."
"A string that costs $$500."