I am new to advanced installer and have a question about custom actions...
I am trying to replace the backslah characters in a directory name with forward slashes (the java logger we use requires "/" as the seapartors). I do not seem to be able to achieve this using a Vb Script custom action ( i am using inline script). How would this be done?
I have tried the following, which does not work:
Code: Select all
logdir=System.Property("APPLOGDIR"):Replace(logdir, "\", "/"):System.Property("APPLOGDIR")=logdir
Thanks