

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to find a network adapter driver version using PowerShell?
To find the network adapter driver version using PowerShell, we can use the Get-NetAdapter cmdlet. First, let look at how the network adapter driver version looks like from GUI.
Get-NetAdapter will retrieve all the Physical and Virtual network adapters unless specified.
This cmdlet has a property called DriverVersion, DriverDate, and DriverProvider. You can select it.
Example
Get-NetAdapter | Select Name, InterfaceDescription,DriverVersion, DriverDate, DriverProvider
Output
Name : Wi-Fi InterfaceDescription : Intel(R) Wi-Fi 6 AX201 160MHz DriverVersion : 21.80.2.1 DriverDate : 2020-02-25 DriverProvider : Intel Name : VMware Network Adapter VMnet1 InterfaceDescription : VMware Virtual Ethernet Adapter for VMnet1 DriverVersion : 14.0.0.3 DriverDate : 2019-08-08 DriverProvider : VMware, Inc. Name : VMware Network Adapter VMnet8 InterfaceDescription : VMware Virtual Ethernet Adapter for VMnet8 DriverVersion : 14.0.0.3 DriverDate : 2019-08-08 DriverProvider : VMware, Inc.
- Related Questions & Answers
- How to find the device driver version using PowerShell?
- How to map the network drive using PowerShell?
- How to install the specific version of the PowerShell module version?
- How to remove the mapped network drive using PowerShell?
- How to change the TLS version in PowerShell?
- How to install the latest PowerShell module version?
- How to find the R version you are using?
- How to find the version of Java using command line?
- How to de-register a driver from driver manager’s drivers list using JDBC?
- How to find a Computer product serial number using PowerShell?
- How to retrieve the Azure VM network security group (NSG) using PowerShell?
- How to retrieve the Azure subnets connected to the virtual network using PowerShell?
- How to find Windows Product Key Using PowerShell?
- How to update RecyclerView Adapter Data?
- How to get the properties of a driver using JDBC?
Advertisements