Accessing shared data folders on Win 2012 R2 server

jain1980

New Member
Joined
Mar 19, 2021
Messages
1
How can we access shared data folders on a Windows 2012 server without joining the domain. I am using a windows 7 PC to access the shared data folders but I dont want to join the domain since I am the admin.
 

Solution
To access shared data folders on a Windows Server 2012 without joining the domain, you can follow these steps:

Share the Folder on Windows Server 2012:​

  • Share the Folder: Create a shared folder on the Windows Server 2012 with appropriate permissions.
  • Permissions: Ensure the share permissions and NTFS permissions allow access to the shared folder for non-domain users.

Access Shared Folder from Windows 7 PC:​

  • Connect to the Shared Folder:
  • Press Win + E to open Windows Explorer.
  • In the address bar, type \\IP_Address_of_Server and press Enter.
  • You should see a list of available shared folders.
  • Double-click on the shared folder you want to connect to...
To access shared data folders on a Windows Server 2012 without joining the domain, you can follow these steps:

Share the Folder on Windows Server 2012:​

  • Share the Folder: Create a shared folder on the Windows Server 2012 with appropriate permissions.
  • Permissions: Ensure the share permissions and NTFS permissions allow access to the shared folder for non-domain users.

Access Shared Folder from Windows 7 PC:​

  • Connect to the Shared Folder:
  • Press Win + E to open Windows Explorer.
  • In the address bar, type \\IP_Address_of_Server and press Enter.
  • You should see a list of available shared folders.
  • Double-click on the shared folder you want to connect to.
  • Provide Credentials:
  • When prompted, enter the appropriate username and password with access to the shared folder on the Windows Server.
  • Remember Credentials:
  • To avoid entering credentials each time, you can save the credentials on the Windows 7 PC.
  • Open Command Prompt (CMD) as an administrator.
  • Type: net use \\IP_Address_of_Server\SharedFolder /user:ServerUsername * and press Enter.
  • Enter the Server's password when prompted and press Enter.

Persistent Mapping:​

  • To ensure that the shared folder connection persists across reboots:
  • Open Command Prompt (CMD) as an administrator.
  • Type: net use Z: \\IP_Address_of_Server\SharedFolder /user:ServerUsername and press Enter. (Replace Z: with the desired drive letter and provide the appropriate server username and password)
  • To remove mapped drives: net use Z: /delete. By following these steps, you should be able to access the shared data folders on the Windows Server 2012 from your Windows 7 PC without joining the domain.
 

Solution
Back
Top