I am trying to copy logs files from windows machine to BigFix root server by below Action script.
//setup archive manager mode
if {exists setting “_BESClient_ArchiveManager_OperatingMode” of client}
parameter “archivesetting”=“{value of setting “_BESClient_ArchiveManager_OperatingMode” of client}”
else
parameter “archivesetting”=“0”
endif
//setup the archive parameters
setting “_BESClient_ArchiveManager_OperatingMode”=“2” on “{parameter “action issue date” of action}” for client
setting “_BESClient_ArchiveManager_SendAll”=“1” on “{parameter “action issue date” of action}” for client
setting “_BESClient_ArchiveManager_MaxArchiveSize”=“50000000000” on “{parameter “action issue date” of action}” for client
//collect logs
setting “_BESClient_ArchiveManager_FileSet-{computer name}”=“C:\ProgramData\Qualys\QualysAgent\Log.txt” on “{parameter “action issue date” of action}” for client
//send the archive files
archive now
//Reset operating mode
setting “_BESClient_ArchiveManager_OperatingMode”=“{parameter “archivesetting”}” on “{now}” for client
I need a way to move the files from “\Program Files (x86)\BigFix Enterprise\BES Server\UploadManagerData\BufferDir\sha1” to move the files to custom path “C:\supportfiles” on root server within the action script.