If you, like me, don’t like seeing a lot of drive letters of mapped network shares in Windows Explorer, you can also mount them inside a folder on your local file system.
Here is how you do it:
net use \\server\share mkdir c:\mount mklink /d c:\mount\share \\server\share
Now, you can navigate to C:\mount\share and see the contents of \\server\share.
You’ll need to provide the network share credentials – net use will ask if you are not logged into a a domain account that has access.
This is not permanent, so if you need all the time, create a script:
net use \\server\share /USER:username password mklink /d c:\share \\server\share
Note that saving your password in a script is insecure and is not recommended.