Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
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?

Labels (1)
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