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.
solved
0
Configuration Manager
9 months
2 Answers
177 views
Beginner 0
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Answers ( 2 )
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.
What’s the context of the issue?