Hi
I have created a SQL Agent Job with a powershell step. The powershell script looks like the following:
Param
(
[string]$A,
[string]$B,
[int]$C
)
#Do something with $A,$B and $C
Now I have added it as a step and then created the job. What I am not able to figure out is how can I execute this job by passing parameters to the powershell script?