With multiple network adapters in a server environment, you have two choices on how you will assign a name and an IP address to each card.
The standard method, which is the most used method, is assigning a unique name and IP Address to each card.
The other way, for Servers in a larger server environment, is to team multiple network adapters together and give them a Name and IP address, and that is what we will do here.
In a [PowerShell] prompt, copy and paste the following code, changing the values as needed.
  1. The number of cards, by adding or removing the lines "NIC-1" - "NIC-4"

    If you have 5 NICs, you will add an additional line with the [-NewName] of "NIC-5" and then add or remove the NIC-# from the last line.
  2. Change the [-Name] "Team-VLCore-01" to suit your environment.
[NIC Teaming using PowerShell]
CFFCS | CarrzSynEdit: | PS (PowerShell)
Rename-NetAdapter -Name "Ethernet0" -NewName "NIC-1"
Rename-NetAdapter -Name "Ethernet1" -NewName "NIC-2"
Rename-NetAdapter -Name "Ethernet2" -NewName "NIC-3"
Rename-NetAdapter -Name "Ethernet3" -NewName "NIC-4"
new-NetLBFOTeam -Name "Team-VLCore-01" -TeamMembers "NIC-1", "NIC-2", "NIC-3", "NIC-4" -TeamingMode SwitchIndependent -LoadBalancingAlgorithm MacAddress