using system;
using system.collections.generic;
using system.componentmodel;
using system.data;
using system.dxxuaprawing;
using system.text;
using system.windows.forms;
using system.io;
//引用命名空間
using system.diagnostics;
using system.threading;
namespace startstopprocess
private void buttonstart_click(object sender, eventargs e)
//設定要啟動的應用程式名稱及引數
processstartinfo ps = new processstartinfo(filename, argument);
ps.windowstyle = processwindowstyle.normal;
fileindex++;
process p = new process();
p.startinfo = ps;
p.start();
//等待啟動完成,否則獲取程序資訊可能會失敗
p.waitforinputidle();
refreshlistview();
}private void buttonstop_click(object sender, eventargs e)
fileindex = 0;
refreshlistview();
this.cursor = cursors.default;
}private void refreshlistview()
kb", p.privatememorysize64/1024.0f),
string.format("",p.starttime),
p.mainmodule.filename
});listview1.items.add(item);}}
private void buttonrefresh_click(object sender, eventargs e)
private void form1_load(程式設計客棧object sender, eventargs e)
}}本文標題: c#實現程序管理的啟動和停止例項
本文位址:
C 實現IIS的啟動 停止 重啟
using system.diagnostics using system.serviceprocess servicecontroller sc new servicecontroller iisadmin if sc.status servicecontrollerstatus.running ...
原創 mongod 程序的啟動 停止
前言 1 概要 mongod 程序的啟動與停止雖然比較簡單,但一些與常見服務啟停不同的地方,也有一些小坑。請參考下文 2 相關環境 ubuntu 18.04.5 mongodb 3.6.3正文 正文部分的操作示例均使用 mongodb 使用者。1 啟動程序 啟動 mongod 程序可以指定配置檔案位...
ORACLE的啟動和停止
一 啟動 1 資料庫啟動步驟 1 通過sysdba使用者身份登入 sqlplus as sysdba 2 執行啟動命令 startup 2 啟動的幾種狀態 1 nomount 只啟動資料庫例項 2 mount 啟動例項並載入資料檔案 3 open 啟動資料庫例項,載入資料檔案並開啟 預設是載入到op...