- [SQLSERVER] Loại bỏ Restricted User trên database MSSQL
- [C#] Hướng dẫn tạo mã QRcode Style trên winform
- [C#] Hướng dẫn sử dụng temp mail service api trên winform
- [C#] Hướng dẫn tạo mã thanh toán VietQR Pay không sử dụng API trên winform
- [C#] Hướng Dẫn Tạo Windows Service Đơn Giản Bằng Topshelf
- [C#] Chia sẻ source code đọc dữ liệu từ Google Sheet trên winform
- [C#] Chia sẻ source code tạo mã QR MOMO đa năng Winform
- [C#] Chia sẻ source code phần mềm lên lịch tự động chạy ứng dụng Scheduler Task Winform
- [Phần mềm] Tải và cài đặt phần mềm Sublime Text 4180 full version
- [C#] Hướng dẫn download file từ Minio Server Winform
- [C#] Hướng dẫn đăng nhập zalo login sử dụng API v4 trên winform
- [SOFTWARE] Phần mềm gởi tin nhắn Zalo Marketing Pro giá rẻ mềm nhất thị trường
- [C#] Việt hóa Text Button trên MessageBox Dialog Winform
- [DEVEXPRESS] Chia sẻ code các tạo report in nhiều hóa đơn trên XtraReport C#
- [POWER AUTOMATE] Hướng dẫn gởi tin nhắn zalo từ file Excel - No code
- [C#] Chia sẻ code lock và unlock user trong domain Window
- [DEVEXPRESS] Vẽ Biểu Đồ Stock Chứng Khoán - Công Cụ Thiết Yếu Cho Nhà Đầu Tư trên Winform
- [C#] Hướng dẫn bảo mật ứng dụng 2FA (Multi-factor Authentication) trên Winform
- [C#] Hướng dẫn convert HTML code sang PDF File trên NetCore 7 Winform
- [C#] Hướng dẫn viết ứng dụng chat với Gemini AI Google Winform
[C#] Hướng dẫn mở nhiều ứng dụng zalo trên Desktop
Xin chào các bạn, bài viết hôm nay mình sẽ hướng dẫn các bạn cách mở nhiều ứng dụng Zalo trên Winform C#.
[C#] How to Run App with profile another User Account Windows
Mặc định, trên Window, Zalo chỉ cho phép chúng ta đăng nhập một tài khoản vào một cửa sổ.
Nếu bạn có nhiều tài khoản Zalo và muốn chạy nhiều tài khoản cùng một lúc thì các bạn thực hiện như sau:
Do Zalo mỗi lẫn chạy nó đi với một tài khoản Windows Account.
Nên ở đây, các bạn muốn mở 2 cửa sổ zalo chẳng hạn thì bạn cần thêm 1 tài khoản User Windows.
Và ở Hàm Process.start trên Windows, chúng ta sẽ truyền thêm thông tin login của tài khoản mới để mở thêm được nhiều cửa sổ.
Giao diện demo của mình:
Password mật khẩu tài khoản Windows các bạn truyền vào theo kiểu SecureString
:
Full source code MutiInstance Zalo C#:
private void btnOpenZalo_Click(object sender, EventArgs e)
{
SecureString strPassword = new SecureString();
// Điền password: LapTrinhvb.net, các bạn Append vào theo từng ký tự
strPassword.AppendChar('L');
strPassword.AppendChar('a');
strPassword.AppendChar('p');
strPassword.AppendChar('T');
strPassword.AppendChar('r');
strPassword.AppendChar('i');
strPassword.AppendChar('n');
strPassword.AppendChar('h');
strPassword.AppendChar('v');
strPassword.AppendChar('b');
strPassword.AppendChar('.');
strPassword.AppendChar('n');
strPassword.AppendChar('e');
strPassword.AppendChar('t');
Process objProcess = new Process();
objProcess.StartInfo.LoadUserProfile = true;
objProcess.StartInfo.UseShellExecute = false;
objProcess.StartInfo.CreateNoWindow = false;
objProcess.StartInfo.FileName = "C:\\Users\\laptrinhvb\\AppData\\Local\\Programs\\Zalo\\zalo.exe";
objProcess.StartInfo.Domain = "GROUPNAME"; // tên group name
objProcess.StartInfo.UserName = "new_user"; // tên tài khoản windows
objProcess.StartInfo.Password = strPassword;
objProcess.Start();
}
Hoặc để Map mật khẩu nhanh bạn cũng có thể sử dụng Array.Foreach()
đoạn code sau:
var strPassword = "LapTrinhvb.net";
SecureString securePassword = new SecureString();
Array.ForEach(strPassword.ToArray(), securePassword.AppendChar);
securePassword.MakeReadOnly();
Thanks for watching!