powershell network adapter settings

A nice way to find the network adapter settings in your server

Get-WmiObject -ComputerName ‘servername’ -Class Win32_NetworkAdapter
| Where-Object { $_.Speed -ne $null} | Format-Table -Property Name,Adaptertype,@{Label=’Networkspeed(GB)’; Expression = {$_.Speed/1GB}}

INTERVIEW PREPARATION IN 30 MINs – Read Following wires for a quick interview preparation.

  1. SQL Server DBA “Interview Questions And Answers”
  2. SQL Azure Interview Questions and Answers Part – 1
  3. SQL Azure Interview Questions and Answers Part – 2
  4. Powershell Interview Questions and Answers

Regards,
Online POWERSHELL Classes @ http://tuitionaffordable.webstarts.com

Author: tuitionaffordable

Making tuition affordable for all the students on the planet.

Leave a comment