Ok, encontrei uma solução. Espero que isso seja útil para os outros. Estabelecido no link , parece fazer tudo o que preciso. Tentando por 30 dias, ainda não licenciado.
A automação sobre FTPS é obtida com o seguinte script em conjunto com o programa.
Estou aberto a sugestões de outros clientes, se alguém tiver alguma experiência, por isso não vou fechar esta questão durante algum tempo ...
#
# More script samples at http://www.ScriptFTP.com/examples.php
# Online scripting guide at http://www.ScriptFTP.com/reference.php
# Free technical support at http://www.ScriptFTP.com/contact.php
#
# Remember to save the changes before clicking run on the ScriptFTP window.
# Set protocol to FTPS, encryping username, password and data
SETPROTOCOL(FTPS_EXPLICIT_ENCRYPT_DATA)
# Connect to FTP server
OPENHOST("62.XXX.XXX.XX","user","myPassWd")
# Send all the files and subdirectories in C:\MyDir to the server
PUTFILE("C:\FTP_ROOT\*.*",SUBDIRS)
# Transfer finished, close the connection
CLOSEHOST