I have an SSIS Package that has a process task to be executed which internally executes a *.bat file.
The *.bat file has a few steps that are executed.I want to feed in some of the values in the batch file as parameters %1,%2 etc
I have the structure like the following:
-username %1 -p%2
I want to pass values dynamically to this process task using a script task that would be present before the process task.
Please let know how this can be achieved