- [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#] Chia sẻ code lock và unlock user trong domain Window
Xin chào các bạn, bài viết hôm nay mình tiếp tục chia sẻ các bạn source code cách khóa và mở khóa (lock and unlock) tài khoản người dùng user trong domain Windows bằng C#.
[C#] How to Lock and Unlock User in Domain Windows.
Để khóa và mở khóa được tài khoản user trong domain.
Các bạn cần phải có tài khoản của Admin Domain, thì các bạn mới có thể khóa và mở khóa cho user được.
Ở bài này, mình chia sẻ function, các bạn có thể copy và sử dụng nó.
Source code C#:
Ở hàm dưới này, các bạn cần truyền vào 4 tham số để hoạt động:
- username: là tài khoản user cần thao tác khóa hoặc mở khóa
- domain: tên domain của bạn ex: laptrinhvb.net
- userAdmin: nhập tài khoản Admin Domain
- passAdmin: nhập mật khẩu Admin Domain
using System;
using System.DirectoryServices;
class Program
{
static void Main()
{
string username = "userToUnlockOrLock"; // Specify the username of the account you want to unlock or lock
string domain = "yourdomain.com"; // Specify your domain name
string userAdmin = "adminUsername"; // Specify the username of your administrator account
string passAdmin = "adminPassword"; // Specify the password of your administrator account
UnlockOrLockUserAccount(username, domain, userAdmin, passAdmin);
}
static void UnlockOrLockUserAccount(string username, string domain, string userAdmin, string passAdmin)
{
try
{
DirectoryEntry entry = new DirectoryEntry("LDAP://" + domain, userAdmin, passAdmin);
DirectorySearcher searcher = new DirectorySearcher(entry);
searcher.Filter = "(&(objectClass=user)(samAccountName=" + username + "))";
SearchResult result = searcher.FindOne();
if (result != null)
{
DirectoryEntry userEntry = result.GetDirectoryEntry();
int userFlags = (int)userEntry.Properties["userAccountControl"].Value;
bool isAccountLocked = (userFlags & 0x2) == 0x2; // Check if the "account is locked" bit is set
// Toggle the lock status
if (isAccountLocked)
{
// Account is currently locked, unlock it
int newFlags = userFlags & ~0x2; // Clear the "account is locked" bit
userEntry.Properties["userAccountControl"].Value = newFlags;
userEntry.CommitChanges();
Console.WriteLine("Account unlocked successfully.");
}
else
{
// Account is currently unlocked, lock it
int newFlags = userFlags | 0x2; // Set the "account is locked" bit
userEntry.Properties["userAccountControl"].Value = newFlags;
userEntry.CommitChanges();
Console.WriteLine("Account locked successfully.");
}
}
else
{
Console.WriteLine("User not found.");
}
}
catch (Exception ex)
{
Console.WriteLine("Error: " + ex.Message);
}
}
}
Thanks for watching!