任何人都可以告诉我如何在asp.net的服务器上运行带有powershell的SSIS包。请注意我还需要指定配置文件路径。
var processStartInfo = new ProcessStartInfo
{
Arguments = "dtexec /F " + "\"" + pkgPath + packageName +"\"",
FileName = "C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\powershell.exe"
};
Process process = Process.Start(processStartInfo);
如何在上面的代码中指定配置文件路径。