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

Announcements
Q&A with Qlik - Qlik Cloud Migration: Questions about migrating to Qlik Cloud? Catch the latest replay!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

move qvws from uat to prod

Is there automated way to move multiple qvw files from UAT to Prod

Labels (1)
4 Replies
tresB
Champion III
Champion III

You would get script to do so and schedule it in Windows. Google for the script like: Google

jagan
Partner - Champion III
Partner - Champion III

Hi,

Write Windows commands like Move or Copy in Batch file and schedule it in Windows scheduler.

Regards,

Jagan.

sankartalluru
Contributor III
Contributor III

Hi,

You have to create windows batch file to do this. try below code

XCOPY  "D:\test\*.qvw"  "E:\Test2\"

sankartalluru
Contributor III
Contributor III

Hi,

You have to create windows batch file to do this. try below code

write the below code in .txt file and save it as  .bat  file.

Title COPY

XCOPY  "D:\test\*.qvw"  "E:\Test2\"

Exit