Board logo

标题: [已结]批处理:可以结束explorer.exe并重新运行该进程 [打印本页]

作者: JamesYou     时间: 2008-12-13 12:13    标题: [已结]批处理:可以结束explorer.exe并重新运行该进程
求批处理:可以结束explorer.exe并重新运行explorer.exe [ Last edited by HAT on 2008-12-13 at 17:12 ]

作者: wxcute     时间: 2008-12-13 12:31
搜索下 “结束进程” 有很多方案哦。 XP:taskkill、ntsd 2K:不清楚

作者: JamesYou     时间: 2008-12-13 13:10
我要的是完整的批处理不仅仅是一个命令

作者: wxcute     时间: 2008-12-13 13:21
好懒!我常用的(XP)
@echo off
taskkill /f /im explorer.exe
start "" explorer

作者: JamesYou     时间: 2008-12-13 14:13
谢了