使用PowerShell在asp.net中运行SSIS包

时间:2013-02-11 18:09:28

标签: asp.net powershell ssis package

任何人都可以告诉我如何在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);

如何在上面的代码中指定配置文件路径。

0 个答案:

没有答案