How do I programmatically change the label of a mapped drive?

how to change mapped drive label from command line?

  • How might one control the label for mapped drives as they appear in My Computer, from the command line? The goal is to have the drive letter at the beginning of the phrase instead of the end, so when navigating with the keyboard one simply types the drive letter to jump to that item in the list. So, for example: net use x: \\servername\skunkworks will show this in My Computer: skunkworks on 'Long descriptive name of file server (servername)' (X:) but what we want is something like: X: Skunkworks on Servername One can interactively change the label with Windows Explorer, but this must be done seperately for every user profile and is a pain. It'd be really nice to relabel the drives as part of the login script.

  • Answer:

    You can actually change this per drive mapping with a name of your choice. We do this if customers want to give more friendly names to mapped drives in enterprise environents. Check out the following vbscript to get you in the right direction (a better script would take path an desired name as arguments and do drive mappings in a function for a bit more streamlined and object-oriented approach) http://www.computerperformance.co.uk/ezine/ezine60.htm

matt wilkie at Server Fault Visit the source

Was this solution helpful to you?

Other answers

From http://support.microsoft.com/kb/330193: Warning Serious problems might occur if you modify the registry incorrectly by using Registry Editor or by using another method. These problems might require that you reinstall your operating system. Microsoft cannot guarantee that these problems can be solved. Modify the registry at your own risk. Click Start, click Run, type regedit, and then click OK. Locate and then click one of the following subkeys in the registry: HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\policies\Explorer HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\policies\Explorer On the Edit menu, point to New, and then click DWORD Value. Type ToggleCommentPosition, and then press ENTER. On the Edit menu, click Modify. Type 1, and then click OK. On the Edit menu, point to New, and then click DWORD Value. Type ShowDriveLettersFirst, and then press ENTER. On the Edit menu, click Modify. Type 2, and then click OK. The registry values have the following results: Key: ToggleCommentPosition Type: DWORD Value: 1 or 0 If the value is 0, Windows uses "share_name on comment_text (computer_name) (drive_letter)." If the value is 1, Windows uses "share_name on computer_name (comment_text) (drive_letter)." Key: ShowDriveLettersFirst Type: DWORD Value: 1,2, or 4 If the value is 1, the drive letter is displayed first for remote drives. If the value is 2, drive letters are not displayed. If the value is 4, the drive letter is displayed first for all drives. This registry entry can be applied in a Per-Machine policy or in a Per-User policy, by using one of the following subkeys: * For a Per-Machine policy, click the following registry subkey: HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\policies\Explorer * For a Per-User policy, click the following registry subkey: HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\policies\Explorer http://support.microsoft.com/kb/136393

shufler

Just Added Q & A:

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.