There's a known issue when attempting to configure a network adapter to set a static IP address through SConfig on a freshly installed Windows Server 2022 Core. Upon attempting to configure the IP address, it will fail with the following error message:
You can manually work around the issue by configuring the IP address using Powershell directly:
Get-NetAdapter
Remove-NetIPAddress -InterfaceAlias Ethernet0 -Confirm:$False
New-NetIPAddress -InterfaceAlias Ethernet0 -IPAddress 10.20.30.10 -PrefixLength 24 -DefaultGateway 10.20.30.1
Set-DnsClientServerAddress -InterfaceAlias Ethernet0 -ServerAddresses ("10.20.30.2","10.20.30.3")
« ‹ | January 2025 | › » | ||||
Sun | Mon | Tue | Wed | Thu | Fri | Sat |
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |