Erro 0x80070035 quando acessa o compartilhamento

Após a atualização Fall Update do Windows 10 os usuários que tentam acessar um compartilhamento de rede baseado no protocolo SMBv1 recebera uma das seguintes mensagem de erro abaixo:

Ativando/Desativando SMBv1 & SMBv2 – SMBv3

Windows Server 2012 R2 & 2016:

SMBv1

Detectando: Get-WindowsFeature FS-SMB1
Ativando: Enable-WindowsOptionalFeature -Online -FeatureName smb1protocol
Desativando:  Disable-WindowsOptionalFeature -Online -FeatureName smb1protocol

SMB v2/v3 (listing these just in case)

Detectando: Get-SmbServerConfiguration | Select EnableSMB2Protocol
Ativando: Set-SmbServerConfiguration -EnableSMB2Protocol $true
Desativando:  Set-SmbServerConfiguration -EnableSMB2Protocol $false

Windows 8.1 and Windows 10:

SMBv1

Detectando: Get-WindowsOptionalFeatureOnlineFeatureName SMB1Protocol
Ativando
: Enable-WindowsOptionalFeature -Online -FeatureName SMB1Protocol
Desativando
Disable-WindowsOptionalFeature -Online -FeatureName SMB1Protocol

SMB v2/v3 (listando estes apenas no caso)

Detectando: Get-SmbServerConfiguration | Select EnableSMB2Protocol
Ativando
: Set-SmbServerConfigurationEnableSMB2Protocol $true
Desativando
: Set-SmbServerConfigurationEnableSMB2Protocol $false

For Windows 7, Windows Server 2008 R2, Windows Vista, and Windows Server 2008

SMBv1

Detectando: Get-Item HKLM:\SYSTEM\CurrentControlSet\Services\LanmanServer\Parameters | ForEach-Object {Get-ItemProperty $_.pspath}
Configuração Padrão= Ativado (Nenhuma chave de registro é criada), portanto, nenhum valor SMB1 será retornado.
Ativando: Set-ItemProperty -Path “HKLM:\SYSTEM\CurrentControlSet\Services\LanmanServer\Parameters” SMB1 -Type DWORD -Value 1 –Force

Você precisa reiniciar o computador depois de efetuar estas alterações.

Desativando: Set-ItemProperty -Path “HKLM:\SYSTEM\CurrentControlSet\Services\LanmanServer\Parameters” SMB1 -Type DWORD -Value 0 –Force

SMB v2/v3 (listando estes apenas no caso)

Detectando: Get-ItemProperty HKLM:\SYSTEM\CurrentControlSet\Services\LanmanServer\Parameters | ForEach-Object {Get-ItemProperty $_.pspath}
Ativando: Set-ItemProperty -Path “HKLM:\SYSTEM\CurrentControlSet\Services\LanmanServer\Parameters” SMB2 -Type DWORD -Value 1 –Force

Você precisa reiniciar o computador depois de efetuar estas alterações.

Desativando: Set-ItemProperty -Path “HKLM:\SYSTEM\CurrentControlSet\Services\LanmanServer\Parameters” SMB2 -Type DWORD -Value 0 –Force

 

Related posts

Microsoft Exchange: Nova vulnerabilidade pode afetar 97.000 servidores

Microsoft Outlook: Especialistas detalham exploits RCE de clique-zero

Windows 11: Microsoft altera a lista oficial de CPUs Intel compatíveis