1. Lấy tất cả các tiến trình đang chạy
Process[] AllPro = Process.GetProcesses();
2. Lấy tiến trình thông qua số hiệu của tiến trình đó
Process Pro = Process.GetProcessById(nID);
3. Đóng tiến trình
Process ProKill = Process.GetProcessById(nID);
ProKill.Kill();
4. Thực thi một tiến trình
Process ProStart = new Process();
ProStart.StartInfo.FileName = @"c:\WINDOWS\Notepad.exe";
ProStart.Start();
Không có nhận xét nào:
Đăng nhận xét