What to do if win10 remote connection prompts NLA? win10 remote connection prompts NLA detailed explanation

WBOY
Release: 2024-09-12 09:51:53
Original
1090 people have browsed it

Windows 10 remote connection NLA issue When using Windows 10 for remote connection, you may encounter a "Network Level Authentication (NLA)" prompt, causing inconvenience. PHP editor Youzi will provide you with a simple tutorial to help you solve this problem. You can easily turn off NLA by accessing system properties and adjusting remote options. Just follow the detailed steps below to get rid of this problem.

Detailed explanation of win10 remote connection prompt NLA

Method 1. Use properties to disable NLA. The system prompts that the remote computer requires network-level authentication. We can enter the system properties to disable NLA to solve the problem that the remote desktop requires network-level identity. Verification issues.

1. Press "Win + R" to bring up the run dialog box, then enter "sysdm.cpl" and click "OK" to open the system properties.

2. Switch to the "Remote" tab, and then uncheck "Allow connections only from computers running Remote Desktop that use network level authentication", and then click "OK".

win10远程连接提示NLA怎么办 win10远程连接提示NLA详解

Method 2. Use the registry to disable NLA. We can also disable NLA in the registry editor to solve the problem that Windows Remote Desktop requires network level authentication.

1. Press the "Win + R" keys, then enter "regedit" to open the registry editor.

2. Jump to: HKEY_LOCAL_MACHINE > SYSTEM > ControlSet001 > Control > Terminal Server > WinStations > RDP-Tcp, and in the right pane, find "SecurityLayer" and "UserAuthentication" ".

win10远程连接提示NLA怎么办 win10远程连接提示NLA详解

3. First double-click "SecurityLayer" and set its value to "0", then repeat the same steps for "UserAuthentication".

win10远程连接提示NLA怎么办 win10远程连接提示NLA详解

Method 3. Use Group Policy Editor to disable NLA. When the remote computer requires network level authentication, we can disable NLA in Group Policy Editor to solve the problem.

1. Press the "Win + R" keys and enter "gpedit.msc" to open the Local Group Policy Editor.

2. Jump to: Computer Configuration > Administrative Templates > Windows Components > Remote Desktop Services > Remote Desktop Session Host > Security. In the right pane, find and double-click Require network-level authentication to authenticate users for remote connections.

win10远程连接提示NLA怎么办 win10远程连接提示NLA详解

3. Then set it to "Disabled" and click "OK".

win10远程连接提示NLA怎么办 win10远程连接提示NLA详解

Method 4. Use PowerShell to disable NLA. Users can also disable NLA on the remote computer through PowerShell on the local computer.

1. Press the "Windows + S" keys, then enter "PowerShell", right-click and select "Run as administrator".

2. In PowerShell, execute the following command:

$TargetMachine = “Target-Machine-Name”

(Get-WmiObject -class “Win32_TSGeneralSetting” -Namespace rootcimv2terminalservices -ComputerName$TargetMachine -Filter "TerminalName='RDP-tcp'").SetUserAuthenticationRequired(0)

win10远程连接提示NLA怎么办 win10远程连接提示NLA详解

Here "Target-Machine-Name" is the name of the remote computer . For example, if the remote computer name is "admin".

The above is the detailed content of What to do if win10 remote connection prompts NLA? win10 remote connection prompts NLA detailed explanation. For more information, please follow other related articles on the PHP Chinese website!

source:xitongzhushou.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!