Windows Server 2008 r2 Standard cannot access Local Network

arman de castro 1 Reputation point
2022-07-25T10:06:50.537+00:00

This is the scenario my Windows Server 2008 r2 Standart was set as AD controller but no COMPUTER Registered on AD :) error 0x80070035 errors I cannot access any PC on that Network why?

!224268-noaccess.png

Windows for business | Windows Server | User experience | Other
0 comments No comments
{count} votes

2 answers

Sort by: Most helpful
  1. Anonymous
    2022-07-25T15:03:12.15+00:00

    Please run;

    Dcdiag /v /c /d /e /s:%computername% >C:\dcdiag.log
    repadmin /showrepl >C:\repl.txt
    ipconfig /all > C:\dc1.txt
    ipconfig /all > C:\dc2.txt
    ipconfig /all > C:\dc3.txt
    ipconfig /all > C:\problemworkstation.txt

    then put unzipped text files up on OneDrive and share a link.


  2. Limitless Technology 39,926 Reputation points
    2022-07-26T15:42:44.23+00:00

    Hello,

    If your computers are Windows 10 or higher they have disabled by default the network protocol SMBv1 due to different security vulnerabilities of the protocol.

    First you will need to Disable SMBv1 on the server, using the next Powershell cmdlet with elevation:

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

    Then you will need to enable SMBv2 both as Server and Client of services for the 2008R2 machine:

    1. From powershell:
      Set-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Services\LanmanServer\Parameters" SMB2 -Type DWORD -Value 1 –Force
    2. Continue with the next actions in elevated DOS promtp:
      sc.exe config lanmanworkstation depend= bowser/mrxsmb10/mrxsmb20/nsi
      sc.exe config mrxsmb20 start= auto

    ----------------------------------------------------------------------------------------------------------------------------------------------------

    --If the reply is helpful, please Upvote and Accept as answer--

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.