Table of Contents

Intel NIC's

https://downloadcenter.intel.com/download/25016/Ethernet-Intel-Network-Adapter-Driver-for-Windows-10

PowerShell

https://www.intel.com/content/www/us/en/support/articles/000023545/network-and-i-o.html

Find the correct adapter name

PS C:\Windows\system32> Get-IntelNetAdapter

Location        Name                                                           ConnectionName            LinkStatus
--------        ----                                                           --------------            ----------
0:31:6:0        Intel(R) Ethernet Connection I219-V                            Ethernet                  1,00 Gbps ...

Add or remove VLANs

VLAN 0 is untagged

PS C:\Windows\system32> Add-IntelNetVLAN -ParentName "Intel(R) Ethernet Connection I219-V" -VLANID 1,2,3

VLANID VLANName                                       ParentName
------ --------                                       ----------
1      VLAN1                                          Intel(R) Ethernet Connection I219-V
2      VLAN2                                          Intel(R) Ethernet Connection I219-V
3      VLAN3                                          Intel(R) Ethernet Connection I219-V


PS C:\Windows\system32> Remove-IntelNetVLAN -ParentName "Intel(R) Ethernet Connection I219-V" -VLANID 1,2,3