Normally a shared network drive is only accessible to the user who mapped it. Even when you use net use command in Command Prompt or PowerShell to map a network drive as Administrator, you will be surprised to find the drive is only available within the elevated Command Prompt or PowerShell window itself. It will not show in File Explorer.
In a small network environment, it is useful to allow all users using the same computer have ready access to the same mapped network drive, for example you have a team file server. You could use a login script to map drives for each and every user, or use a registry setting to share the mapped drive for all users.
Just create HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System\EnableLinkedConnections DWORD and set the value to 1. Restart the computer to take effect.
You could use File Explorer to map network drives, or use command to do the same with option to enter different credential for access.
net use z: \\file_server\share_name password_here /user:username_here /persistent:Yes