<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>article How to create an external program task in Qlik Sense with a Powershell Script in Official Support Articles</title>
    <link>https://community.qlik.com/t5/Official-Support-Articles/How-to-create-an-external-program-task-in-Qlik-Sense-with-a/ta-p/1713044</link>
    <description>&lt;P&gt;External program tasks in Qlik Sense are simply another task type.&amp;nbsp;&lt;SPAN&gt;With external program tasks, you can trigger external processes, such as scripts or .exe files. Task chaining is supported and you can combine reload tasks with external program tasks.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;The functionality is exposed in the Qlik Sense Management Console beginning with the&amp;nbsp;&lt;STRONG&gt;May 2021&amp;nbsp;&lt;/STRONG&gt;release. See&amp;nbsp;&lt;A href="https://help.qlik.com/en-US/sense-admin/Subsystems/DeployAdministerQSE/Content/Sense_DeployAdminister/QSEoW/Administer_QSEoW/Managing_QSEoW/create-edit-external-program-tasks.htm" target="_blank" rel="noopener"&gt;Creating and editing external program tasks&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;Previous versions allow you to create external tasks in a&amp;nbsp;command shell process behind the scenes; which in turns means you can run more or less anything you can run on the command prompt.&amp;nbsp;Once you define your command and create a new task, you can both trigger and chain these types of tasks in the QMC.&lt;/P&gt;
&lt;P data-unlink="true"&gt;In this example, we will be using a Powershell Script which means&amp;nbsp;that powershell.exe&amp;nbsp;needs to be in your PATH variable (By default &lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\powershell.exe&lt;/FONT&gt;&lt;/STRONG&gt;). Again, you can run any command that you can run in the windows command prompt, so these examples are only for demo purposes.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Before we get started&lt;/STRONG&gt;, we need to understand that IF you are calling scripts in your command, the script needs to be accessible by the user running the Qlik services. In this example, there’s a folder on the root C: drive called ‘&lt;FONT face="courier new,courier"&gt;externalTasksExample&lt;/FONT&gt;’, in this folder, there is a script.ps1&amp;nbsp;file which simply creates a new file in the same folder.&lt;BR /&gt;&lt;BR /&gt;The file looks like:&lt;/P&gt;
&lt;PRE&gt;Start-Transcript C:\externalTasksExample\transcript.log
$date = Get-Date
Write-Host $date
Stop-Transcript&lt;/PRE&gt;
&lt;P&gt;You can run the file from the command prompt by doing the following:&lt;/P&gt;
&lt;PRE&gt;C:\externalTasksExample&amp;gt;C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe -File script.ps1&lt;/PRE&gt;
&lt;P&gt;When the command runs successfully, you should have a new file created in the externalTasksExample folder called “transcript.log”.&lt;/P&gt;
&lt;P&gt;Now we will delete this transcript.log and try to run that same PowerShell file using an external program task in Qlik Sense. The first thing we need to do is actually create the task.&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;The endpoint is:&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt;POST /qrs/externalprogramtask&lt;/PRE&gt;
&lt;P&gt;With the body being:&lt;/P&gt;
&lt;PRE&gt;{
  "path": "C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\powershell.exe",
  "parameters": "C:\\externalTasksExample\\Script.ps1",
  "name": "Task Name",
  "taskType": 1,
  "enabled": true,
  "taskSessionTimeout": 1440,
  "maxRetries": 0,
  "privileges": null,
  "schemaPath": "ExternalProgramTask"
}&lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Here is a sample script:&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;$hdrs = @{}
$hdrs.Add("X-Qlik-xrfkey","12345678qwertyui")
$hdrs.Add("X-Qlik-User","UserDirectory=DOMAIN;UserId=Administrator")
$hdrs.Add("content-type","application/json; charset=UTF-8")
$body = '{
  "path": "C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\powershell.exe",
  "parameters": "C:\\externalTasksExample\\Script.ps1",
  "name": "Task Name",
  "taskType": 1,
  "enabled": true,
  "taskSessionTimeout": 1440,
  "maxRetries": 0,
  "privileges": null,
  "schemaPath": "ExternalProgramTask"
}'

