windows查看端口命令
2021-05-06 18:27
标签:查看 windows 端口 netstat --help#获取帮助 netstat -ano | find “443”#查看443端口 @echo off 本文出自 “马广杰——博客” 博客,请务必保留此出处http://maguangjie.blog.51cto.com/11214671/1971626 windows查看端口命令 标签:查看 windows 端口 原文地址:http://maguangjie.blog.51cto.com/11214671/1971626
netstat -an > c:\aaa.txt #将显示的结果输入到C盘aaa.txt文件中
netstat -an > c:\t.txt #在C盘创建文件名为t.txt
type c:\t.txt | find ":21" > tmp.txt && echo "ftp is running...."
type c:\t.txt | find ":80" > tmp.txt && echo "http is running...."
pause
type c:\t.txt | find ":123" > tmp.txt && echo "hehe is running...."
pause
del c:\t.txt
::这是我试验用于检测各项服务是否开启