工作中常用的dos命令

打开注册表:regedit

打开服务列表:services.msc

查目标机器端口是否开放

  telnet 192.168.1.1 80

查询端口   findstr 可直接跟端口也可以

  netstat -ano | findstr 0.0.0.0:80
    TCP 0.0.0.0:80 0.0.0.0:0 LISTENING 4
    TCP 0.0.0.0:8086 0.0.0.0:0 LISTENING 7372

原文地址:https://www.cnblogs.com/nimeide/p/7489219.html