Tech News Today
  • Hardware
    • Motherboards
    • CPUs
    • Graphic Cards
    • RAM
    • SSDs
    • Computer Cases
    • Monitors
    • Peripherals
    • Power Supply Unit
    • PC Builds
    • Computer Tips
  • Software
  • Operating System
    • Windows
    • Mac
    • Linux
  • Gaming
  • Mobile
  • Console
  • More
    • Internet
    • Networking
    • Security
    • Buyer’s Guide
    • Gadgets
    • Laptops
    • Reviews
    • How To
    • News
Facebook Twitter Instagram
Tech News Today
  • Hardware
    • Motherboards
    • CPUs
    • Graphic Cards
    • RAM
    • SSDs
    • Computer Cases
    • Monitors
    • Peripherals
    • Power Supply Unit
    • PC Builds
    • Computer Tips
  • Software
  • Operating System
    • Windows
    • Mac
    • Linux
  • Gaming
  • Mobile
  • Console
  • More
    • Internet
    • Networking
    • Security
    • Buyer’s Guide
    • Gadgets
    • Laptops
    • Reviews
    • How To
    • News
Tech News Today
Home»Networking»How to Access Files from Another Computer on the Same Network

How to Access Files from Another Computer on the Same Network

AbhishekBy AbhishekOctober 22, 2022
How to Access Files from Another Computer on the Same Network

Using the network to access files on another computer or transfer files between them is a highly convenient method. You don’t need to use external media or cloud storage to share files. Additionally, if you are transferring the files, you can do so through the Ethernet, which has a high transfer speed compared to traditional USB devices.

However, the computer you want to access must share the files on the network before you can access them. You also need to know the user account credentials on the other computer so that the process doesn’t compromise security. In this article, we have listed many ways in which you can share and access such files for both Windows and Mac systems.

Table of Contents

  • How to Access Files from Another Computer on the Same Network on Windows?
    • Using Folder Sharing
    • Through File Sharing Using Windows PowerShell
    • Using Remote Desktop Connection
  • How to Access Files from Another Computer on the Same Network on Mac?
    • Step 1: Sharing Folder from Source Computer
    • Step 2: Accessing Files from your Computer

How to Access Files from Another Computer on the Same Network on Windows?

Windows includes multiple default ways with which you can access files from another computer on the same network. We have explained some convenient methods you can use down below.

Using Folder Sharing

The method most users are familiar with is to use folder sharing to transfer files between Windows computers on the same network. You need to enable some settings on both computers and create shared folders on one computer to be able to access them from another.

Here is the detailed step-by-step process to execute this method.

Turn On Network Discovery

The first thing you should do is make sure network discovery is enabled for both your computer and the computer you are accessing. You need it to discover and access the other computer. Here’s what you need to do:

  1. Open Run by pressing Win + R.
  2. Enter control /name Microsoft.NetworkAndSharingCenter to open Network and Sharing Center on the Control Panel.
  3. Go to Change advanced sharing settings.
    change-advanced-sharing-settings
  4. Expand Private and enable the following options:
    • Turn on network discovery
    • Turn on automatic setup of network connected devices
    • Turn on file and printer sharing
      private-network-discovery
  5. If you are using a public network to share or access files (which we don’t recommend), you need to check the same options under Guest or Public.
  6. Then, expand All Networks and check Turn on password protected sharing. This option is necessary if you wish to share the files with another computer that doesn’t have your user account and password stored on its system.
  7. Click Save changes.
    turn-on-password-protected-sharing-save-changes

In some systems, you may also need to enable Media sharing options to make your device accessible on the network.

Check Services

To share files over the network, you must ensure some services are running properly. Follow the steps below to check the necessary services and start then if they aren’t running:

  1. Open Run and enter services.msc to open Windows Services.
  2. Look for the following services:
    • Function Discovery Provider Host
    • Function Discovery Resource Publication
    • SSDP Discovery
    • UPnP Device Host
      services-sharing
  3. Double-click on each service to access their Properties.
  4. Set Startup type to Automatic and click Start if they are not running. Do so for all the services.
    start-function-discovery-provider-host-automatic

Sharing the File/Folder

Next, the other computer needs to share the files you want to get. If you have access to the computer, use the steps below to share the file/folder. If not, ask the PC user to do so.

  1. Navigate to the folder you want to share and right-click on it.
  2. Select Give access to > Specific people or Show more options > Give access to > Specific people.
    give-access-to-specific-people
  3. Click on the arrow icon on the drop-down box and select the user you wish to share with. To share the folder with all users in the network, select Everyone.
  4. Click Add.
  5. Then, you can set the Permission Level to Read or Read/Write per your wish. Just setting it to Read won’t allow other users to make changes to the folder contents.
  6. Then, select Share.
    share-with-everyone

