标题: [已结]sc后通道中的findstr不起作用
[打印本页]
作者: pillow
时间: 2008-12-17 15:32
标题: [已结]sc后通道中的findstr不起作用
环境:
Server 2003 SP2 CMD
要做的事:
批处理通过sc来重开远程电脑(列在list.txt中)的dhcp client服务,若有失败,将信息写入error.log
for /F %%i in (List.txt) do sc \\%%i stop dhcp ^| findstr /R "WIN32_EXIT_CODE.*0x0" ^|^| echo "%%i error" 1>>error.log
但error.log中没有记录主机名,而是如下信息;
[SC] ControlService FAILED 1062:
The service has not been started.
执行批处理时画面回显出来的命令确实是我希望得到的,这说明转义符也没用错。
推断是findstr处就已经未生效。将命令提取出来
sc \\PC1 stop dhcp | findstr /R "WIN32_EXIT_CODE.*(0x0)"|| echo "PC1 error" 1>>error.log
就能在error.log中得到预期内容,请大家指教!
[
Last edited by HAT on 2008-12-17 at 17:33 ]
作者: HAT
时间: 2008-12-17 15:59
结果贴出来看看:
for /F %%i in (List.txt) do (
sc \\%%i stop dhcp|findstr /R "WIN32_EXIT_CODE.*0x0"||echo>>error.log "%%i error"
)
type error.log
作者: pillow
时间: 2008-12-17 16:10
果然管用,不太懂为什么不用^来转义|呢?
还有下面这一段不懂
||echo>>error.log "%%i error
1.为什么echo后面直接就是>>
2.我应该在论坛里搜索什么来学习这种用法?
[
Last edited by pillow on 2008-12-17 at 16:14 ]
作者: HAT
时间: 2008-12-17 17:01
标题: Re 3楼
管道符用在这里的时候才需要转义:
for xxx ('xxx^|xxx') do (
xxx
)
重定向符号前置有什么好处
http://www.cn-dos.net/forum/viewthread.php?tid=16985
作者: pillow
时间: 2008-12-17 17:27
又掌握2个知识点,开心!
谢谢HAT!!