log image

Following instructions are used to find Your MAC Address on a Windows PC

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