Start EDX Task - QlikProfessionalServices/QlikView-CLI GitHub Wiki

Start-QVEDXTask

Connect via the QlikView APIs

First of all we need to connect to the QlikView Server

$Connection = Connect-QlikView

Call the Start-QVEDXTask function

This command will find the Task with the Supplied Name or ID and run it. (include password if required)

The it returns a TriggerEDXTaskResult object that contains information on the EDXTask such as the Execution ID

Start-QVEDXTask -Tasknameorid TaskName

Start-EDXTask

The TriggerEDXTaskResult object has a ExecID value that can then be used to monitor the status of the EDX Task.

$QVEDXTask = Start-QVEDXTask -Tasknameorid TaskName
Get-QVEDXTaskStatus -Executionid $QVEDXTask.ExecID

Get-QVEDXTaskStatus

⚠️ **GitHub.com Fallback** ⚠️