Request: Reg Organizer personal setting
Posted: Mon Feb 15, 2016 5:54 am
Please take note to make the next releases with import/export of personal setting. Making a copy of files "%APPDATA%\ChemTable Software\Reg Organizer\*.hml" manually is inconvenient. Thanks!
In the AutoIt code approximately:
In the AutoIt code approximately:
Code: Select all
; Copy *.hml files in the ChemtableAppdata directory to a new folder/directory called "SettRegOrg".
FileCopy(@AppDataDir&"\ChemTable Software\Reg Organizer\*.xml", @ScriptDir&"\SettRegOrg\" , $FC_OVERWRITE + $FC_CREATEPATH)
Code: Select all
; Extract *.hml files in the "SettRegOrg" directory to the ChemtableAppdata directory.
FileCopy(@ScriptDir&"\SettRegOrg\*.xml" ,@AppDataDir&"\ChemTable Software\Reg Organizer\", $FC_OVERWRITE )