views:

122

answers:

2

Hi all, What's the UNC path to a folder on my local computer, and how can I access it? I have tried: 1. Security for the folder -- set to Everyone Full Control (for now!) 2. Sharing permissions -- set to Everyone Full Control (for now!)

I can see the folder in \, but can't go in ( is not accessible.) Error message: "You might not have permission to use this network resource. Contact the administrator of this server to find out if you have access pernmissions. The network location cannot be reached. For information about network troubleshooting, see Windows Help."

My computer is not connected to a network.

A: 

If you're going to access your local computer (or any computer) using UNC, you'll need to setup a share. If you haven't already setup a share, you could use the default administrative shares. Example:

\\localhost\c$\my_dir

... accesses a folder called "my_dir" via UNC on your C: drive. By default all the hard drives on your machine are shared with hidden shares like c$, d$, etc.

William Leara
Thanks for your reply William.Does that only work if you are a local administrator?I get 'Windows cannot find '\\localhost\c$\SSRSFileShare'. Check the spelling and try again, or try searching for the item by clicking the Start button and then clicking Search'.I am a 'Debugger User'. (=power user?)
xt_20
\\localhost and \\127.0.0.1 are exactly the same. I suspect that if \\localhost didn't work it was because the MS Loopback adapter wasn't installed. Either should work for you equally well.
William Leara
A: 

Resolved. I had to create a local administrator, then add a Microsoft Loopback adapter (http://support.microsoft.com/kb/839013), then reference the location as \127.0.0.1\SSRSFileShare

xt_20