Summary: Use Windows PowerShell to rename the net adapter.
How can I use Windows PowerShell and Windows 8 to rename my network adapter?
Use the Get-NetAdapter function to retrieve the specific network adapter and
pipe the results to the Rename-NetAdapter function:
Get-NetAdapter –Name Ethernet | Rename-NetAdapter –NewName MyRenamedAdapter