How can I change the friendly name of a mapped drive using the Windows shell API and C#? My actual problem is that I am dealing with a disconected network drive without a UNC path, so the only way to rename it is from Explorer, but I want to do that programmatically.

link|improve this question
possible duplicate of C# How to change the drive letter of the CDROM from D: to Z: – ArsenMkrt Aug 16 '11 at 13:59
1  
Not a duplicate; this is a different question. OP wants to know how to rename the "friendly name" of the mapped drive, not change the drive letter. – James Johnston Aug 16 '11 at 15:33
duplicate of How to rename or relabel a Network Drive label – Luke Aug 16 '11 at 17:22
It's not a duplicate , because I tested it long time ago, it doesent works. I need something that does exactly like right click-> rename. – apaka Aug 16 '11 at 17:48
There's an outside chance that ShellExecute would work, using "rename" as the operation and providing the new name in lpParameters. I have no idea what you'd need to pass in lpFile, though: "the fully qualified parse name" doesn't mean much to me. – Harry Johnston Aug 17 '11 at 2:59
show 1 more comment
feedback

2 Answers

You should use the SetVolumeLabel API.

Basically, the drive's "name" that you're referring to is called the Volume Label. You could P/Invoke the API and change it that way.

To get extended error information, you can use GetLastError.

link|improve this answer
That doesent work. The device doesen let me to change it's volume label. – apaka Aug 16 '11 at 15:52
Could you be more specific? I've used the API, so I know it works. Are you getting an error? – dominus Aug 16 '11 at 15:54
By name I was refering to name which explorer displays. The volume name is't the problem and it can't be changed it is hardcoded into devicies driver. I'm interested in renamin 'Disconnected network drive' into something else. – apaka Aug 16 '11 at 16:59
feedback

System.IO.DriveInfo has a property VolumeLabel that lets you change the label on your volumes. Check the exceptions and remarks on VolumeLabel to see the requirements for renaming a volume.

It looks like you can't outright rename the UNC unless you map it as a network drive. You could also create a shortcut to the UNC and rename that as well.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.