usb drive serial number

Excel Facts

What is the shortcut key for Format Selection?
Ctrl+1 (the number one) will open the Format dialog for whatever is selected.
Hi,

I just looked at the properties on a couple of Flash Drives attached to my machine. I did not see anything that resembled a Serial Number. Are you sure that there is one, and if so, what is it called in the Properties drop down box.
 
Upvote 0
Code:
Function DriveSerialNumber(sDriveSpec As String) As String
  ' Returns the (hex) serial number of sDriveSpec, which can be
  '  o  a drive letter with optional colon and path separator ("C", "C:", "C:\")
  '  o  a network share specification ("\\computer2\share1")

  ' Returns "" if not found

  On Error Resume Next
  DriveSerialNumber = Hex(CreateObject("Scripting.FileSystemObject").GetDrive(sDriveSpec).SerialNumber)
End Function
 
Upvote 0
Thank you shg,
Is there a code to get all drives serial on system?
 
Upvote 0

Forum statistics

Threads
1,216,051
Messages
6,128,501
Members
449,455
Latest member
jesski

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top