Device management using PowerShell
There are some cmdlets available for device management. They are useful on a server core type installation like Hyper-V 2012
First you need to download and import the cmdlet modules from here
Then you can run commands like get-device. However a more useful command is:
Get-Device | Sort-Object -Property Name | ft Name, DriverVersion, DriverProvider, IsPresent, HasProblem –AutoSize
More command examples are here