How to Determine Which User Used to Map Share Drive

Symptom

You want to determine which user was used to map a share drive in the Windows operating system environment.

Solution

Open the command prompt with Administrator right and execute any of below commands,

Option 1

C:\>wmic netuse get remotename,username

RemoteName      UserName
\\ITSITI\Test1  HOST1\daem
\\ITSITI\Test2  HOST1\daem

Option 2

C:\>wmic netuse where LocalName="Z:" get UserName /value

UserName=HOST1\daem

Note: The LocalName is referring to the drive letter.

You May Also Like

Leave a Reply?