About Me

My photo
HANUMANGARH, RAJASTHAN, India

Wednesday, 6 September 2023

Get user count from OU

 $allou = "DC=domain,DC=com"

$User = get-aduser -filter * -SearchBase $allou -SearchScope Subtree | Select @{Name="OU";Expression={$_.distinguishedName -match "cn=.*?,OU=(?<OU>.*)" | Out-Null;$Matches.OU}}

$User | Group -Property OU | Select Name,Count

Extract Disk Info from Remote host

 # Define the remote hostname or IP address $remoteHost = Get-Content "C:\temp\RemoteServer.txt" # Define the output CSV file path...