0

I need to install Oracle database 11.2 on Windows Server 2008 R2. The prerequisite check requires that the system drive has the default share configured. I applied this command:

net use \\localhost\c$

But I receive error network path not found

What do I do to fix this problem?

jscott
  • 24,484
  • 8
  • 79
  • 100
Hasan
  • 1
  • 1
    Related answer? [Can't connect to default admin share on Windows 2008](http://serverfault.com/questions/38999/cant-connect-to-default-admin-share-on-windows-2008/39101#39101) – jscott Jan 03 '11 at 14:54

1 Answers1

0

You need to use a second "\", as in net view \\localhost.

Even though there's not listing for the admi share of C$, when I run net use v: \\localhost\c$ /persistent:no I get a remapped version of C: on V:

Keith Stokes
  • 927
  • 6
  • 7