On our small-business Windows XP network, I have a file in f:\MyDir\SubDir\text.doc

What would be the URI for that file while I'm on another machine.... if all I knew was that machine's IP address, and the file's path?

I thought it was something like:


\\192.168.10.20\f:\MyDir\SubDir\text.doc

But that can't seem to locate it. (I have full admin access to both machines)

link|improve this question

0% accept rate
feedback

3 Answers

Close, switch the colon to a dollar sign.

\\192.168.10.20\f$\MyDir\SubDir\text.doc

Assuming domain--I've not tested on workgroups.

link|improve this answer
feedback

Usually, you have to specifically share the folder over the network.

If you have Administrator rights on the remote computer, you can access fixed disks (not removable ones) through the predefined "administrative shares", named <letter>$. For example:

\\192.168.10.20\f$\MyDir\SubDir\text.doc

Second, the \\<host>\<share>\<path> format is an UNC path. If you really need an URI, it will likely look like this:

file://192.168.10.20/f$/MyDir/SubDir/text.doc

or:

smb://192.168.10.20/f$/MyDir/SubDir/text.doc
link|improve this answer
feedback

For UNC: If you create a share from MyDir, omit the drive letter when accessing it remotely: \ip-address\sharename\subdir...

To use the administrative F$ share, be sure to use (remote computername)\administrator as the login (or it will try and fail to use the local admin token)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.