Home › Forums › General XMetaL Discussion › What happens to customizations if you reinstall or update XMetaL? › Reply To: What happens to customizations if you reinstall or update XMetaL?
Reply to: What happens to customizations if you reinstall or update XMetaL?
May 25, 2011 at 10:13 pm2 notes about the code segments:
I avoid using drive maped letters like x: in scripts. I alwas use the absolute UNC paths incase someone does have the drive letter mapped.
Also I try to never use absolute local paths like c: I always use environmental variables. Also to make it future 64bit compatible you might want some code like below and then use the progFiles variable.
[code]SET progFiles=%ProgramFiles(x86)%
IF “%progFiles%”==”” SET progFiles=%ProgramFiles%[/code]