Skip to main content
Announcements
Live today at 11 AM ET. Get your questions about Qlik Connect answered, or just listen in. SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How to create windows batch file

How to create a windows batch file to start qlikview with a parameter

1 Solution

Accepted Solutions
Miguel_Angel_Baeyens

Hi,

Use notepad and set something like the following to reload a file passing a variable (vSecurity) on to the document.

"C:\Program Files\QlikView\qv.exe" /vvSecurity=1 /r "C:\QlikViewFiles\File.qvw"


Store that into a .bat file including quotes. Further documentation about parameters is available in the Reference Manual, Book I, Part III, 6 Command line syntax.

Hope this helps.

View solution in original post

3 Replies
Miguel_Angel_Baeyens

Hi,

Use notepad and set something like the following to reload a file passing a variable (vSecurity) on to the document.

"C:\Program Files\QlikView\qv.exe" /vvSecurity=1 /r "C:\QlikViewFiles\File.qvw"


Store that into a .bat file including quotes. Further documentation about parameters is available in the Reference Manual, Book I, Part III, 6 Command line syntax.

Hope this helps.

rajni_batra
Specialist
Specialist

hi miguel

what will be the syntax if we want partial reload istead of full reload from batch file just for sake of testing purpose

Regards

Rajni

Miguel_Angel_Baeyens

Hi Rajni,

Use /rp switch instead of the /p as shown above.

Miguel