Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
lescoulm
Contributor
Contributor

Power Tools : qv-user-manager with multiple servers

Hi,

I use qv-user-manager to extract from QLikView server DMS and CALs.

Now, I would like to extract DMS and CALs from 2 servers (Production and Qualification), using the same .config file.

I tried to modify the qv-user-manager.exe.config file, but It does not work.

Have you ideas about how resolve my problem ?

1 Solution

Accepted Solutions
danielrozental
Master II
Master II

You could have 1 exe file and 1 result file and still have 2 config files.

You could do something like this

copy configfile1.config qv-user-manager.exe.config

qv-user-manager.exe --list dms > dmsusers.csv

copy configfile2.config qv-user-manager.exe.config

qv-user-manager.exe --list dms >> dmsusers.csv

View solution in original post

5 Replies
danielrozental
Master II
Master II

Why can't you just use a config file for each server? wouldn't that be a lot simpler?

lescoulm
Contributor
Contributor
Author

Yes, I could do It but in that case I should launch 2 .exe files and I will have 2 result files.

I would like to launch only 1 .exe file, and having all results in one file.

lescoulm
Contributor
Contributor
Author

Yes, I could do It but in that case I should launch 2 .exe files and I will have 2 result files.

I would like to launch only 1 .exe file, and having all results in one file.

danielrozental
Master II
Master II

You could have 1 exe file and 1 result file and still have 2 config files.

You could do something like this

copy configfile1.config qv-user-manager.exe.config

qv-user-manager.exe --list dms > dmsusers.csv

copy configfile2.config qv-user-manager.exe.config

qv-user-manager.exe --list dms >> dmsusers.csv

lescoulm
Contributor
Contributor
Author

Ok, It works fine.

Thanks