$cert = Get-ChildItem -Path "Cert:\CurrentUser\My" | Where {$_.Subject -like '*QlikClient*'}
$url = "https://qlikserver1.domain.local:4242/qrs/externalprogramtask?xrfkey=12345678qwertyui"
Invoke-RestMethod -Uri $url -Method Post -Headers $hdrs -Body $body -Certificate $cert&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;This generates a response like:&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;id                 : 1353eb7c-44c7-422b-9e73-c2667011a1b0
createdDate        : 2022-06-13T19:35:40.382Z
modifiedDate       : 2022-06-13T19:35:40.382Z
modifiedByUserName : DOMAIN\administrator
customProperties   : {}
path               : C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe
parameters         : C:\externalTasksExample\Script.ps1
qlikUser           : 
operational        : @{id=5ececc2a-dc6c-4769-b424-c325faddf74c; lastExecutionResult=; nextExecution=1753-01-01T00:00:00.000Z; privileges=}
name               : Task Name
taskType           : 1
enabled            : True
taskSessionTimeout : 1440
maxRetries         : 0
tags               : {}
privileges         : 
schemaPath         : ExternalProgramTask&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Once you post this into Qlik, you should be able to go to the QMC and see the following task in the task list.&lt;/P&gt;
&lt;P&gt;You should be able to select the task, click 'Start', and the same file should appear in '&lt;FONT face="courier new,courier"&gt;C:\externalTasksExample&lt;/FONT&gt;'. You are now running an external task. Remember you don't have to use powershell.exe, you can trigger anything you want as long as it can be run from the command line.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H4&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Related Content:&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H4&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;A href="https://community.qlik.com/t5/Support-Knowledge-Base/How-to-configure-Postman-desktop-app-to-connect-to-Qlik-Sense/ta-p/1711499" target="_self"&gt;How to configure Postman (desktop app) to connect to Qlik Sense&lt;/A&gt;&amp;nbsp;&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 13 Mar 2023 07:45:05 GMT</pubDate>
    <dc:creator>Bastien_Laugiero</dc:creator>
    <dc:date>2023-03-13T07:45:05Z</dc:date>
    <item>
      <title>How to create an external program task in Qlik Sense with a Powershell Script</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/How-to-create-an-external-program-task-in-Qlik-Sense-with-a/ta-p/1713044</link>
      <description>&lt;P&gt;External program tasks in Qlik Sense are simply another task type.&amp;nbsp;&lt;SPAN&gt;With external program tasks, you can trigger external processes, such as scripts or .exe files. Task chaining is supported and you can combine reload tasks with external program tasks.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;The functionality is exposed in the Qlik Sense Management Console beginning with the&amp;nbsp;&lt;STRONG&gt;May 2021&amp;nbsp;&lt;/STRONG&gt;release. See&amp;nbsp;&lt;A href="https://help.qlik.com/en-US/sense-admin/Subsystems/DeployAdministerQSE/Content/Sense_DeployAdminister/QSEoW/Administer_QSEoW/Managing_QSEoW/create-edit-external-program-tasks.htm" target="_blank" rel="noopener"&gt;Creating and editing external program tasks&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;Previous versions allow you to create external tasks in a&amp;nbsp;command shell process behind the scenes; which in turns means you can run more or less anything you can run on the command prompt.&amp;nbsp;Once you define your command and create a new task, you can both trigger and chain these types of tasks in the QMC.&lt;/P&gt;
