ดู Interface ที่ต้องการแก้ไขด้วย command
Get-NetAdapter
ตัวอย่างลบ Config ที่ Ethernet0
Remove-NetIPAddress -InterfaceAlias Ethernet0 -confirm:$False
Fixed IP Address ด้วย command
New-NetIPAddress -InterfaceAlias Ethernet0 -IPAddress 172.16.1.2 -PrefixLength 24 -DefaultGateway 172.16.1.1
ถ้า Error: Instance DefaultGateway already exists ให้ใช้ Command นี้ก่อน แล้ว Fixed IP Address ใหม่อีกครั้ง
Remove-NetRoute -InterfaceAlias Ethernet0