-
Notifications
You must be signed in to change notification settings - Fork 374
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Installing Windows without KVM #868
Comments
@BackInBash Same tutorial. Could you please take a look at this issue too? |
@MrMasterbay What steps do you need to take to allow access via RDP? The DNS settings are on purpose not included in the script because you need to manually write it via VNC there is no copy paste function. |
@BackInBash Heyha! Naja tatsächlich reicht es nicht mehr so ganz aus nur RDP zu aktivieren. Man muss auch die jeweiligen "Ports" im Windows Defender Firewall dafür freischalten also. Oder man geht direkt in die Windows FW Settings und schaltet diese frei. Die DNS Sektion hab ich dazu geschmießen wegen den Updates. Da Windows irgendwie generell a bissie Buggy ist hat er mich gestern z.B. wie ich die DNS Einstellungen übern Netzwerkadapter geändert hab einfach rausgeschmießen und sich dann auf "Stummgestellt". Deswegen bevorzuge ich hier tatsächlich einfach die "Full Variante". Ich hab zb. mit VNC dann Anydesk runtergeladen und mich dann so darauf verbunden. Geht natürlich aber auch mit Anydesk / Rustdesk / Action1 / Goto and go on :D . Hoffe mein Feedback hört sich halbwegs konstruktiv an :D . |
Problem
Windows Defender Firewall kicks you out of rdp as soon you activate it.
DNS Settings can be also configured in the Network Powershell script
Suggested Fix
Add that you need to allow the ports in Windows Defender Firewall otherwise you will not be able to connect to the server.
Use the following code to prevent system lockouts:
foreach($Adapter in Get-NetAdapter) { New-NetIPAddress –IPAddress [IP] -DefaultGateway [GATEWAY] -PrefixLength [CIDR] -InterfaceIndex $Adapter.InterfaceIndex Set-DnsClientServerAddress -InterfaceIndex $Adapter.InterfaceIndex -ServerAddresses "8.8.8.8", "1.1.1.1" }
The text was updated successfully, but these errors were encountered: