Rob van der Woude's Scripting Pages
Powered by GeSHi

Source code for getflashdrives.bat

(view source code of getflashdrives.bat as plain text)

  1. @ECHO OFF
  2. :: Check Windows version and command line arguments (none required)
  3. IF NOT "%OS%"=="Windows_NT" GOTO Syntax
  4. IF NOT  "%~1"==""           GOTO Syntax
  5.  
  6. :: Remove drive letters no longer in use
  7. MOUNTVOL /R
  8.  
  9. :: Read the list of physical drives from the registry, and show only the removable "Flash" drives
  10. FOR /F "tokens=2 delims=\ " %%A IN ('REG Query "HKLM\SYSTEM\MountedDevices" /v "\DosDevices\*" ^| FINDSTR /R /E /C:" 5F[0-9A-F]*"') DO ECHO.%%A
  11. GOTO:EOF
  12.  
  13. :Syntax
  14. ECHO.
  15. ECHO GetFlashDrives.bat,  Version 1.00 for Windows 7 and later
  16. ECHO List all removable ("Flash") drives on the local computer
  17. ECHO.
  18. ECHO Usage:   GETFLASHDRIVES
  19. ECHO.
  20. ECHO Written by Rob van der Woude
  21. ECHO http://www.robvanderwoude.com
  22.  

page last modified: 2024-02-26; loaded in 0.0242 seconds