How do I remove the VLAN ID from my NIC (Netadapter)
Solution 1:
It's simple:
You need to write this command in PowerShell:
Set-NetAdapter -Name nic1 -VlanID 0
where nic1
is the name of your adapter.
You can check VLAN on your interfaces this command in PowerShell:
Get-NetAdapter | select interfacealias,vlanid