Summary: Use Windows PowerShell to find information about mice attached to your system.
How can I use Windows PowerShell to return information about mice on my system?
Query the Win32_PointingDevice WMI class. You can use the Get-WmiObject cmdlet, as shown here.
Get-WmiObject win32_pointingdevice
On Windows PowerShell 3.0, use the Get-CimInstance cmdlet, as shown here.
Get-CimInstance win32_pointingdevice