20
12
Considering I have admin access to a machine, how can I remotely access the default C$ share in Windows XP and Windows 7?
Edit: This is not a domain, it's a single machine that I need to access
20
12
Considering I have admin access to a machine, how can I remotely access the default C$ share in Windows XP and Windows 7?
Edit: This is not a domain, it's a single machine that I need to access
24
There are a few concerns to keep in mind:
$
are invisible and will not be sent in listings of shares. Instead, you must specify the path directly: \\MachineName\c$\
.I'll check about points 1 and 2. Thanks – jyz – 2011-08-26T21:47:34.703
7
I had the same issue on Windows 7 and this solved it:
1. Go to: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System
2. Create a DWORD value called LocalAccountTokenFilterPolicy and assign it a value of 1
3. Restart "Server" service or reboot the machine
You can also run this command from elevated cmd and than continue to step 3:
REG ADD HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System /v LocalAccountTokenFilterPolicy /t REG_DWORD /d 1
Credit to wibier.me
Please update your question with "Note: You only need to do this on Windows 8 and higher versions". The question is from 5 years ago, and mostly related to Windows Xp and 7. The OP had no Idea how to access C$. – NetwOrchestration – 2016-12-09T00:53:22.413
I did it on Windows 7 and it worked for me. Anyway I edited the answer and mentioned that I did it on Windows 7. – E235 – 2016-12-09T08:22:27.567
7
If you are not in a Domain: UAC will prevent remote access to administrative shares.
Options:
Read more here https://4sysops.com/archives/access-denied-to-administrative-admin-shares-in-windows-8/
or google for "remote uac administrative share"
6
I've never had any problems doing this in the past, but there are a few things you could check:
Hopefully some of that helps.
It took me over three hours for to figure out. Was stuck and who would say that disabling simple file sharing done it. As always windows is so intuitive... – IGRACH – 2016-10-08T20:10:54.730
I've only tried when they are in the same domain, and trying to login with a local user. This doesn't work, but I have to try with this scenario you proposed.. thanks – jyz – 2011-08-26T20:41:02.610
4
Yes, if you have admin rights you just have to use the UNC path to the machine - \\machinename\c$ or even \\IPAddress\c$.
3
Most likely, yes... barring any firewall or security policies (user rights assignments or security options) preventing it.
I always get "Access Denied", even with correct password. Seems that Windows doesn't allow remote access to administrative shares, not sure... – jyz – 2011-08-26T19:08:02.953
1
If your system is not a member of a domain (which you state it isn't) and the user account you are logged into your local system does not exist on the system you are attempting to connect to you may have to put in user credentials like this:
\\machinename\c$ /user:machinename\user
(where the 'user' account exists on the 'machinename').
Yes I'm trying with that.. – jyz – 2011-08-26T21:48:22.613
1
You will not be able to browse to the share. Shares that end with a $ are hidden in explorer, even if you have the "Show hidden files" and "Show protected operating system files" options enabled. You have to type the name directly into the address bar to see the share.
1Are you asking if you can or how you can? – joeqwerty – 2011-08-26T19:06:49.617
I got ahead of myself. Are the machines on a domain? Do you have admin rights on the domain, or on the individual machines? Are you being prompted for credentials? – Christopher – 2011-08-26T19:11:24.620
Are you typing credentials as machinename\adminaccount and then entering password? – Christopher – 2011-08-26T19:15:16.317
1Yes, exactly. Does the remote computer user I'm trying to access should exist on my local machine? – jyz – 2011-08-26T19:17:23.837