Skip to content

Commit

Permalink
Merge pull request #3674 from yoinked-h/patch-1
Browse files Browse the repository at this point in the history
fix an un-escaped asterisk in rename network adapter
  • Loading branch information
tiburd authored Nov 17, 2023
2 parents 003b8fb + f8888a3 commit 3a61c51
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docset/winserver2022-ps/netadapter/Rename-NetAdapter.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ This command renames a network adapter from the current name of Ethernet to the
PS C:\> Rename-NetAdapter -Name "E*t" -NewName "ManagementAdapter"
```

This command renames a network adapter from the current name, by matching the pattern e*t, to the new name ManagementAdapter.
A typical match of e*t is the default name Ethernet.
This command renames a network adapter from the current name, by matching the pattern e\*t, to the new name ManagementAdapter.
A typical match of e\*t is the default name Ethernet.

## PARAMETERS

Expand Down

0 comments on commit 3a61c51

Please sign in to comment.