Link to home
Start Free TrialLog in
Avatar of Silas2
Silas2

asked on

Walkman/USB Device Not Assigned Drive Letter

I've just plugged a Sony Walkman player into my usb port, but it (Vista Business) doesn't give it a drive letter, it calls it: "Computer\Walkman NWZ-B135\Storage Media..." which is all very well for drag n' drop, but I want to access the device thru code, Admin Tools/Diskmanagement sees it but won't list it as a drive. Is there any way I can either give it a drive letter or access the path thru code (the path must be well formed but just not as we know it)?
Avatar of LeeTutor
LeeTutor
Flag of United States of America image

If you right click it in Disk Management, you can't choose Change Drive Letter and Path...  ?
Avatar of halonx
halonx

In Disk Management, right click on the partition and select Change Drive Letter and Paths, you should be able to change the drive letter there.

Sometimes this will happen if you have network drives mapped and then plug in a USB drive.  The USB drive wants to use the same drive letter the mapped network drive is using.
ASKER CERTIFIED SOLUTION
Avatar of Silas2
Silas2

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Silas2

ASKER

if I run in .Net:

        Dim drs() As DriveInfo = DriveInfo.GetDrives
        Dim dr As DriveInfo
        For Each dr In drs
            Console.WriteLine(dr.Name)
        Next
it doesn't show up so I don't think it's categorized as a drive, it's more like a network share, if you right-click a folder on the device, the Context menu doesn't show the same options as a folder on the normal drives and there is no "Share" option. There must be some way of creating a path to it though shouldn't there?