Skip to content
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

Open
MrMasterbay opened this issue Jul 9, 2024 · 3 comments
Open

Installing Windows without KVM #868

MrMasterbay opened this issue Jul 9, 2024 · 3 comments
Labels
Existing tutorial Changes on an existing tutorial

Comments

@MrMasterbay
Copy link

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" }

@svenja11 svenja11 added the Existing tutorial Changes on an existing tutorial label Jul 10, 2024
@svenja11
Copy link
Collaborator

@BackInBash Same tutorial. Could you please take a look at this issue too?

@BackInBash
Copy link
Contributor

@MrMasterbay What steps do you need to take to allow access via RDP?
As in the past (wk19) it was enough to enable RDP access to trigger activation of the firewall rule.

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.
So it only include the minimal functionality the reduce the pain writing it :)

@MrMasterbay
Copy link
Author

MrMasterbay commented Jul 10, 2024

@BackInBash Heyha!
Hab gerade gesehen das du Deutsch kannst weswegen ich mal ganz frech auf Deutsch antworte ^-^.

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.
Also entweder so hier:
image
image

Oder man geht direkt in die Windows FW Settings und schaltet diese frei.
image
Bin da schon ein paar mal eingefahren dürften die mit einem Culumative Update scheinbar unbeabsichtigt geändert haben.

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 .
LG Nico

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Existing tutorial Changes on an existing tutorial
Projects
None yet
Development

No branches or pull requests

3 participants