Process.Start.txt 20201104 ---------- 20201104 The following example uses the Process class itself and a static Start method to start a process. using System; using System.Diagnostics; using System.ComponentModel; namespace MyProcessSample { class MyProcess { // Opens the Internet Explorer application. void OpenApplication(string myFavoritesPath) { // Start Internet Explorer. Defaults to the home page. Process.Start("IExplore.exe"); // Display the contents of the favorites folder in the browser. Process.Start(myFavoritesPath); } // Opens urls and .html documents using Internet Explorer. void OpenWithArguments() { // url's are not considered documents. They can only be opened // by passing them as arguments. Process.Start("IExplore.exe", "www.northwindtraders.com"); // Start a Web page using a browser associated with .html and .asp files. Process.Start("IExplore.exe", "C:\\myPath\\myFile.htm"); Process.Start("IExplore.exe", "C:\\myPath\\myFile.asp"); } // Uses the ProcessStartInfo class to start new processes, // both in a minimized mode. void OpenWithStartInfo() { ProcessStartInfo startInfo = new ProcessStartInfo("IExplore.exe"); startInfo.WindowStyle = ProcessWindowStyle.Minimized; Process.Start(startInfo); startInfo.Arguments = "www.northwindtraders.com"; Process.Start(startInfo); // 查詢經緯度座標並標記位置: // https://www.google.com/maps/search/?api=1&map_action=map&zoom=16&query=25.047817,121.516959 // 啟動 google 搜尋 //Process.Start(new ProcessStartInfo("explorer.exe", "\"" + @"http://www.google.com/search?q=stackoverflow" + "\"")); // 啟動 google 地圖 //Process.Start(new ProcessStartInfo("explorer.exe", "\"" + @"https://www.google.com/maps/search/?api=1&map_action=map&zoom=16&query=25.047817,121.516959" + "\"")); } static void Main() { // Get the path that stores favorite links. string myFavoritesPath = Environment.GetFolderPath(Environment.SpecialFolder.Favorites); MyProcess myProcess = new MyProcess(); myProcess.OpenApplication(myFavoritesPath); myProcess.OpenWithArguments(); myProcess.OpenWithStartInfo(); } } } ---------- The following example uses an instance of the Process class to start a process. using System; using System.Diagnostics; using System.ComponentModel; namespace MyProcessSample { class MyProcess { public static void Main() { Process myProcess = new Process(); try { myProcess.StartInfo.UseShellExecute = false; // You can start any process, HelloWorld is a do-nothing example. myProcess.StartInfo.FileName = "C:\\HelloWorld.exe"; myProcess.StartInfo.CreateNoWindow = true; myProcess.Start(); // This code assumes the process you are starting will terminate itself. // Given that is is started without a window so you cannot terminate it // on the desktop, it must terminate itself or you can do it programmatically // from this application using the Kill method. } catch (Exception e) { Console.WriteLine(e.Message); } } } } ---------- 20190222 Process.PrivateMemorySize64 Property Gets the amount of private memory, in bytes, allocated for the associated process. using System; using System.Diagnostics; namespace ProcessSample { class ProcessMonitorSample { public static void Main() { // Define variables to track the peak // memory usage of the process. long peakPagedMem = 0, peakWorkingSet = 0, peakVirtualMem = 0; // Start the process. using (Process myProcess = Process.Start("NotePad.exe")) { // Display the process statistics until // the user closes the program. do { if (!myProcess.HasExited) { // Refresh the current process property values. myProcess.Refresh(); Console.WriteLine(); // Display current process statistics. Console.WriteLine($"{myProcess} -"); Console.WriteLine("-------------------------------------"); Console.WriteLine($" Physical memory usage : {myProcess.WorkingSet64}"); Console.WriteLine($" Base priority : {myProcess.BasePriority}"); Console.WriteLine($" Priority class : {myProcess.PriorityClass}"); Console.WriteLine($" User processor time : {myProcess.UserProcessorTime}"); Console.WriteLine($" Privileged processor time : {myProcess.PrivilegedProcessorTime}"); Console.WriteLine($" Total processor time : {myProcess.TotalProcessorTime}"); Console.WriteLine($" Paged system memory size : {myProcess.PagedSystemMemorySize64}"); Console.WriteLine($" Paged memory size : {myProcess.PagedMemorySize64}"); // Update the values for the overall peak memory statistics. peakPagedMem = myProcess.PeakPagedMemorySize64; peakVirtualMem = myProcess.PeakVirtualMemorySize64; peakWorkingSet = myProcess.PeakWorkingSet64; if (myProcess.Responding) { Console.WriteLine("Status = Running"); } else { Console.WriteLine("Status = Not Responding"); } } } while (!myProcess.WaitForExit(1000)); Console.WriteLine(); Console.WriteLine($" Process exit code : {myProcess.ExitCode}"); // Display peak memory statistics for the process. Console.WriteLine($" Peak physical memory usage : {peakWorkingSet}"); Console.WriteLine($" Peak paged memory usage : {peakPagedMem}"); Console.WriteLine($" Peak virtual memory usage : {peakVirtualMem}"); } } } } ---------- 下列範例會啟動 [記事本] 程式的執行個體。 接著,它會在最多 10 秒鐘的期間,以 2 秒鐘為間隔,擷取相關處理序所耗用的實體記憶體。 該範例會偵測該處理序是否會在 10 秒鐘之內結束。 如果超過 10 秒鐘之後仍在執行,該範例就會關閉該處理序。 using System; using System.Diagnostics; using System.Threading; namespace Process_Sample { class MyProcessClass { public static void Main() { try { Process myProcess; myProcess = Process.Start("Notepad.exe"); // Display physical memory usage 5 times at intervals of 2 seconds. for (int i = 0;i < 5; i++) { if (!myProcess.HasExited) { // Discard cached information about the process. myProcess.Refresh(); // Print working set to console. Console.WriteLine("Physical Memory Usage: " + myProcess.WorkingSet.ToString()); // Wait 2 seconds. Thread.Sleep(2000); } else { break; } } // Close process by sending a close message to its main window. myProcess.CloseMainWindow(); // Free resources associated with process. myProcess.Close(); } catch(Exception e) { Console.WriteLine("The following exception was raised: "); Console.WriteLine(e.Message); } } } }