通過批處理啟動和關閉應用程式

2022-02-18 19:33:49 字數 538 閱讀 2732

每天早晨到公司,必須簽到,但是電腦啟動的速度總是感覺慢,已經是最優化了.把所有的應用程式的啟動都停止了.每次等系統啟動完,簽到後,再乙個乙個啟動應用程式,於是就寫了個批處理檔案,一次性啟動多個應用程式:

start "" "c:\program files\lingoes\translator2\lingoes.exe" start "" "c:\program files\microsoft office communicator\communicator.exe"

start "" "c:\program files\microsoft office\office12\outlook.exe" start d:\mylucy\apache2\apache2.2\bin\apachemonitor.exe

以上內容儲存成乙個.bat的檔案.

下面的內容是對應的關閉應用程式, 也儲存成乙個.bat檔案即可:

taskkill /f /im lingoes.exe /im communicator.exe /im outlook.exe /im apachemonitor.exe

批處理 關閉占用埠的應用程式

如下 echo off set port 8081 for f tokens 1 5 i in netstat ano findstr port do taskkill f pid m 命令解讀 port 引用變數port的值 這裡我們設定的是8081埠,所以他會查詢所有8081埠的程序。token...

批處理啟動和關閉服務

開啟服務 net start ufad ws60 net start vmauthdservice net start vmnetdhcp net start vmware nat service net start vmusbarbservice exit 關閉服務 把上面的start換成stop...

使用Delphi啟動和關閉外部應用程式

delphi與windows 平台緊密結合,編譯 快速高效。作為一種視覺化的物件導向開發工具,delphi可以幫助程式設計師更輕鬆 更快速地編寫各種windows應用程式。而且通過程式設計可以方便地呼叫其它語言編寫的動態庫或應用程式,並在不需要時關閉這些外部程式。這一點對許多程式設計人員非常有用,例...