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);
上記のコードで構成ファイルのパスを指定する方法。