A while after installing a new copy of Vista or Windows 7, I usually want to be able to access the administrative shares (like C$, Admin$, IPC$, etc).
On Windows 7 and Vista, those are by default not enabled.
To enable them, import this enable-windows-7-vista-server-2008-administrative-shares.reg file into the registry:
Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System] "LocalAccountTokenFilterPolicy"=dword:00000001
You need to reboot your system once after this registry change.
Or from a batch file as Administrator:
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" /v "LocalAccountTokenFilterPolicy" /t REG_DWORD /d 0 /f
Later I name the files like this:
enable.windows-vista-and-up.administrative-shares.bat
enable.windows-vista-and-up.administrative-shares.reg
–jeroen
via [WayBack] How to access Administrative Shares on Vista C$ | PaulSpoerry.com