&lt;P data-unlink="true"&gt;In this example, we will be using a Powershell Script which means&amp;nbsp;that powershell.exe&amp;nbsp;needs to be in your PATH variable (By default &lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\powershell.exe&lt;/FONT&gt;&lt;/STRONG&gt;). Again, you can run any command that you can run in the windows command prompt, so these examples are only for demo purposes.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Before we get started&lt;/STRONG&gt;, we need to understand that IF you are calling scripts in your command, the script needs to be accessible by the user running the Qlik services. In this example, there’s a folder on the root C: drive called ‘&lt;FONT face="courier new,courier"&gt;externalTasksExample&lt;/FONT&gt;’, in this folder, there is a script.ps1&amp;nbsp;file which simply creates a new file in the same folder.&lt;BR /&gt;&lt;BR /&gt;The file looks like:&lt;/P&gt;
&lt;PRE&gt;Start-Transcript C:\externalTasksExample\transcript.log
$date = Get-Date
Write-Host $date
Stop-Transcript&lt;/PRE&gt;
&lt;P&gt;You can run the file from the command prompt by doing the following:&lt;/P&gt;
&lt;PRE&gt;C:\externalTasksExample&amp;gt;C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe -File script.ps1&lt;/PRE&gt;
&lt;P&gt;When the command runs successfully, you should have a new file created in the externalTasksExample folder called “transcript.log”.&lt;/P&gt;
&lt;P&gt;Now we will delete this transcript.log and try to run that same PowerShell file using an external program task in Qlik Sense. The first thing we need to do is actually create the task.&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;The endpoint is:&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt;POST /qrs/externalprogramtask&lt;/PRE&gt;
&lt;P&gt;With the body being:&lt;/P&gt;
&lt;PRE&gt;{
  "path": "C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\powershell.exe",
  "parameters": "C:\\externalTasksExample\\Script.ps1",
  "name": "Task Name",
  "taskType": 1,
  "enabled": true,
  "taskSessionTimeout": 1440,
  "maxRetries": 0,
  "privileges": null,
  "schemaPath": "ExternalProgramTask"
}&lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Here is a sample script:&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;$hdrs = @{}
$hdrs.Add("X-Qlik-xrfkey","12345678qwertyui")
$hdrs.Add("X-Qlik-User","UserDirectory=DOMAIN;UserId=Administrator")
$hdrs.Add("content-type","application/json; charset=UTF-8")
$body = '{
  "path": "C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\powershell.exe",
  "parameters": "C:\\externalTasksExample\\Script.ps1",
  "name": "Task Name",
  "taskType": 1,
  "enabled": true,
  "taskSessionTimeout": 1440,
  "maxRetries": 0,
  "privileges": null,
  "schemaPath": "ExternalProgramTask"
}'

$cert = Get-ChildItem -Path "Cert:\CurrentUser\My" | Where {$_.Subject -like '*QlikClient*'}
$url = "https://qlikserver1.domain.local:4242/qrs/externalprogramtask?xrfkey=12345678qwertyui"
Invoke-RestMethod -Uri $url -Method Post -Headers $hdrs -Body $body -Certificate $cert&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;This generates a response like:&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;id                 : 1353eb7c-44c7-422b-9e73-c2667011a1b0
createdDate        : 2022-06-13T19:35:40.382Z
modifiedDate       : 2022-06-13T19:35:40.382Z
modifiedByUserName : DOMAIN\administrator
customProperties   : {}
path               : C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe
parameters         : C:\externalTasksExample\Script.ps1
qlikUser           : 
operational        : @{id=5ececc2a-dc6c-4769-b424-c325faddf74c; lastExecutionResult=; nextExecution=1753-01-01T00:00:00.000Z; privileges=}
name               : Task Name
taskType           : 1
enabled            : True
taskSessionTimeout : 1440
maxRetries         : 0
tags               : {}
privileges         : 
schemaPath         : ExternalProgramTask&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Once you post this into Qlik, you should be able to go to the QMC and see the following task in the task list.&lt;/P&gt;
&lt;P&gt;You should be able to select the task, click 'Start', and the same file should appear in '&lt;FONT face="courier new,courier"&gt;C:\externalTasksExample&lt;/FONT&gt;'. You are now running an external task. Remember you don't have to use powershell.exe, you can trigger anything you want as long as it can be run from the command line.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H4&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Related Content:&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H4&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;A href="https://community.qlik.com/t5/Support-Knowledge-Base/How-to-configure-Postman-desktop-app-to-connect-to-Qlik-Sense/ta-p/1711499" target="_self"&gt;How to configure Postman (desktop app) to connect to Qlik Sense&lt;/A&gt;&amp;nbsp;&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 13 Mar 2023 07:45:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/How-to-create-an-external-program-task-in-Qlik-Sense-with-a/ta-p/1713044</guid>
      <dc:creator>Bastien_Laugiero</dc:creator>
      <dc:date>2023-03-13T07:45:05Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Sense - Create an external program running a Powershell Script</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/How-to-create-an-external-program-task-in-Qlik-Sense-with-a/tac-p/1756669#M944</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;You write:&lt;/P&gt;&lt;P&gt;"Once you post this into Qlik, you should be able to go to the QMC and see the following task in the task list."&lt;/P&gt;&lt;P&gt;How to post this in Qlik ?&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 28 Oct 2020 14:12:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/How-to-create-an-external-program-task-in-Qlik-Sense-with-a/tac-p/1756669#M944</guid>
      <dc:creator>maks2481</dc:creator>
      <dc:date>2020-10-28T14:12:52Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Sense - Create an external program running a Powershell Script</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/How-to-create-an-external-program-task-in-Qlik-Sense-with-a/tac-p/1758369#M996</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/103754"&gt;@maks2481&lt;/a&gt;&amp;nbsp;Hello!&lt;/P&gt;
