@echo off&Title=Set Adapter Names &MODE CON: COLS=100 LINES=20powershell -nologo -command "Write-Host 'Attempting to rename adapters named Local Area Connection* to their MAC address'; $Shell = New-Object -com shell.application; $NetCons = $Shell.Namespace(0x31); $NetCons.Items() | where {$_.Name -like 'Local Area Connection*'} | foreach{$AdapName=$_.Name; get-WmiObject -class Win32_NetworkAdapter| where-Object {$_.NetConnectionID -eq $AdapName} | foreach {$MAC=$_.MacAddress}; Write-Host Renaming $_.Name to $MAC; $_.Name=$MAC.replace(':','.')}" | morepause