有什么建议吗?这是错误代码:
@echo off
echo Enter IP address of remote computer:
set /p ip=
nbtstat -a %ip%
答案1
运行 nbtstat -A 而不是 nbtstat -a。-A 开关接受 ip 地址。其中 -a 接受远程名称。
有什么建议吗?这是错误代码:
@echo off
echo Enter IP address of remote computer:
set /p ip=
nbtstat -a %ip%
运行 nbtstat -A 而不是 nbtstat -a。-A 开关接受 ip 地址。其中 -a 接受远程名称。