批处理脚本获取计算机的IPV4地址,然后如果IP在一个范围内运行批处理文件

时间:2017-05-18 02:02:46

标签: windows batch-file

我正在尝试让这个批处理文件正常工作。有2个ip范围需要检查。

10.0.50.xxx 10.0.60.xxx

到目前为止,我做到了这一点无济于事。

[回滚到原版 - OP还在匹配的字符串中试验了*

     ipconfig | find /i "IPv4 Address. . . . . . . . . . . : 10.0.50." >nul 2>nul && (

  call script.bat 

) || (

  ipconfig | find /i "IPv4 Address. . . . . . . . . . . : 10.0.6." >nul 2>nul && (

  call script2.bat 

) || (

exit

任何帮助都会非常感激。

1 个答案:

答案 0 :(得分:1)

这适合吗?

 <input type="text" name="Username" value="<?php if(isset($_POST["signup_button"]) && $_POST["signup_button"]=="Submit") {echo $username; ?>"

我担心它未经测试