Pour trouver les périphériques MTP dans Power Shell, utilisez cette commande:

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