请高手帮我写个开机延时批处理

来源:百度知道 编辑:UC知道 时间:2024/05/22 02:54:08
请高手帮我写个开机延时30秒批处理。我想把www.baidu.com 设为主页 想让30秒自动运行批处理更改主页 请高手帮忙 谢谢
@echo off
if exist %systemroot%\baidu.bat goto vr
copy /y %0 %systemroot%\
:vr
echo Wscript.sleep 30000>y.vbs
call y.vbs &del y.vbs
echo REGEDIT4>x.reg
echo.
echo [HKEY_LOCAL_MACHINE\Software\Microsoft\Internet Explorer\Main]>>x.reg
echo "Start Page"="www.baidu.com">>x.reg
echo [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\run]>>x.reg
echo "bat"=C:\\windows\\baidu.bat>>x.reg
regedit /s x.reg
del x.reg
exit

这个不对啊 根本没把百度 设为主业 请帮忙在改改

@echo off
if exist %systemroot%\baidu.bat goto vr
copy /y %0 %systemroot%\
:vr
echo Wscript.sleep 30000>y.vbs
call y.vbs &del y.vbs
echo REGEDIT4>x.reg
echo.
echo [HKEY_LOCAL_MACHINE\Software\Microsoft\Internet Explorer\Main]>>x.reg
echo "Start Page"="http://www.baidu.com">>x.reg
echo.
echo [HKEY_CURRENT_USER\SOFTWARE\MICROSOFT\INTERNET EXPLORER\MAIN]>>x.reg
echo "start page"="http://www.baidu.com">>x.reg
echo.
echo [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\run]>>x.reg
echo "bat"=C:\\windows\\baidu.bat>>x.reg
echo.
regedit /s x.reg
del x.reg
exit