Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have been trying to figure out as to how to use the Qlik CLI for power that I downloaded from GitHub. Just wondering if anyone is aware of detailed help information on how these cmdlets are to be used. I found a PDF that details a few simple tasks from https://community.qlik.com/t5/Qlik-Sense-Enterprise-Documents/Use-Case-Qlik-Sense-Cmdlet-for-PowerSh... I'm looking for something with more detail for the cmdlts as Get-Help hasn't been exactly useful.
Have you come across https://ahaydon.github.io/Qlik-Cli/ which is linked on the Github page?
As for the Github page, I would be sure to check out the Wiki (https://github.com/ahaydon/Qlik-Cli/wiki) if you have not already done so.
There's some cursory documentation on the Wiki but at its core the filter param is a Qlik Sense Repository API piece of functionality which Qlik-CLI just exposes. What is the use case which isn't working?
I worked around it using a pipe and a where clause works fine. Basically did this
$(Get-QlikTask -full -raw) | where {($_.schemaPath -eq "ReloadTask") -and ($_.name -match $QlikSenseReloadTask0)}