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

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How to add the parameters of user and password when auto reload data

As we know that we can use a bat file to reload the data automatically, like below:

TaskKill /F /IM QV.exe

"C:\Program Files\QlikView\QV.exe" /r "Path to your QlikView document"

But, It will pop up the message box to input the user name and password if you set the section access in the script. My question is how to add the parameters in the above script, and then we do not need to input the user name and password manually, or is there any other solution? Thanks.

3 Replies
Not applicable
Author

try this

Section Access;

LOAD * Inline [

ACESS, USERID, PASSWORD, PROFILE

ADMIN, admin, admin, ADMIN

USER,  user1, user1, USER1

USER,  user2, user2, USER2

];

SECTION Application;

Not applicable
Author

Thank you for your reply.

Will pop up the user and password box again.

Luis_Cortizo
Employee
Employee

Have you considered implemented the Section Access with NTNAME instead of USERID and PASSWORD?.

Otherwise the only thing that comes to my mind is to create a row on the section access with a parameter and pass that parameter on the command line, but to be honest I have never done such thing.