Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
mansi_dv
Contributor
Contributor

Batch script help needed

Hi All,

I have all my input files on 1 server and I need them to be there in other server. This copy process should be done on a daily basis. So I need to run a batch script.

Can someone help me out to create this kind of batch file?

1 Reply
Peter_Cammaert
Partner - Champion III
Partner - Champion III

The simplest batch file contains something like

COPY /V /B /Y "SourcePath\*" "TargetPath"

If you run this batch file on the target server, SourcePath must refer to a file share on the source server. On the source server, locate the source directory, rightclick and select properties->sharing

Peter