Tuesday, 19 May 2020

Start Jmeter with Command Line

@echo off
echo This program will start JMeter without proxy server enabled
pause
START /b cmd.exe /k " C: & cd C:\apache-jmeter-5.1.1\bin\ & jmeterw.cmd & exit"
EXIT


______________________________

echo off
echo This program will start JMeter with proxy server enabled
pause
START /b cmd.exe /k " C: & cd C:\apache-jmeter-5.1.1\bin\ & jmeterw.cmd -H proxy.abc.com -P 8080 -u username -a password & exit"
EXIT

No comments:

Post a Comment