@echo off @REM change to the filepath cd %~dp0 cd .. set aerialpython=%cd%/.env/python.exe set envsetting=%cd%/env/SettingEnv.bat @REM Setting the env if not exist %aerialpython% ( call %envsetting% ) cd %~dp0 cd .. echo change to path: %cd% set MQhost=192.168.1.224 set MQuser=chai set MQpassword=password123 set QUEUEname=aerial_rpc set DEVICEname=pod1 set SERVERhost=http://192.168.1.224/api set MICROWAVEhost=localhost set LOGfile=ClientTEST.log @REM Launch the Client echo the log file will be saved in the [%LOGfile%] file echo Client.py is running ... @REM -------- Usage: Client.py [MQhost] [MQuser] [MQpassword] [QUEUEname] [DEVICEname] [SERVERhost] [MICROWAVEhost] @REM %aerialpython% ./src/Client.py %MQhost% %MQuser% %MQpassword% %QUEUEname% %DEVICEname% %SERVERhost% %MICROWAVEhost% >> %LOGfile% %aerialpython% ./src/Client.py %MQhost% %MQuser% %MQpassword% %QUEUEname% %DEVICEname% %SERVERhost% %MICROWAVEhost% echo Client.py has been terminited. pause