Chạy lệnh CMD trong điều khiển ứng dụng PC
Điều khiển ứng dụng PC với C#

Danh sách bài học
Chạy lệnh CMD trong điều khiển ứng dụng PC
Dẫn nhập
Chào các bạn! Trong các khóa học trước của chuỗi khóa học Auto C# chúng ta đã cùng tìm hiểu về SELENIUM và HTTP REQUEST trong C#.
Ở khóa học này, bạn sẽ được tìm hiểu thêm một phần khá thú vị, đó là LẬP TRÌNH ĐIỀU KHIỂN ỨNG DỤNG PC VỚI C#. Mục đích hướng tới là các bạn có thể làm auto bằng C# mà không cần dùng tới các ngôn ngữ như AutoIT, C++,…
Chúng ta đã biết cách MỞ ỨNG DỤNG , tiếp theo chúng ta sẽ cùng tìm hiểu về cách Chạy lệnh CMD trong điều khiển ứng dụng PC
Nội dung
Nội dung bao gồm Source code & các lưu ý chính về quá trình thực hiện phần mềm. Kteam khuyến khích bạn cập nhập thêm nhiều kinh nghiệm cũng như hiểu chi tiết hơn về các kỹ thuật được đề cập trong bài học thông qua các video đính kèm.
Đừng quên Like Facebook hoặc +1 Google để ủng hộ Kteam và tác giả.
Để có đủ khả năng học hiểu các nội dung được đề cập đến trong khóa học. Bạn nên có tối thiểu kiến thức về các phần:
Ngoài ra, cũng nên trau dồi thêm kiến thức khác qua các project thực tế như:
- LẬP TRÌNH TỪ ĐIỂN NÓI VỚI C# WINFORM
- LẬP TRÌNH GAME CARO VỚI C# WINFORM
- LẬP TRÌNH ỨNG DỤNG LẬP LỊCH VỚI C# WINFORM
Phần mềm sử dụng
Để việc thao tác theo hướng dẫn được tốt nhất bạn nên cài đặt phần mềm
Project tham khảo
Form1.cs
using KAutoHelper;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Diagnostics;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace AutoControlAppPC
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
Process.Start("notepad");
}
private void button2_Click(object sender, EventArgs e)
{
//Process.Start(AppDomain.CurrentDomain.BaseDirectory + "How Kteam - Free Education.html");
Process.Start("How Kteam - Free Education.html");
}
private void button3_Click(object sender, EventArgs e)
{
string strCmdText;
strCmdText = "/C ping -t howkteam.com";
Process.Start("CMD.exe", strCmdText);
}
private void button4_Click(object sender, EventArgs e)
{
string strCmdText;
strCmdText = @"/C ""How Kteam - Free Education.html""";
Process p = new Process();
p.StartInfo.FileName = "CMD.exe";
p.StartInfo.Arguments = strCmdText;
p.StartInfo.WindowStyle = ProcessWindowStyle.Hidden;
p.Start();
//p.Kill();
/*
System.Diagnostics.Process process = new System.Diagnostics.Process();
System.Diagnostics.ProcessStartInfo startInfo = new System.Diagnostics.ProcessStartInfo();
startInfo.WindowStyle = System.Diagnostics.ProcessWindowStyle.Hidden;
startInfo.FileName = "cmd.exe";
startInfo.Arguments = @"/C ""How Kteam - Free Education.html""";
process.StartInfo = startInfo;
process.Start();
*/
}
private void button5_Click(object sender, EventArgs e)
{
string cmdCommand = "ping howkteam.com";
Process cmd = new Process();
ProcessStartInfo startInfo = new ProcessStartInfo();
startInfo.FileName = "cmd.exe";
startInfo.CreateNoWindow = true;
startInfo.UseShellExecute = false;
startInfo.RedirectStandardInput = true;
startInfo.RedirectStandardOutput = true;
cmd.StartInfo = startInfo;
cmd.Start();
cmd.StandardInput.WriteLine(cmdCommand);
cmd.StandardInput.Flush();
cmd.StandardInput.Close();
cmd.WaitForExit();
string result = cmd.StandardOutput.ReadToEnd();
MessageBox.Show(result);
}
}
}
Form1.Designer.cs
namespace AutoControlAppPC
{
partial class Form1
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.button1 = new System.Windows.Forms.Button();
this.button2 = new System.Windows.Forms.Button();
this.button3 = new System.Windows.Forms.Button();
this.button4 = new System.Windows.Forms.Button();
this.button5 = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// button1
//
this.button1.Location = new System.Drawing.Point(12, 12);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(75, 23);
this.button1.TabIndex = 0;
this.button1.Text = "Mở notepad";
this.button1.UseVisualStyleBackColor = true;
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// button2
//
this.button2.Location = new System.Drawing.Point(93, 12);
this.button2.Name = "button2";
this.button2.Size = new System.Drawing.Size(112, 23);
this.button2.TabIndex = 1;
this.button2.Text = "Mở file/Ứng dụng";
this.button2.UseVisualStyleBackColor = true;
this.button2.Click += new System.EventHandler(this.button2_Click);
//
// button3
//
this.button3.Location = new System.Drawing.Point(12, 41);
this.button3.Name = "button3";
this.button3.Size = new System.Drawing.Size(122, 23);
this.button3.TabIndex = 2;
this.button3.Text = "Chạy lệnh CMD";
this.button3.UseVisualStyleBackColor = true;
this.button3.Click += new System.EventHandler(this.button3_Click);
//
// button4
//
this.button4.Location = new System.Drawing.Point(140, 41);
this.button4.Name = "button4";
this.button4.Size = new System.Drawing.Size(122, 23);
this.button4.TabIndex = 3;
this.button4.Text = "Chạy lệnh CMD ngầm";
this.button4.UseVisualStyleBackColor = true;
this.button4.Click += new System.EventHandler(this.button4_Click);
//
// button5
//
this.button5.Location = new System.Drawing.Point(268, 41);
this.button5.Name = "button5";
this.button5.Size = new System.Drawing.Size(203, 23);
this.button5.TabIndex = 4;
this.button5.Text = "Chạy lệnh CMD ngầm và lấy kết quả";
this.button5.UseVisualStyleBackColor = true;
this.button5.Click += new System.EventHandler(this.button5_Click);
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(485, 86);
this.Controls.Add(this.button5);
this.Controls.Add(this.button4);
this.Controls.Add(this.button3);
this.Controls.Add(this.button2);
this.Controls.Add(this.button1);
this.Name = "Form1";
this.Text = "Form1";
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Button button1;
private System.Windows.Forms.Button button2;
private System.Windows.Forms.Button button3;
private System.Windows.Forms.Button button4;
private System.Windows.Forms.Button button5;
}
}
Project tải xuống
Nếu việc thực hành theo hướng dẫn không diễn ra suôn sẻ như mong muốn. Bạn cũng có thể tải xuống PROJECT THAM KHẢO ở link bên dưới!
Phần mềm & Thư viện khác
Kết
Trong bài này, chúng ta đã tìm hiểu cách mở ứng dụng trong điều khiển ứng dụng PC.
Ở bài sau, Kteam sẽ giới thiệu đến bạn cách CLICK VÀO TỌA ĐỘ TRONG ĐIỀU KHIỂN ỨNG DỤNG PC
Cảm ơn các bạn đã theo dõi bài viết. Hãy để lại bình luận hoặc góp ý của mình để phát triển bài viết tốt hơn. Và đừng quên “Luyện tập – Thử Thách – Không ngại khó”
Tải xuống
Tài liệu
Nhằm phục vụ mục đích học tập Offline của cộng đồng, Kteam hỗ trợ tính năng lưu trữ nội dung bài học Chạy lệnh CMD trong điều khiển ứng dụng PC dưới dạng file PDF trong link bên dưới.
Ngoài ra, bạn cũng có thể tìm thấy các tài liệu được đóng góp từ cộng đồng ở mục TÀI LIỆU trên thư viện Howkteam.com
Đừng quên like và share để ủng hộ Kteam và tác giả nhé!

