Hi @Folorunso Ojuri ,
The easiest way to alleviate this issue would be to set the IP address for the NIC via PowerShell. You can choose option 15 from sconfig to drop into PowerShell and use the commands below to set the static IP and DNS servers appropriately.
Get-NetAdapter "ADAPTER_NAME" | Set-NetIPInterface -Dhcp Disabled
Get-NetAdapter "ADAPTER_NAME" | New-NetIPAddress -IPAddress 10.46.1.157 -PrefixLength 16 -DefaultGateway 10.46.0.254
Get-NetAdapter "ADAPTER_NAME" | Set-DnsClientServerAddress -ServerAddresses ("X.X.X.X, Y.Y.Y.Y") <-- of course, replace with the appropriate IPs :)
Hope this helps!
Trent