Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Is there automated way to move multiple qvw files from UAT to Prod
You would get script to do so and schedule it in Windows. Google for the script like: Google
Hi,
Write Windows commands like Move or Copy in Batch file and schedule it in Windows scheduler.
Regards,
Jagan.
Hi,
You have to create windows batch file to do this. try below code
XCOPY "D:\test\*.qvw" "E:\Test2\"
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