Following instructions are used to find Your MAC Address on a Windows PC
- For CMD follow these instruction.
- Go to start menu and type cmd and press Enter key.
- In cmd type the following command after C:/users/your user name>
- wmic nic where "NetEnabled=true and PhysicalAdapter=true" get Name,MACAddress and then press Enter.
- Your MAC address will be displayed in the format of 00-00-00-00-00-00.
- Copy MAC address and paste it into the MAC Address field
- For Windows PowerShell follow these instruction.
- Go to start menu and type PowerShell and click on windows powershell
- In PowerShell type the following command after C:/users/your user name>
- Get-NetAdapter | Where-Object {$_.Status -eq "Up" -and $_.HardwareInterface -eq $true -and $_.Name -notmatch "Bluetooth|Virtual"} | Select-Object Name, MacAddress and then press Enter.
- Your MAC address will be displayed in the format of 00-00-00-00-00-00.
- Copy MAC address and paste it into the MAC Address field