- 批处理脚本教程
- 批处理脚本 - 首页
- 批处理脚本 - 简介
- 批处理脚本 - 环境
- 批处理脚本 - 命令
- 批处理脚本 - 文件
- 批处理脚本 - 语法
- 批处理脚本 - 变量
- 批处理脚本 - 注释
- 批处理脚本 - 字符串
- 批处理脚本 - 数组
- 批处理脚本 - 决策制定
- 批处理脚本 - 运算符
- 批处理脚本 - DATE & TIME
- 批处理脚本 - 输入 / 输出
- 批处理脚本 - 返回代码
- 批处理脚本 - 函数
- 批处理脚本 - 进程
- 批处理脚本 - 别名
- 批处理脚本 - 设备
- 批处理脚本 - 注册表
- 批处理脚本 - 网络
- 批处理脚本 - 打印
- 批处理脚本 - 调试
- 批处理脚本 - 日志
- 批处理脚本资源
- 批处理脚本 - 快速指南
- 批处理脚本 - 实用资源
- 批处理脚本 - 讨论
批处理脚本 - PING
此批处理命令通过网络发送 ICMP/IP“回显”数据包到指定地址。
语法
PING [address]
其中 address 是目标系统的 IP 地址或主机名。
示例
@echo off Ping 127.0.0.1
输出
上述命令将向目标地址 192.168.0.1 发送 ICMP/IP“回显”数据包。以下是一种输出示例。
Pinging 127.0.0.1 with 32 bytes of data: Reply from 127.0.0.1: bytes = 32 time<1ms TTL = 128 Reply from 127.0.0.1: bytes = 32 time<1ms TTL = 128 Reply from 127.0.0.1: bytes = 32 time<1ms TTL = 128 Reply from 127.0.0.1: bytes = 32 time<1ms TTL = 128 Ping statistics for 127.0.0.1: Packets: Sent = 4, Received = 4, Lost = 0 (0% loss), Approximate round trip times in milli-seconds: Minimum = 0ms, Maximum = 0ms, Average = 0ms
batch_script_commands.htm
广告