Advertisement
J2897

Get-USBStorageDevicesInfo

Apr 2nd, 2025 (edited)
474
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. # Retrieve USB storage devices using PNPDeviceID
  2. $usbDevices = Get-PnpDevice | Where-Object { $_.PNPDeviceID -like "USBSTOR*" }
  3.  
  4. # Format and display the relevant information for each USB storage device
  5. $usbDevices | ForEach-Object {
  6.     [PSCustomObject]@{
  7.         DeviceID     = $_.PNPDeviceID
  8.         FriendlyName = $_.FriendlyName
  9.         Status       = $_.Status
  10.     }
  11. } | Format-Table -AutoSize
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement