script does not work with Desktop Coral v1.10.01 due to a change in the .INI file or possibly a change in the way AHK counts lines. In any case, the script can be 'fixed' by changing the following lines:
FileReadLine, DpLeft, %DC_Ini_Path%, 25
FileReadLine, DpTop, %DC_Ini_Path%, 26
FileReadLine, DpRight, %DC_Ini_Path%, 27
FileReadLine, DpBottom, %DC_Ini_Path%, 28
change to read:
FileReadLine, DpLeft, %DC_Ini_Path%, 26
FileReadLine, DpTop, %DC_Ini_Path%, 27
FileReadLine, DpRight, %DC_Ini_Path%, 28
FileReadLine, DpBottom, %DC_Ini_Path%, 29
Ideally, the script should be expanded to scan the .INI file to find the proper section and read the assignments rather than blindly copying values, but this will do for a quick&dirty workaround.