&lt;P&gt;You may want to look into&amp;nbsp;&lt;EM&gt;&lt;A href="https://community.qlik.com/t5/Support-Knowledge-Base/How-to-configure-Postman-desktop-app-to-connect-to-Qlik-Sense/ta-p/1711499" target="_blank" rel="noopener"&gt;How to configure Postman (desktop app) to connect to Qlik Sense&lt;/A&gt;.&amp;nbsp;&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 04 Nov 2020 10:45:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/How-to-create-an-external-program-task-in-Qlik-Sense-with-a/tac-p/1758369#M996</guid>
      <dc:creator>Sonja_Bauernfeind</dc:creator>
      <dc:date>2020-11-04T10:45:54Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Sense - Create an external program running a Powershell Script</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/How-to-create-an-external-program-task-in-Qlik-Sense-with-a/tac-p/1907547#M5897</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/28597"&gt;@Sonja_Bauernfeind&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;In latest versions it's possible to edit external tasks in QMC. I did just like instructions above but directly in QMC. The task fails though right after running it. I can't download any logs all I get is:&lt;/P&gt;
&lt;DIV class="logentry ng-scope"&gt;
&lt;DIV class="datetime ng-binding ng-scope"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class="message ng-binding"&gt;Changing task state from Started to FinishedFail&lt;/DIV&gt;
&lt;DIV class="message ng-binding"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;DIV class="logentry ng-scope"&gt;
&lt;DIV class="message ng-binding"&gt;ExitCode: 1&lt;/DIV&gt;
&lt;DIV class="message ng-binding"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class="message ng-binding"&gt;How can I troubleshoot this?&lt;/DIV&gt;
&lt;/DIV&gt;</description>
      <pubDate>Mon, 21 Mar 2022 11:28:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/How-to-create-an-external-program-task-in-Qlik-Sense-with-a/tac-p/1907547#M5897</guid>
      <dc:creator>matKa</dc:creator>
      <dc:date>2022-03-21T11:28:40Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Sense - Create an external program running a Powershell Script</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/How-to-create-an-external-program-task-in-Qlik-Sense-with-a/tac-p/1908236#M5909</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/78188"&gt;@matKa&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I would recommend posting about this issue in the appropriate forum:&amp;nbsp;&lt;A href="https://community.qlik.com/t5/Deployment-Management/bd-p/qlik-sense-deployment" target="_self"&gt;Qlik Sense Deployment &amp;amp; Management&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;All the best,&lt;BR /&gt;Sonja&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 22 Mar 2022 14:43:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/How-to-create-an-external-program-task-in-Qlik-Sense-with-a/tac-p/1908236#M5909</guid>
      <dc:creator>Sonja_Bauernfeind</dc:creator>
      <dc:date>2022-03-22T14:43:33Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Sense - Create an external program running a Powershell Script</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/How-to-create-an-external-program-task-in-Qlik-Sense-with-a/tac-p/1926019#M6353</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/2019"&gt;@Bastien_Laugiero&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hello&lt;/P&gt;
&lt;P&gt;I have completed the exercise until you run the script.ps1 powershell that creates transcript.log.&lt;/P&gt;
&lt;P&gt;But I got lost from "The endpoint is:" explanation.&lt;BR /&gt;How do I change Script.ps1?&lt;BR /&gt;What value should I enter for Parameter in the QMC setting?&lt;/P&gt;
&lt;P&gt;I need your help.&lt;/P&gt;
&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Wed, 04 May 2022 07:27:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/How-to-create-an-external-program-task-in-Qlik-Sense-with-a/tac-p/1926019#M6353</guid>
      <dc:creator>hanna_choi</dc:creator>
      <dc:date>2022-05-04T07:27:25Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Sense - Create an external program running a Powershell Script</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/How-to-create-an-external-program-task-in-Qlik-Sense-with-a/tac-p/1938179#M6556</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/16864"&gt;@hanna_choi&lt;/a&gt;&amp;nbsp;!&lt;/P&gt;
