当前位置:软件学习 > 其它软件 >>

windows下检测端口脚本

rem 如果citrix tcp1494端口不通,则重启服务器 
rem **************************************************** 
title Citrix状态检测,端口TCP1494 
DATE=%date:~0,10% %time% 
cls 
netstat -an | find "LIST" | find /c "0:1494" 
@echo off 
 
if not errorlevel 1 goto exit 
echo Citrix不正常,需要重新启动服务器!! 
 
rem 若不正常,写入日志 
echo citrix服务不正常,时间 %DATE% >> citrixstatus.log 
shutdown /f /r 
 
:exit 
echo Citrix状态ok! 

netstat -an | find "LIST"  这里的find过滤区分大小写,标识查找带有监听字符串(LISTENING)的行

 

摘自 islandstar

补充:软件开发 , 其他 ,
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,