2

如何继续从 AX 运行 powershell 脚本?是否可以通过批处理作业来做到这一点?我的意思是 AX 是否允许在服务器端进程中执行此操作?我在运行 FTP 上传、文件生成等某些进程时遇到了很多问题。感谢您的帮助,Thomas

4

1 回答 1

3

我使用了以下代码,它可以工作:

System.Diagnostics.Process  process;
System.Diagnostics.ProcessStartInfo startInfo;
;
process = new System.Diagnostics.Process();
startInfo = new System.Diagnostics.ProcessStartInfo();
startInfo.set_FileName("powershell.exe");
startInfo.set_Arguments("path_to_my_powershell_script");

startInfo.set_UseShellExecute(false);
startInfo.set_RedirectStandardError(true);
process.set_StartInfo(startInfo);
process.Start();
于 2013-05-16T14:16:37.527 回答