Skip to main content
Announcements
NEW: Seamless Public Data Sharing with Qlik's New Anonymous Access Capability: TELL ME MORE!
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

4 Replies
tresesco
MVP
MVP

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

jagan
Luminary Alumni
Luminary Alumni

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