Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
pgalvezt
Specialist
Specialist

Open reload within user and pass

Hello,

I have a .bat file that open QlikView a reload a qvw file. But this QlikView comes with user a pass. So when the bat file reload the QlikView appears the windows user and pass. I would like to know if its possible put the user and pass into of this .bat file?

Thanks!

2 Replies
Anonymous
Not applicable

When I used command line for reload, I included field SERIAL in Section Access.  On open, QV checks if the value of the Serial Number (license) is the same as in Section Access.  If it matches, there is no prompt for userid/password.

Regards,

Michael

jonasheisterkam
Partner - Creator III
Partner - Creator III

You can use a tool like SendKeys

The bat looks than like:

start "" "c:\Programme\Qlikview\QV.exe" "File.qvw"

SendKeys.exe 2 2 "QlikView x64" "User"

SendKeys.exe 1 1 "QlikView x64" "{ENTER}"

SendKeys.exe 2 2 "QlikView x64" "PW"

SendKeys.exe 1 1 "QlikView x64" "{ENTER}"

I would prefer Michaels way, if you can change the section access,