程序檢測批處理 20,程序檢測批處理

時間 2025-03-13 07:55:21

程序檢測批處理

1樓:網友

方法給你你都懶得試,非要直接餵飯到嘴裡!-_echo off

tasklist|findstr "xdict">rem "xdict" 相當於要找的a程序,找到就寫入到檔案中。

for /f "tokens=1-4 delims= "a in ('dir "個檔案""'do set /a size=%%c

if %size% gtr 0 (exit) else tasklist|findstr "outlook">

rem outlook"相當於b程序。

search

for /f "tokens=1-4 delims= "a in ('dir "個檔案""'do set /a size=%%c程式。

2樓:網友

echo off

tasklist|find "a程序" &goto 存在 ||goto 不存在。

starpause&exit

存在。echo 存在程序。

goto star

不存在。tasklist|find "b程序" |goto b程式。

b程式。echo 不存在執行b程式。

goto star

3樓:匿名使用者

myprettylife 的就可以了 簡單的兩句批處理 讓你們搞的寫那麼多行 服了。

用批處理定時檢查某程序是否存在

4樓:網友

檢查程序的批處理語句不難,但是你要讓某個批處理執行在後臺定時自動執行估計比較難,用計劃任務把。

批處理 檢測程序

5樓:網友

批處理 d:\ 內容如下。

新增計劃任務。

schtasks /create /sc minute /mo 15 /tn 「shutdown」 /tr d:\

怎樣在批處理中檢測特定程序執行操作?

6樓:網友

@echo off

1echo 有aaaaaaa在執行! :

這裡換成你要執行的操作:2echo 有bbbbbbb在執行! :

這裡換成你要執行的操作:3echo 有ccccccc在執行! :

這裡換成你要執行的操作:end

pause>nul

7樓:

tasklist| find /i 「 找到程序a的操作)||沒有找到程序a的操作)

tasklist| find /i 「 找到程序b的操作)||沒有找到程序b的操作)

8樓:網友

for /f %%a in ('tasklist^|find /i ""') do 命令。

for /f %%a in ('tasklist^|find /i ""') do 命令。

for /f %%a in ('tasklist^|find /i ""') do 命令。

看不明白不會用就hi我。

批處理檢驗程式是否在執行

9樓:依夢琴瑤

tasklist|find /i "程式名" &&echo 程式存在 ||echo 程式不存在。

pause

10樓:碎夢碎愛

tasklist|find /i "程式名" &&echo 程式執行了 ||echo 程式未執行。

關於檢測程序網路連線狀態的批處理

11樓:迷茫之雁

@echo off

set a=

set t=300

echo %a%監測中。檢測時間為%t%秒一次。

for /f "delims=" %%i in ('tasklist /fo csv^|findstr /i "%a%"') do (

查詢,找到就把它的pid值賦給變數pid,沒有找到關機。

goto shut

loop:進入查詢迴圈。

tasklist|findstr /i "%a%">nul&&goto findnet||goto shut

查詢,找到繼續檢查它的網路連線,沒有則關機。

findnet

for /f "skip=4 tokens=4,5 delims= " %%i in ('netstat -ano^|find "%pid%"') do (

echo %%i%%j|find "%pid%">nul&&goto delay

:根據pid值,查詢它的網路連線情況,有就延時,沒有則關機。

goto shut

delayping -n %t% >nul&goto loop

shutshutdown -s -t 120

12樓:網友

間隔時間,3分鐘的話也就是180秒。

批處理檢測指定程序

13樓:無

@echo off

ks::檢測是否存在。

tasklist |find "" >nul::如果不存在,就表示沒有找到程序 並執行d:\a文件\if %errorlevel%==1 start d:

a文件\::ping為延時作用,-n表示幾次,ping的時間比秒的時間快點,所以用6次代表5秒。

ping -n 6 >nul

5秒結束後,跳到開始,重新執行!

goto ks

pause

批處理start命令,start批處理命令輸入使用者名稱密碼

c documents and settings administrator start 啟動另一個視窗執行指定的程式或命令。start title dpath i min max separate shared low normal high realtime abovenormal belown...

高分求批處理程式。我想讓它讀入文字並當檢測到檔案末尾出現指定字元時結束程序

麥兜 exe 這是無視行數的 如果非要最後1行復制下面就行了,上面無視.if a x1 comsg get co msg device disconnect taskkill f im abc.exe 建議把x1 comsg get co msg device disconnect.作為檔案最後一行...

自動關機批處理檔案,求自動關機批處理

echo regedit4 reg.reg echo是輸出的意思,把regedit4寫入檔案reg.reg 是把輸出寫入檔案的意思,如果沒有 reg.reg 就是輸出到顯示屏 echo hkey local machine software microsoft windows currentvers...