针对特定Ip的批量设置

时间:2016-11-14 11:54:51

标签: batch-file exception ip subnet

我想使用这个批处理文件:

@echo off

cd c:\windows\system32

gpupdate /force

exit

仅适用于具有特定ip或子网掩码的计算机。 所以,例如,如果我的comp设置为使用IP 10.110.x.x,它必须启动,如果没有(就像我回到家里时)它无法完成。

2 个答案:

答案 0 :(得分:1)

仅在计算机的IP为try (Connection con = ...; Statement stmt = conn.createStatement()) { stmt.executeQuery(String.format("BACKUP TO '%s'", zipFilePath)); } 时执行代码:

10.110.x.x

答案 1 :(得分:0)

我使用了这个脚本并且运行正常:

@echo off  for / f“tokens = 2 delims =”%% a in('pathping -n -h 1 -p 10 1.2.3.4 ^ | find“0”')do @set ipaddress = %% a

如果“%ipaddress:~0,10%”==“10.110.40。” (

cd c:\ windows \ system32

gpupdate / force

出口

我也试过了你,它工作得很好谢谢你!