Start EDX Task - QlikProfessionalServices/QlikView-CLI GitHub Wiki
First of all we need to connect to the QlikView Server
$Connection = Connect-QlikView
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
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