How do I connect to a network share from a Windows PC?

If you know the path of to the network share open the command prompt and use the following command:

net use [DRIVE_LETTER]: “[FULL_PATH_TO_NETWORK_SHARE]”

*This will temporarily map the given drive letter to the network share.
*You will need to do this again after you log off or reboot to regain access to the share.

To make the map to the network share permanent use the following:

net use [DRIVE_LETTER]: “[FULL_PATH_TO_NETWORK_SHARE]” /persistent:yes