You can also share a file using the same steps. However, it is only possible in either of the two scenarios below:

  • The file is in your user profile folder.
  • The file’s parent folder is already a shared folder.

Another way you can share a folder is as follows:

  1. Right-click on the folder and select Properties.
  2. Go to the Sharing tab and click Share under Network Path.
    sharing-share
  3. Then, you can follow steps 3-5 from above to share the folder.

Accessing the File/Folder

On your end, you need to perform the following steps to access the shared files/folders:

  1. Press Win + E to open the File Explorer.
  2. Click on Network from the Navigation Panel on the left.
  3. Look for the computer name under Computer and double-click on it.
    select-the-network-computer
  4. If you don’t know which computer you need to access,
    • On the other PC, enter msinfo32 on Run.
    • Look for the Value of the System Name.
      system-name-value
  5. You can also use the IP address on the computer instead of the Computer Name to access it. You need to enter \\<IP address>, for example, \\192.168.10.9, on Run to do so.
    ip-address-on-run
  6. To find out the IP address of the computer sharing the file/folder,
    • Open Command Prompt on that PC and enter ipconfig.
    • Look for IPv4 address under Ethernet adapter Ethernet or Wireless LAN Adapter Wi-Fi.
      ip-address-ipconfig
  7. Enter the username and password of the account used to share the files/folders.
  8. Then, navigate the folder to find the files you want to access.
  9. You can also copy the files to your drives using regular copy/paste operations.

You can also access the folders/files shared by a Mac computer on the network in the same manner.

Through File Sharing Using Windows PowerShell

You can also use command line tools such as Windows PowerShell to perform the above method quickly if you find it troublesome to navigate multiple GUI. Here’s how you can use PowerShell for this purpose:

On the Computer which you want to access, follow these steps:

  1. Open Run.
  2. Type powershell and press Ctrl + Shift + Enter to open the Elevated Windows PowerShell.
  3. Enter the command net share SharedFolder=“D:\FolderToShare” /grant:everyone,full while replacing the following:
    • SharedFolder with the name you want for the network location you are creating.
    • “D:\FolderToShare” with the path of the folder you want to share.
    • everyone with the user or group
    • full with change or read if you want more restricted permissions.
      net-share-everyone-full
  4. You can use this command for all the folders you wish to share.
  5. Then, enter the command below to enable network discovery:
    netsh advfirewall firewall set rule group=”Network Discovery” new enable=Yes
    network-discovery-enable-powershell

Now you need to find out either the computer name or the IP address to access this computer.

  1. To get the computer name, enter hostname on PowerShell.
    hostname
  2. To get the IP address,
    • Enter Get-NetIPAddress -AddressFamily IPv4
    • Look for the network you are connected to. The InterfaceAlias should usually show Ethernet or Wi-Fi.
    • Alternatively, you can directly enter Get-NetIPAddress -AddressFamily IPv4 -InterfaceAlias Ethernet,Wi-Fi
      ip-address-powershell
    • Note down the Value of IPAddress.

On your Computer, follow these steps:

  1. Open the Elevated Windows PowerShell.
  2. Enter the command net view \\<hostname> or net view \\<ip address> while replacing the <hostname> and the <ip address> using the values you found out earlier.
    For example, net view \\user01 or net view \\192.168.10.9
    check-shared-resource
  3. Now, you need to connect a drive letter to the network location of the files. You need to enter the command net use Z: \\<hostname>\<path of folder> to use the drive letter Z: for the location.
    For example, net use Z: \\user01\iso assigns a virtual letter Z: to the folder “iso” directly shared on the other computer.
  4. Enter Z: (or the drive letter with the colon) to change the Current Working Directory (CWD) to this drive.
  5. You can use a combination of dir and cd <folder> to list the contents of the CWD and navigate the network drive.
    net-use-drive-letter-cd-dir
  6. You can then use commands like Copy-Item “.\file.iso” “D:\FolderToReceive” or Move-Item “.\file.iso” “D:\FolderToReceive” to transfer the file to your computer. Make sure to replace “D:\FolderToReceive” with the destination folder you want.

Using Remote Desktop Connection

It is also possible to use Remote Desktop Connection (RDC) to access files of a remote computer on the same network. By default, you can’t transfer the files to your PC, but you can enable such an option by changing some settings.

