我需要在Powershell中使用Start-Process来执行abaqus的python脚本,通常,在cmd中,我可以将它execute为
abaqus cae noGUI=xxx.py
而且效果不错,但是 我无法在Powershell中找到与Start-Process相对应的行。
在Powershell中,上述代码仍然可以执行,但在Start-Process中,我找不到解决方案。 谢谢你的帮助。
这应该可以了。
Start-Process abaqus -ArgumentList "cae noGUI=xxx.py"
如果找不到 abaqus
,提供其可执行文件的完整路径。如果你得到任何其他的错误,请将它们添加到你的问题。