Hello,
how can i find login used by network drive mapping?
Like the username used for z-drive ?
Solved: how can i find login used by network drive mapping?
Solved: how can i find login used by network drive mapping?
Last edited by mister_v on Thu Jan 26, 2023 7:24 am, edited 1 time in total.
Re: how can i find login used by network drive mapping?
you can use the command:
It shows the username
Code: Select all
wmic netuse where LocalName="Z:" get UserName /value
Re: how can i find login used by network drive mapping?
thanks, that is what I needed.