I try to map a network resource to my local device.

I receive the following error: The local device name is already in use.

I have the problem to find which purpose the device is used for. I try a command net use and do not see it in the list, therefore, it is not mapped to a network resource.

Does anybody know how to see the list of all used devices in Windows 7?

link|improve this question

80% accept rate
net use is the typical way to check. I'm not sure why it would be claiming to be in use if it is not there. – Jeff F. Feb 1 '11 at 14:30
@Jeff: exactly, also not clear for me – Tim Feb 1 '11 at 14:34
@Tim silly question: Have you rebooted? Also have you ensured that no physical device is using that letter(in disk management) – Jeff F. Feb 1 '11 at 14:37
@Jeff: I use 2 physical disks that are partitioned into C:\ and V:\ correspondingly + 2 network resources that are mapped to W:\ and Z:\ as you see there is no I:\ among them. Why do I have to reboot? – Tim Feb 1 '11 at 14:42
@Tim reboots have been the universal MS fixer since 3.0 :) – Jeff F. Feb 1 '11 at 14:43
show 7 more comments
feedback

3 Answers

You need to remap the drive.

First:

net use * /delete

Then remap it using net use again:

net use Z: \\server\share /user:username password
link|improve this answer
thank you sir!! I had disconnected a device from the gui, but the device name was "already in use". – Stefanos Kalantzis Mar 15 at 13:36
feedback

Looks like it could be the following:

http://support.microsoft.com/kb/297694

link|improve this answer
That KB article refers to Windows XP, not Windows 7. – mvexel Apr 20 at 17:02
feedback

One possibility that I just ran into is that you've added a device to your system that causes other "auto mapped" devices to bump up over the mapped drive.

Say you have M mapped to a network drive, but you add a new harddrive, that then causes all the removable drives (even though they don't have anything inserted into them) to bump up a letter (or two).

Now, suddenly, one of the removeable drives is mapped to M.

Your network drive can no longer be mapped to M, and when you try to remove the mapping, it'll give you a "Device already in use" error.

Open up "Storage/Disk management" and check ALL the drives for any mapping that might be on top of the drive you want to map.

If there, just remap that drive to something else.

Then you should be able to use NET USE to attach to your network drive properly.

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.