2、在命令提示符下输入如下命令并回车:
taskkill /f /im explorer.exe
3、在命令提示符下继续输入如下命令并回车:
at time /interactive %systemroot%\explorer.exe
4、一秒钟后会重新加载用户配置,以SYSTEM身份启动Windows的shell进程Explorer.exe
不用这么复杂
直接用 at time /interactive %systemroot%\system32\regedit.exe 打开注册表 就可以了
要删东西也可以用 at time /interactive %systemroot%\system32\cmd.exe 用taskkill结束进程
|
田草 于 2008-07-09 10:18 PM 发表评论:
@echo off
taskkill /f /im explorer.exe
set time1=%time:~0,-3%
echo 现在时间是 %time1%
for /f "tokens=1,2,3 delims=:" %%i in ("%time1%") do (
set /a hour_1=%%i
set /a munite_1=%%j
)
set /a munite_1=%munite_1%+1
echo 启动时间 %hour_1%:%munite_1%
at %hour_1%:%munite_1% /interactive %systemroot%\explorer.exe
pause
taskkill /f /im explorer.exe
set time1=%time:~0,-3%
echo 现在时间是 %time1%
for /f "tokens=1,2,3 delims=:" %%i in ("%time1%") do (
set /a hour_1=%%i
set /a munite_1=%%j
)
set /a munite_1=%munite_1%+1
echo 启动时间 %hour_1%:%munite_1%
at %hour_1%:%munite_1% /interactive %systemroot%\explorer.exe
pause
发表评论 - 不要忘了输入验证码哦! |