Passing parameters to SSIS Execute process task

2019-08-29 10:56发布

问题:

I am using SSIS 2012..

i want to execute a exe file with two variable parameters

Executable: C:\temp\MyExe.exe

Parameter1: ABCD ---------- type is string

Parameter2: 1234 ---------- type is string

In dos it looks like this

c:\temp>MyExe.exe "ABCD" "1234"

This will executes fine.

Now I do not know what to place here when I want to use the Execute Process Task in SSIS.

回答1:

My mistake, I had a damn space after the MyExe.exe