Hi,
Below PowerShell command shows number of users currently accessing a share. Similarly, on Windows Server, is there a way to find list of shares being accessed by a given user.
PS C:\> Get-SmbShare | Select Name, Path, CurrentUsers
Name Path
CurrentUsers
---- ----
------------
ADMIN$ C:\Windows
0
C$ C:\
0
D$ D:\
0
IPC$
1
rmc D:\rmc
2
PS C:\>
Regards/Susanta