Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

how to do the setup for ldap authentication on your local machine?

how to do the setup for ldap authentication on your local machine?

2 Replies
tresesco
MVP
MVP

There is no such setting for local machine. If you want user autehnticate on windows system while opening a qv app,

You might give a try to this approach:

Use a Macro/VB Script.

Step 1: Use the below VB Script and change the file path & document name

Sub CloseApp()

set App = ActiveDocument.GetApplication

set newdoc = App.OpenDoc("YourFieldPath\yourapp.qvw","","")

ActiveDocument.Activate 

newdoc.CloseDoc

End Sub

Step 2: Now, use the Document Open Trigger and use "Run Macro" Action with the following expression.

=IF(OSUser() <>  'YourOSID', 'CloseApp')

tresesco
MVP
MVP

Or,

Did you mean NTNAME in section access?