Score:0

Rename a Windows network Adapter based on Description of the adapter

tr flag
Dej

We need to rename the network adapter for a number of devices, however the adapter name can be different on different devices. The identifier is the description of the adapter so wondering if anyone has renamed an adapter name based on the description of the apapter.

djdomi avatar
za flag
maybe would be a chance with powershell
br flag
Consider using CDNs
Score:2
in flag

A simple one-liner in Powershell.

Get-NetAdapter | Where-Object { $_.InterfaceDescription -eq 'whatever' } |
  Rename-NetAdapter -NewName "MyAdapter"
Dej avatar
tr flag
Dej
thank you - that worked.
mangohost

Post an answer

Most people don’t grasp that asking a lot of questions unlocks learning and improves interpersonal bonding. In Alison’s studies, for example, though people could accurately recall how many questions had been asked in their conversations, they didn’t intuit the link between questions and liking. Across four studies, in which participants were engaged in conversations themselves or read transcripts of others’ conversations, people tended not to realize that question asking would influence—or had influenced—the level of amity between the conversationalists.