2021年9月29日
通过IP地址查计算机名
以下是命令行内容,将其保存为.bat 就可以方便使用了,在工作中用它很方便,欢迎大家取用。@echo off
chcp 65001
title 通过IP地址查询计算机名
:input
cls
set "input="&set "f="
set /p input=请输入IP地址:
echo;"%input%"|>nul findstr "^\"[0-9][0-9]*\.[0-9][0-9]*\.[0-9][0-9]*\.[0-9][0-9]*\"$"||(goto input)
for %%a in (%input:.= %) do (echo;%%a|>nul findstr "^25[0-5]$ ^2[0-4][0-9]$ ^1[0-9][0-9]$ ^[1-9][0-9]$ ^[0-9]$"||(goto input))
nbtstat -A %input%
pause