Thảo luận
Nếu bạn có bất kỳ khó khăn hay thắc mắc gì về khóa học, đừng ngần ngại đặt câu hỏi trong phần bên dưới hoặc trong mục HỎI & ĐÁP trên thư viện Howkteam.com để nhận được sự hỗ trợ từ cộng đồng.
Nội dung bài viết
Tác giả/Dịch giả
Khóa học
Chào các bạn! Trong các khóa học trước của chuỗi khóa học Auto C# chúng ta đã cùng tìm hiểu về SELENIUM TRONG C# và HTTP REQUEST VỚI C#.
Ở khóa học này, bạn sẽ được tìm hiểu thêm một phần khá thú vị, đó là LẬP TRÌNH ĐIỀU KHIỂN ỨNG DỤNG PC VỚI C#. Mục đích hướng tới là các bạn có thể làm auto bằng C# mà không cần dùng tới các ngôn ngữ như AutoIT, C++,…
Hi team
Cho mình hỏi làm cách nào để khi kết quả về sẽ record vào file .txt nhỉ , cám ơn team nhiều.
Chào ad, nhờ ad hướng dẫn là nếu ứng dụng bài này với cmd quyền admin thì sao? Mình có làm theo hướng dẫn ok nhưng chạy chế độ cmd admin lại không được.. Rất mong ad phản hồi
Thanks!
Hi a Long cho e hỏi đoạn đầu tiên truyền pra cho CDM e truyền "/C ipconfig" thì bật lên cái nó tắt luôn là sao nhỉ @@
Chào a Long, cho e hỏi là button 4 khi lệnh cmd được chạy ngầm, và lúc thực hiện xong kết quả xuất messengbox ra màng hình thì đồng thời cmd cũng tự động tắt luôn đúng ko ạ ?
(hay nó vẫn còn chạy ngầm ?, nếu còn thì có thể cho e biết làm sao để tắt nó ?)
Hi anh, anh cho em nếu trong lệnh Ping -t thì làm sao để stream thông tin hiện trên "cmd" ra 1 textbox ạ .! Em cảm ơn anh