How to resolve DNS issues

Question

How to resolve DNS issues of a clients windows 10, with VPN and without VPN. Client expecting 100% compliance rate.

Answers ( 2 )

    0
    2020-05-06T21:42:49+05:30

    Hi,

    This question is not exactly related to SCCM. If you want to know whether all domain objects are properly assigned with DNS entry then fetch all computer objects from AD using powershell AD module then there is column with the name of DNS and compare this value based on your sccm data.

    https://gallery.technet.microsoft.com/FetchADComputersReports-9f7f24f7

    PS Script to fetch the computer object from AD

    Get-ADComputer -Filter * -Property * |
    Select-Object Name,IPV4Address,DNSHostName,Enabled,CanonicalName,OperatingSystem,OperatingSystemServicePack,OperatingSystemVersion,whenCreated,whenChanged,PasswordLastSet,lastLogonDate |
    Export-CSV $AD_Computers -NoTypeInformation
    (Get-Content $AD_Computers ) | foreach {$_ -replace ‘”‘} | Set-Content “C:\Temp\AD_Computers.csv”

    Thanks
    Karthikeyan.

    Best answer
    0
    2020-05-06T18:49:20+05:30

    What’s the context of the issue?

Leave an answer

Sorry, you do not have permission to answer to this question .