The Active Directory integrated DNS zone _msdcs.domain.com was not found


Problem:
The Active Directory integrated DNS zone _msdcs.domain.com was not found.

Solution:

  • Create a zone called “_msdcs.domain.com”
  • Make it AD integrated
  • Allow secure only updates and Click Finish
  • Go back into the zone properties
  • Change the replication scope to “All DCs in the Forest”
  • Delete the _msdcs folder under domain.com
  • Run an ipconfig /registerdns
  • stop netlogon
  • start netlogon
  • The SRVs should populate shortly, if they already haven’t

Credit goes to users on TechNet Forums

Check settings on remote computer


@echo off
Srvlist=C:\Temp\Srvlist.txt
Echo Computer Name, Internet Explorer Version >> Result.csv
SET IE_Ver=
For /F “Tokens=*” %%a In (%srvlist%) Do (
Set Comp_name=%%a
Set RegQry=”\%%a\HKLM\Software\Microsoft\Internet Explorer” /v Version
REG.exe Query %RegQry% > CheckCC.txt
Find /i “Version” < CheckCC.txt > StringCheck.txt
FOR /f “Tokens=3” %%b in (CheckCC.txt) DO SET IE_Ver=%%b
Echo %Comp_name, %IE_Ver% >> Result.csv
)

Refer : https://docs.microsoft.com/en-us/troubleshoot/browsers/check-ie-version

Design a site like this with WordPress.com
Get started