windows常用命令(网络命令篇)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了windows常用命令(网络命令篇)相关的知识,希望对你有一定的参考价值。

  • 测试ip连接:
    测试本地:
    ping  127.0.0.1
    测试网关:
    ping  192.168.8.1
    测试外网:
    ping  www.baidu.com
  • 查看本地网卡地址:
    ipconfig
  • 解析地址:
    查看:
    arp  -a
    添加:
    arp  -s  ip地址  物理地址
    删除:
    arp  -d  ip地址
  • 打开浏览器:
    start  www.baidu.com
  • 关闭/重启计算机:
    立即关机:
    shutdown  -s  -t
    立即重启:
    shutdown  -r  -t
    指定时间:
    shutdown  -s  -t  60
    取消关机/重启操作:
    shutdown  -a
  • 查看进程:
    查看所有:
    tasklist
    指定进程:
    tasklist  |  find  /i  "qq"
  • 关闭进程:
    按名称:
    taskkill  /im  qq
    按进程id:
    taskkill  /pid  80
  • 跨行输入:
    echo  a^
    b^
    c
    输出:abc
  • 输入多行文本:
    echo a & echo b & echo c
    输出:
    a
    b
    c
  • 设定表达式变量:
    set  /a  val=5%3
  • 以上是关于windows常用命令(网络命令篇)的主要内容,如果未能解决你的问题,请参考以下文章

    测试开发之网络篇-常用命令

    常用的网络工具命令都有哪些

    windows常用命令(快捷命令篇)

    windows常用命令(延迟扩展篇)

    windows常用命令(延迟扩展篇)

    Windows常用网络命令详解