作者:rundll32 | 时间:2007-07-04 10:37 | 标题:DOS窗口能正确执行的语句在批处理中怎么执行不了
for %i in (c:\windows\system32\*.dll) do regsvr32.exe /s %i
这句命令在dos 窗口中能够正确执行,但是在批处理中双击为什么就没反应了呢??
应该怎么改??请教高手!
[ Last edited by bjsh on 2007-7-31 at 10:10 AM ]
作者:ThinKing | 时间:2007-07-04 10:42
解答室已经回复了你的贴子了。
作者:pcqq | 时间:2007-07-04 11:01
for %i in (c:\windows\system32\*.dll) do regsvr32.exe /s %i 在批处理中得使用
for %% in (c:\windows\system32\*.dll) do regsvr32.exe /s %%i 两个%%号
作者:tyh | 时间:2007-07-04 11:29
老是问重复的问题会让人烦的。
作者:rundll32 | 时间:2007-07-04 12:27
谢谢哈,你是个好同志,只是想尽快获得答案,不得以而为之...