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 )