Page 1 of 1

Solved: how can i find login used by network drive mapping?

Posted: Wed Jan 25, 2023 9:15 am
by mister_v
Hello,

how can i find login used by network drive mapping?
Like the username used for z-drive ?

Re: how can i find login used by network drive mapping?

Posted: Wed Jan 25, 2023 10:23 am
by Chris
you can use the command:

Code: Select all

wmic netuse where LocalName="Z:" get UserName /value
It shows the username

Re: how can i find login used by network drive mapping?

Posted: Thu Jan 26, 2023 7:24 am
by mister_v
thanks, that is what I needed.