如何使用jmeter运行Powershell文件(扩展名为.ps1)?

时间:2016-11-29 13:48:13

标签: powershell groovy jmeter beanshell

I am using OS sampler in this image

我想用jmeter执行.ps1文件。我在图像中传递了参数,但是在面向输出的错误中传递了参数。The filename, directory name, or volume label syntax is incorrect. 虽然文件名,目录名是正确的。

1 个答案:

答案 0 :(得分:0)

这是你的问题:

JMeter Powershell

删除该引号,所有内容应按预期开始工作

一般来说,你的事情过于复杂。

  1. 为什么需要这些cmd /c?为什么不直接致电powershell
  2. 通常,PowerShell在Windows PATH中,不需要提供完整的路径
  3. 因此,请将OS Process Sampler配置为:

    • 命令:powershell
    • 参数:D:\Software\apache=jmeter-3.0\apache-jmeter-3.0\bin\TIP.ps1

    JMeter good os process sampler configuration

    有关从JMeter测试中调用第三方进程的详细信息,请参阅How to Run External Commands and Programs Locally and Remotely from JMeter文章。