winlin
Goto Top

Remotecomputer nicht mehr erreichbar NLA Problem

hallöchen,

habe ein Problem - auf einmal komme ich nicht mehr auf meine virtuelle Maschine (WinServer2012R264bit). wenn ich mich per RDP anmelden will erscheint der Fehler:

The remote computer that you are trying to connect to requires network layer authentification, but your windows domain controller cannot be contacted to perform NLA. if you are administrator on the remote computer, you can disable nla by using the options on the remote tab of the system properties dialog box.

Ich bin auf der remote maschine ja admin, aber ich kann mich nicht aufschalten um dieses NLA zu deaktivieren. Ich habe nur die möglichkeit per RDP. Gibt es eine andere Möglichkeit? Maschine ist auflösbar und erreichbar. Kann ich per powershell oder ANDERS nla DEAKTIVIERENß

Content-Key: 273608

Url: https://administrator.de/contentid/273608

Printed on: April 25, 2024 at 08:04 o'clock

Member: psannz
psannz Jun 02, 2015 at 20:40:27 (UTC)
Goto Top
Sers,

verbinde dich per Powershell mit der VM und starte den Dienst NLA neu. Das sollte - sofern ein sauberer DC aktiv ist - reichen. Lässt sich auch über die Konsole services.msc erreichen.

NLA steht dabei für Network Location Awareness.

Grüße,
Philip
Member: colinardo
colinardo Jun 02, 2015 updated at 23:01:50 (UTC)
Goto Top
Hallo zusammen,
mit Powershell schnell gemacht :

NLA remote deaktivieren:
(gwmi "Win32_TSGeneralSetting" -Namespace root\cimv2\terminalservices -ComputerName "NAMEDEINERVM" -Filter "TerminalName='RDP-tcp'").SetUserAuthenticationRequired(0)  
Zum aktivieren die 0 am Ende durch eine 1 ersetzen.

Computername natürlich anpassen.

Grüße Uwe