&lt;P&gt;We're reviewing the article to see if we can give you a more detailed example.&lt;/P&gt;
&lt;P&gt;All the best,&lt;BR /&gt;Sonja&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 01 Jun 2022 08:58:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/How-to-create-an-external-program-task-in-Qlik-Sense-with-a/tac-p/1938179#M6556</guid>
      <dc:creator>Sonja_Bauernfeind</dc:creator>
      <dc:date>2022-06-01T08:58:05Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Sense - Create an external program running a Powershell Script</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/How-to-create-an-external-program-task-in-Qlik-Sense-with-a/tac-p/1943140#M6659</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/16864"&gt;@hanna_choi&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We have added sample scripts.&lt;/P&gt;
&lt;P&gt;If you require more assistance, I would recommend posting about your query in our active &lt;A href="https://community.qlik.com/t5/Integration-Extension-APIs/bd-p/qlik-sense-integration-extension-api" target="_blank" rel="noopener"&gt;Integration forum&lt;/A&gt; (where you can make use of our userbase and our support engineers).&lt;/P&gt;
&lt;P&gt;All the best,&lt;BR /&gt;Sonja&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 14 Jun 2022 06:49:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/How-to-create-an-external-program-task-in-Qlik-Sense-with-a/tac-p/1943140#M6659</guid>
      <dc:creator>Sonja_Bauernfeind</dc:creator>
      <dc:date>2022-06-14T06:49:55Z</dc:date>
    </item>
    <item>
      <title>Re: How to create an external program task in Qlik Sense with a Powershell Script</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/How-to-create-an-external-program-task-in-Qlik-Sense-with-a/tac-p/2043838#M8556</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/2019"&gt;@Bastien_Laugiero&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;I was able to create an external task using the provided powershell script.&lt;BR /&gt;&lt;BR /&gt;Is it possible to run another QMC task (not an external task) after my external task executes successfully?&lt;/P&gt;</description>
      <pubDate>Wed, 01 Mar 2023 13:27:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/How-to-create-an-external-program-task-in-Qlik-Sense-with-a/tac-p/2043838#M8556</guid>
      <dc:creator>jchacko_rxsense</dc:creator>
      <dc:date>2023-03-01T13:27:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to create an external program task in Qlik Sense with a Powershell Script</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/How-to-create-an-external-program-task-in-Qlik-Sense-with-a/tac-p/2048308#M8667</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/164299"&gt;@jchacko_rxsense&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is this what you are looking for?&amp;nbsp;&lt;A href="https://community.qlik.com/t5/Official-Support-Articles/Examples-Trigger-a-Qlik-Sense-task-externally/ta-p/1714821" target="_blank" rel="noopener"&gt;Examples: Trigger a Qlik Sense task externally&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you need more assistance with implementing and customising the code,&amp;nbsp;&lt;SPAN&gt;&amp;nbsp;please post in our&amp;nbsp;active&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://community.qlik.com/t5/Integration-Extension-APIs/bd-p/qlik-sense-integration-extension-api" target="_blank" rel="noopener"&gt;Integration forum&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;(where you can use our userbase and support engineers).&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;All the best,&lt;BR /&gt;Sonja&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 13 Mar 2023 07:49:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/How-to-create-an-external-program-task-in-Qlik-Sense-with-a/tac-p/2048308#M8667</guid>
      <dc:creator>Sonja_Bauernfeind</dc:creator>
      <dc:date>2023-03-13T07:49:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to create an external program task in Qlik Sense with a Powershell Script</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/How-to-create-an-external-program-task-in-Qlik-Sense-with-a/tac-p/2086811#M9516</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;Most of search on the web to create an external program task to execute a powershell script bring to this page. So just to be more clear for those who do not use postman and want to execute a powershell script: In the QMC, create a new task with this configuration :&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Path:&lt;/STRONG&gt;&amp;nbsp;&lt;EM&gt;C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Parameters:&lt;/STRONG&gt;&amp;nbsp;&lt;EM&gt;C:\externalTasksExample\Script.ps1&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;Do not use -command or -file parameter&amp;nbsp; as usual with PowerShell.exe.&lt;/P&gt;
&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/2019"&gt;@Bastien_Laugiero&lt;/a&gt;&amp;nbsp; !&lt;/P&gt;</description>
      <pubDate>Thu, 22 Jun 2023 13:32:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/How-to-create-an-external-program-task-in-Qlik-Sense-with-a/tac-p/2086811#M9516</guid>
      <dc:creator>GeoFev</dc:creator>
      <dc:date>2023-06-22T13:32:52Z</dc:date>
    </item>
  </channel>
</rss>

