Scenarios Active directory account passwords expire set (for example, every 90 days) in most of the organizations. Configuring an AD account with Password Never Expires is not recommended due to security. I came across the scenario to extend an active Read More …
Category: Active Directory
Microsoft Active Directory
AD Computer Account Bulk Import
There is small script to import Active Directory Computer account in bulk using CSV file. Import-Module ActiveDirectory $CSV='[PATH]\Computers.csv’ $OU=’OU=Proctor,OU=Workstations,DC=domain,DC=local’ Import-Csv -Path c:\Computer.csv | ForEach-Object { New-ADComputer -Name $_.ComputerAccount -Path $OU -Enabled $False} Sample CSV File
Changing the Certificate on ADFS 3.0 and Web Application Proxy (WAP)
As with all systems using certificates for security, there comes a time when the certificate is expiring and needs to be replaced. here’s the procedure for ADFS 3.0 and WAP: Starting with the ADFS server: Log onto the ADFS server. Read More …
Information about Active Directory
Microsoft Active Directory Related Information’s Active Directory (AD) is a directory service created by Microsoft for Windows domain networks. It is included in most Windows Server operating systems. Server computers that run Active Directory are called domain controllers.Active Directory provides Read More …
Active Directory Health Check Script
Active Directory Health Check Script (Batch) How do you know the health status of your Active Directory? Till the time of user complaints about any issues related to Active Directory System Administrator’s don’t care about the health of any services, Read More …