Microsoft/Windows Server

[Windows Server] 네트워크 어댑터 링크 속도 확인

2swan 2025. 7. 21. 00:32

PowerShell

Get-NetAdapter | SELECT interfaceDescription , Name, Status, LinkSpeed, Fullduplex | ft -autosize

 

 

CMD
powershell "Get-NetAdapter | SELECT interfaceDescription, Name, Status, LinkSpeed, Fullduplex | ft -autosize"

or

powershell -command "Get-NetAdapter | SELECT interfaceDescription, Name, Status, LinkSpeed, fullduplex | ft -autosize"