Tenaka

Feb 12, 20201 min

Disable Admin Shares

<#
 
.Synopsis
 
Disable Admin Shares

.Description

Disable Admin Shares C$, IPC$, ADMIN$ to prevent remote access and local access via \\127.0.0.1\c$ from a browser, shortcut or cmd.


 

Disabling admin shares will prevent ConfigMgr from deploying the client agent and remote administrative access.

.Version

#>

#AutoShareWks
 
New-ItemProperty -Path 'HKLM:\System\CurrentControlSet\Services\LanmanServer\Parameters' -name AutoShareWks -PropertyType DWORD -Value 0

#AutoShareServer
 
New-ItemProperty -Path 'HKLM:\System\CurrentControlSet\Services\LanmanServer\Parameters' -name AutoShareServer -PropertyType DWORD -Value 0

    40
    0