當(dāng)我們要讓bat處理程序在后臺運(yùn)行而不顯示doc窗口時,可以避免程序被誤關(guān)閉等情況的發(fā)生。下面以一個簡單的例子說明如何實(shí)現(xiàn)
新建一個bat處理文件,命名為timer.bat ,代碼如下:
代碼如下:
@echo off
:a
rem 取得當(dāng)前時分值
set currenttime=%time:~0,2%%time:~3,2%
rem echo time:%currenttime%
rem 調(diào)用程序的腳本:j:\lanp\資治通鑒經(jīng)典故事 高清晰pdf.pdf | start /b
if %currenttime%==1856 (shutdown /s /t 60)
goto :a
pause
新建一個vds文件,命名為autorun.vbs,代碼如下:
代碼如下:
set ws=wscript.createobject(wscript.shell)
ws.run j:\lanp\autorun\timer.bat /start,0
雙擊運(yùn)行autorun.vbs,即可實(shí)現(xiàn)將timer.bat 在后臺執(zhí)行了。