Here are the necessary steps to change such settings and access files on another PC using RDC:

  1. Open Run and enter mstsc to run Remote Desktop Connection.
  2. Click on Show Options.
  3. Go to the Local Resources tab and then More.
    local-resources-more
  4. Check Drives and click OK.
    drives-ok
  5. Go back to the General tab and enter the Computer and the User name. If you don’t know the computer name of the other PC,
    • On that computer, enter msinfo32 on Run.
    • Check the Value of the System Name.
  6. Click Connect > Connect and enter the password.
    computer-username-connect
  7. Select OK and confirm with Yes if prompted.
  8. Here, open File Explorer and navigate to the files you want.
  9. If you want to transfer them to your PC, copy or move those files and then go to This PC in File Explorer.
  10. Under Redirected drives and folders, you will find the drives of your PC which you selected earlier.
    redirected-files-remote-desktop
  11. Open the drive you want and Paste the contents.

You can also transfer the file from your system to the remote computer in the same way.

How to Access Files from Another Computer on the Same Network on Mac?

Mac also allows accessing files from another computer on the same network using the Server Message Block (SMB) or Apple Filing Protocol (AFP) sharing protocol through File Sharing options. Here’s what you need to do on both the source computer and your destination computer:

Step 1: Sharing Folder from Source Computer

  1. Click on the Apple icon and go to System Preferences > Sharing.
    system-preferences-sharing
  2. Check File Sharing and click on the + icon under Shared Folders.
  3. Navigate to the folder you wish to share and click Add.
  4. You can select the user you need to provide access to under Users. You can also pick Everyone to enable every user to access the shared folder.
  5. On the menu to the right, specify the permission level (Read & Write or Read Only) you wish for.
  6. You should also check the Computer’s name and the IP address above the settings.
    mac-file-sharing

Step 2: Accessing Files from your Computer

  1. Open Finder from the Dock.
  2. On the menu, select Go and then Connect to Server.
    mac-connect-to-server
  3. Enter the computer name or smb://<computer name> or smb://<ip address> on the drop-down box while replacing the values you noted earlier. You might also need to use afp instead of smb (check the Sharing Preferences on the source computer).
  4. Click on Connect and then enter the other computer’s username and password.
    connect-to-server-mac-server-address
  5. Navigate the folders to access the necessary files. You can transfer files to your device and vice versa using the built-in functions.

You can also use the same steps to access shared files from a Windows computer. However, you need to enter the email of the Microsoft account of the Windows user while entering the credentials for the network device.

how-to
Abhishek

I'm an electronics engineer, avid writer, and tech-enthusiast specializing in troubleshooting computer-related issues. I enjoy reading both fiction and non-fiction in diverse genres. Apart from that, I also have a habit of trying out most new games but never completing them.

Related Posts

packet loss test

How To Perform Packet Loss Test On Windows

January 15, 2023
how to reset ethernet adapter

How To Reset Ethernet Adapter

January 2, 2023
does my pc have wifi

Does Your Desktop Have Wi-Fi? Here’s How to Find Out

January 1, 2023
dns server is not responding

8 Ways to Fix “DNS Server Is Not Responding” Error

December 27, 2022
how-to-reset-spectrum-wifi

How to Reset Spectrum Wi-Fi

December 26, 2022
how to update router firmware tp-link

How to Update Router Firmware on TP-Link (2 Possible Ways)

December 26, 2022
Add A Comment

Leave A Reply Cancel Reply

Latest Posts
what is ghost of tsushima legends

What is the Ghost of Tsushima Legends Mode

January 12, 2023
raid 5 vs raid 10

RAID 5 Vs RAID 10 – Which One Is Better?

January 12, 2023
best-tv-settings-for-gaming

Best TV Settings for Gaming

January 9, 2023
You may also like
tv-screen-goes-black-randomly

TV Screen Goes Black Randomly? Try These 11 Fixes

January 15, 2023
how to find unique values in excel

How to Find Unique Values in Excel

January 15, 2023
how-to-open-and-use-chrome-settings

How to Open and Use Chrome Settings

January 16, 2023
Recommended
Cookie Clicker Garden Guide

Cookie Clicker Garden Guide to Unlocking Every Seed

September 26, 2021
monitor no signal

Computer Turns On But Monitor Says No Signal (9 Ways To Fix)

November 10, 2022
Facebook Twitter Pinterest
  • Home
  • About Us
  • Editorial Guidelines
  • Fact-Checking Policy
  • Privacy Policy
  • Affiliate Disclosure
© 2023 TechNewsToday.

Type above and press Enter to search. Press Esc to cancel.