Navigate to a specific directory of a PC in the network (with credential)

2

I need to retrieve files and folders from my coworker's PC (who is at vacation at the moment). He emailed me his IP Address, a username and password to access his files. He also instructed the location of the files on his PC is at: C:/orant/shared/...

I managed to access his PC via my PC (by the way both OS are Windows 7). My problem is that when I try to access his PC I can only see two folders, nothing more. It seems that he haven't shared his drive (but he told me on email otherwise).

I have attempt to navigate to the following directory: \\192.XXX.XXX.XXX\C:\orant\shared, though I know more or less it won't work.

My question is how can I navigate to that specified directory?

If all else fail, I can always go to his PC's location physically: we're only a building apart.

Gideon

Posted 2015-08-19T03:32:10.027

Reputation: 387

Answers

2

You need to connect via the C$ share if he hasn't shared out a specific folder. So you would connect to \IPAddress\C$ then you will be prompted for credentials. Which you will want to append either the target computer name on the front of or the ip. So the username will look like 192.168.1.1\someguy.

Unfundednut

Posted 2015-08-19T03:32:10.027

Reputation: 6 650

Errr.... now when I try to access the PC via \\192.X.X.X\C$ and use the same credential, it return an Access Is denied. message. – Gideon – 2015-08-19T03:55:57.810

To access a share you have to have rights. In this case admin rights. – Unfundednut – 2015-08-19T04:06:37.190

But he said that the given account has Administrative rights... or should I log using the account "Administrator"? – Gideon – 2015-08-19T05:22:10.060

If you know the computer name, you can try that as well. It is possible the IP address changed on the computer. – Unfundednut – 2015-08-19T12:34:57.047

0

I just recently learned that Windows user can use the Remote Desktop Connection program as an alternative. You must first enabled the remote connection of that PC first though. To do that use the following to navigate (on Windows 7):

  1. Open My Computer
  2. Click the System Properties tab on the menu. A new page will appear.
  3. Choose the System Protection option found on the left side. A modal window will appear.
  4. Go to the last tab, the Remote tab.
  5. Tick either one of these radio buttons found at the lower part of that tab:

    • Allow connections from computers running any version of Remote Desktop (less secure)
    • Allow connections from computers running any version of Remote Desktop with Network Level Authentication (more secure)
  6. Click the OK button.

After enabling this feature on the target PC, you can run the program mstsc.exe / Remote Desktop Connection on your PC to connect using the given credentials. Easy transfer of files from PC to PC is one of the many features of this program.

Gideon

Posted 2015-08-19T03:32:10.027

Reputation: 387