Execute Process Set from UI Button click?

I have created a Process Set that I would like to execute from a button click on a UI Customization - is this possible? The parameters will be the same every time (other than the workstation?)

Assign the process to a menu and then you can call that from a customization:

private void epiButtonC1_Click(object sender, System.EventArgs args)
	{
		// show dashboard
		ProcessCaller.LaunchForm(oTrans, "YourMenuIDHere");
	}

Nice Dragos. I was trying to write some code on a button click to submit a process set to the agent as run now.

Your solution would present the user with an additional screen to run the process set, is that true?

What I have there just opens a dashboard/form/etc. as if you were clicking on it in the Epicor’s menu. I think you need a different thing for that - like submit a new process to the task agent.