找到许可文件位置,修改下HOST localhost ANY 5053 ,将localhost改为主机名或者127.0.0.1就可以了,
HOST winjhapp ANY 5053
或
HOST 127.0.0.1 ANY 5053
另外,每次打开服务尽量不要设置开机自启动,设置成条件判断:
如果"rlm" 服务已经启动,直接启动tecplot;如果"rlm" 服务没有启动,运行"rlm启动和tecplot启动,方法如下:
@璐村惂鐢ㄦ埛_000076K馃惥 off
REM 将引号内部分改成你要查找的服务名称
sc query |find /i "rlm" >nul 2>nul
REM 如果服务存在,跳转至exist标签
if not errorlevel 1 (goto exist) else goto notexist
:exist
REM 这里写服务存在时用的代码
::启动Tecplot 360
start /d "E:\soft\tecplot\Tecplot 360 EX 2020 R1\bin\" tec360.exe
goto :end
:notexist
REM 这里写服务不存在时用的代码
::启动rlm服务
start /d "E:\Crack\" rlm.exe
::启动Tecplot服务
start /d "E:\soft\tecplot\Tecplot 360 EX 2020 R1\bin\" tec360.exe
goto :end
:end
pause