Posted On March 31, 2019

Quick 1-Liner to List Domain Controllers and ReadOnly Statuses

kimconnect 0 comments
blog.KimConnect.com >> Codes >> Quick 1-Liner to List Domain Controllers and ReadOnly Statuses
PS C:\WINDOWS> Get-ADDomainController -Filter * | select Name,IsReadOnly

Name       IsReadOnly
----       ----------
MONKEY       False
BABOON       False
GIRAFFE      False
LION   FALSE
KIMCONNECT   True
KIMDISCONNECT True
WHAT        True
NOWAY        True
WEBDC01      True
WEBDC02      True
SSO01        True

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

PowerShell: Automating Dynamics CRM Migration

This is the source code that has been used to move hundreds of Dynamics CRM…

PowerShell: Overcome Issues with Error 13932 in SCVMM When Refreshing Virtual Machines

Dealing with Clusters # refreshCluster.ps1 # Function to refresh a cluster in VMM in anticipation…

Arrays and Objects

Array.prototype- Allows additional properties of all array objectsArray.from- Creates a new array from an array-like…