Bật Máy tính Từ xa bằng Command Prompt hoặc PowerShell
Nếu bạn muốn sử dụng tính năng Máy tính Từ xa(Remote Desktop) mà không cần mở bảng Cài đặt Windows(Windows Settings) , thì bạn có thể bật Máy tính Từ xa(Remote Desktop) bằng Command Prompt hoặc Windows PowerShell . Nếu bạn có một ứng dụng khách để bàn từ xa trên điện thoại di động hoặc một máy tính khác, bạn sẽ có thể kết nối nó và sử dụng PC từ xa.
Remote Desktop là một tiện ích nổi tiếng dành cho máy tính Windows 11/10 cho phép bạn kết nối hai máy tính hoặc thiết bị di động để một cá nhân có thể truy cập máy tính khác từ xa. Bạn có thể khắc phục một số sự cố trên máy tính thông qua di động hoặc làm các công việc khác tùy theo yêu cầu của bạn. Bạn cần một ứng dụng Máy tính Từ xa(Remote Desktop) như Microsoft Remote Desktop hoặc tương tự trên điện thoại di động của mình để kết nối hai thiết bị.
Có thể bật tắt Máy tính từ xa(enable to disable Remote Desktop) thông qua Cài đặt Windows(Windows Settings) . Bạn cần đi tới System > Remote Desktop để truy cập tùy chọn. Tuy nhiên, giả sử rằng bảng Cài đặt Windows không mở do một số lý do và bạn cần bật tính năng Máy tính Từ xa(turn on the Remote Desktop) . Sau đó, bạn có thể sử dụng phương pháp này để khởi động Máy tính Từ xa(Remote Desktop) bằng dòng lệnh.
Bật Máy tính Từ xa(Remote Desktop) bằng dòng lệnh(Command)
Để bật Máy tính Từ xa(Remote Desktop) bằng Command Prompt và Windows PowerShell , hãy làm theo các bước sau-
- Mở Command Prompt hoặc PowerShell với đặc quyền của quản trị viên
- Đặt(Set) giá trị của fDenyTSConnections REG DWORD thành 0
- Thêm quy tắc tường lửa
- Khởi động lại máy tính của bạn
- Bắt đầu(Start) sử dụng Máy tính Từ xa(Remote Desktop) trong Windows 10 .
Các lệnh không giống nhau đối với Command Prompt và Windows PowerShell .
1] Bật(Enable RDP) tường lửa RDP bằng Command Prompt
Để bắt đầu, hãy mở Command Prompt với đặc quyền của quản trị viên(open the Command Prompt with administrator privilege) . Bạn có thể tìm kiếm nó trong hộp tìm kiếm trên Thanh tác vụ(Taskbar) và nhấp vào tùy chọn Run as administrator xuất hiện trên màn hình của bạn. Sau đó, nhập lệnh sau và nhấn Enter :
reg add "HKLM\SYSTEM\CurrentControlSet\Control\Terminal Server" /v fDenyTSConnections /t REG_DWORD /d 0 /f
Theo mặc định, giá trị của fDenyTSConnections được đặt thành 1 . Lệnh này sẽ thay đổi giá trị thành 0 .
Tiếp theo, thực hiện lệnh sau:
netsh advfirewall firewall set rule group="remote desktop" new enable=yes
Lệnh này sẽ thêm và cập nhật ba quy tắc trong Tường lửa(Firewall) để bạn có thể bắt đầu sử dụng Máy tính Từ xa(Remote Desktop) .
2] Bật RDP(Enable RDP) bằng Windows PowerShell
Bạn cần mở Windows PowerShell với đặc quyền quản trị viên(open the Windows PowerShell with administrator privilege) và nhập lệnh sau và nhấn Enter :
Set-ItemProperty -Path 'HKLM:\System\CurrentControlSet\Control\Terminal Server'-name "fDenyTSConnections" -Value 0
Lệnh này sẽ thay đổi giá trị fDenyTSConnections thành 0 . Bây giờ, bạn cần thực hiện lệnh sau để thêm các quy tắc trong Tường lửa:
Enable-NetFirewallRule -DisplayGroup "Remote Desktop"
Sau đó, bạn sẽ có thể sử dụng Remote Desktop trong Windows 10 .
Trong trường hợp bạn muốn tắt Remote Desktop bằng Command Prompt và Windows PowerShell , bạn cần nhập các bước sau.
Liên quan(Related) : Tùy chọn Máy tính Từ xa chuyển sang màu xám(Remote Desktop option is greyed out) .
Tắt Máy tính Từ xa(Remote Desktop) bằng Command Prompt hoặc PowerShell
Để tắt Máy tính Từ xa(Remote Desktop) bằng Command Prompt và Windows PowerShell , hãy làm theo các bước sau-
- Mở Command Prompt hoặc PowerShell với đặc quyền của quản trị viên
- Đặt(Set) giá trị của fDenyTSConnections REG DWORD là 1
- Thêm quy tắc tường lửa
- Khởi động lại máy tính.
Để biết thêm, bạn cần đọc tiếp.
Tắt màn hình từ xa(Remote Desktop) bằng Command Prompt
Bạn cần đặt giá trị mặc định của fDenyTSConnections là 1 . Để làm được điều đó, hãy sử dụng lệnh này-
reg add "HKLM\SYSTEM\CurrentControlSet\Control\Terminal Server" /v fDenyTSConnections /t REG_DWORD /d 1 /f
Bây giờ bạn cần xóa các quy tắc khỏi Tường lửa(Firewall) . Để làm được điều đó, hãy sử dụng lệnh này-
netsh advfirewall firewall set rule group="remote desktop" new enable=No
Tắt Máy tính Từ xa(Remote Desktop) bằng PowerShell
Bạn cần thay đổi giá trị của fDenyTSConnections thành 1 . Bạn có thể làm điều đó bằng cách sử dụng lệnh này-
Set-ItemProperty -Path 'HKLM:\System\CurrentControlSet\Control\Terminal Server'-name "fDenyTSConnections" -Value 1
Lệnh thứ hai sẽ cho phép bạn xóa các quy tắc khỏi Tường lửa:
Disable-NetFirewallRule -DisplayGroup "Remote Desktop"
Đó là tất cả! Tôi hy vọng hướng dẫn đơn giản này sẽ hữu ích cho bạn.
Related posts
Command Line Parameters cho Remote Desktop Connections
Check Windows 10 OS architecture Sử dụng PowerShell or Command Prompt
Create System Restore Point Sử dụng Command Prompt or PowerShell
Cách chạy ALWAYS chạy Command Prompt and PowerShell là Administrator
Làm thế nào để chạy Command Prompt lệnh với một Desktop Shortcut
Để đăng nhập từ xa, bạn cần đăng nhập thông qua Remote Desktop Services
Làm thế nào để Thiết lập lại PowerShell and Command Prompt cài đặt mặc định
4 cách tạo tệp giả ngẫu nhiên với kích thước cụ thể trong Windows
Windows Terminal là gì?
Ammyy Admin: Secure Zero-Config Remote Desktop Software di động
Create Remote Desktop Connection shortcut trong Windows 11/10
Remote Desktop Services Nguyên nhân High CPU trong Windows 10
Cách tạo nhiều thư mục cùng một lúc
Remove History mục từ Remote Desktop Connection trong Windows 11/10
Tăng số lượng Remote Desktop Connections trong Windows 11/10
Windows Key bị kẹt sau khi chuyển từ Remote Desktop session
Cách làm cho PowerShell và Command Prompt trong suốt
PowerShell vs Command Prompt: Ưu và nhược điểm
Làm cách nào để xem tất cả người dùng trên Windows computer? (5 cách)
Fix Remote Desktop không thể tìm thấy computer error trong Windows 11/10