Welcome to the Alteryx Knowledge Base

Scheduling Workflows Using Event Run Command
user

Created/Edited - 4/27/2026 by Dan Menke | Alteryx

Procedure

I had a user recently ask about having an app on their Gallery run, produce an output, and have a second workflow send an email with the output from the app. There are a couple of ways to accomplish this, but I came up with an idea that I thought would be useful to share with the Community as they may find this feature useful for many situations.

 

The idea was to make it simple for the user so that they didn't have to use a chained app. The user just wanted the second workflow to run, but not put the Email tool on the Server. The solution is to use the Events > Run Command in the Workflow Configuration to schedule the email workflow after the app is run.

 

To accomplish the task, you can use a command line option that will add a specified workflow to the scheduler queue.

 

Scheduling a workflow via the Command Line:

 

The Run Command is in the Events tab; click on your Alteryx canvas and in the Workflow Configuration window select Events > Add > Run Command:

 

 

Run Event When: to "After Run"

 

Command:

C:\Program Files\Alteryx\bin\AlteryxService.exe (This may not be exactly where your company has the AlteryxService.exe saved. Please check with your Server Admin.)

 

Command Argument [Optional]:

addtoqueue=C:\location\of\workflow\to\schedule.yxmd,Server name,Controller Token,true

 

Example:

C:\Program Files\Alteryx\bin\AlteryxService.exe addtoqueue=C:\Temp\simpleoutput.yxmd,dib-ps-tst-12,3EA75D9170E4956DC3583C23224BA0898A98376D,true

 

Where to find Server name: On the machine the holds the server - Windows Start>Control Panel>System>Computer Name
 
Where to find the Controller Token: Open your Alteryx System setting on the Server and click Next until you reach the General screen under the Controller section. Click View to see the Controller Token and copy the token.
 
Controller.jpg

 

 

 

 

 

 

 

 

 

 

Once the first workflow is run, the Scheduler will queue up the scheduled workflow and run the workflow on the Scheduler immediately.

 

Hopefully, this will give you some creative ideas to use this operation!

Was this article helpful?