Para encontrar dispositivos MTP no Power Shell, use este comando:

Get-WmiObject -class win32_pnpentity -computername localhost | where-object {$_.HardwareID -like "*MTP*"} | format-list
Seahawk