english francais

Uploading audit snapshots from remote sites via FTP

This article discusses an alternative to sending the audit snapshots for disconnected machines via SMTP

Article Details

The batch file would contain the following text :

EntAudit
ftp -i -n -s:upload.script

In the same directory, you could include a file called upload.script which issued all the ftp commands to establish a connection to the server, upload the file and disconnect... i.e. something like:

open ftp.yourdomain.com
user user-name [password]
type Binary
put *.esp
quit

About the only thing is you might want to allow uploads for anonymous logins to an "incoming" directory on the ftp server (so that you don't have to write a username and password into that script file).