I have a Windows 2008 server (A), I have a bat file (B) running on that server with a loop interval of one minute. Can I modify that bat file to download new instructions from server C, for example for moving folders and doing port forwarding (using netsh)?
我有一个Windows 2008服务器(A),我有一个在该服务器上运行的bat文件(B),循环间隔为一分钟。我可以修改该bat文件以从服务器C下载新指令,例如移动文件夹和进行端口转发(使用netsh)吗?
1 个解决方案
#1
0
You could probably do something hairy like this:
你可能会像这样做一些毛茸茸的东西:
assume: c:\batch\b.cmd assume: c:\batch\extensions
假设:c:\ batch \ b.cmd假设:c:\ batch \ extensions
copy new 'instructions' (aka cmd files) to c:\batch\extensions
将新的“说明”(也称为cmd文件)复制到c:\ batch \ extensions
in your b.cmd add:
在你的b.cmd中添加:
@rem run extensions
for %%f in (c:\batch\extensions\*.cmd) do call :extension %%f
goto :EOF
:extension
call %1
REM Maybe remove the extension if it has run? check errorlevel?
goto :EOF
#1
0
You could probably do something hairy like this:
你可能会像这样做一些毛茸茸的东西:
assume: c:\batch\b.cmd assume: c:\batch\extensions
假设:c:\ batch \ b.cmd假设:c:\ batch \ extensions
copy new 'instructions' (aka cmd files) to c:\batch\extensions
将新的“说明”(也称为cmd文件)复制到c:\ batch \ extensions
in your b.cmd add:
在你的b.cmd中添加:
@rem run extensions
for %%f in (c:\batch\extensions\*.cmd) do call :extension %%f
goto :EOF
:extension
call %1
REM Maybe remove the extension if it has run? check errorlevel?
goto :EOF