Active Directory

PowerShell Script to Browse and Export Active Directory Security Groups

PowerShell Script to Browse and Export Active Directory Security Groups

Managing Active Directory (AD) security groups is a core task for administrators. This PowerShell script provides a user-friendly way to browse AD security groups, display additional options, and export group details to a file. Before using the script, make sure you have the necessary prerequisites in place. Prerequisites To successfully run this script, ensure the […]

Export Active Directory User Information to CSV Using PowerShell

Export Active Directory User Information to CSV Using PowerShell

Introduction For administrators working with Active Directory, exporting user information to a CSV file can be a powerful way to gather and analyze data. Using PowerShell, you can perform an LDAP search to retrieve details such as usernames, email addresses, last logon times, and more. Here’s a PowerShell script that defines a search filter, specifies […]

Identifying Users Not in a Specific Active Directory Group with PowerShell

Identifying Users Not in a Specific Active Directory Group with PowerShell

Introduction Managing Active Directory (AD) groups is an essential task for IT administrators, especially in large organizations. Ensuring that users are in the correct security groups can be a time-consuming task. This blog post will walk you through a PowerShell script that automates the process of identifying users who are not members of a specific […]

Browsing and Exporting Active Directory Security Groups with PowerShell

Browsing and Exporting Active Directory Security Groups with PowerShell

Managing Active Directory (AD) security groups is a critical task for IT administrators. These groups play a significant role in managing permissions and access control within an organization. This blog post provides a detailed walkthrough of a PowerShell script designed to help you browse and export Active Directory security groups effectively. We’ll discuss the script’s […]

Fixing a Broken Connection to Active Directory

Fixing a Broken Connection to Active Directory

Active Directory (AD) is the name of Microsoft’s proprietary directory service. It is used in corporate environments and utilizes a Windows Server operating system. Active Directory enables network administrators to manage the permissions of users and their access to network resources. The client computers used in an AD environment will normally be running a version […]

How to Restore Active Directory Object

How to Restore Active Directory Object

Have you ever been in a position where someone has deleted something that they shouldn’t have done in Active Directory and you desperately need to restore it? Well you can go through your backups and look at restoring that way, but there is a much simplier way to restore any Active Directory object. For having […]

ADRestore

ADRestore

ADRestore is an Active Directory tool to allow you to restore objects that may have been deleted from your system. Download To download, simply scroll down towards the bottom of this page and you will see the options for this download. Ensure you select the correct one and click the blue Download button as detailed […]

Get OU Distinguished Name

Get OU Distinguished Name

There are many reasons as to why you would need to identify an Active Directory Organisational Unit’s Distinguished Name. Most techies out there will use an AD distinguished name when writing or using PowerShell scripts. However, quickly finding what the Distinguished name of a particular OU is not immediately clear. You can click on the […]

SQL Query to find members of an Active Directory Security Group

SQL Query to find members of an Active Directory Security Group

We recently helped out with a data migration which included creating a completely new set of Active Directory security groups. They wanted all the members to have the same level of access but wanted all the new security groups to have a matching standard. So we needed to create all the new security groups and […]

Powershell – Export all Active Directory User Information to CSV

Powershell – Export all Active Directory User Information to CSV

If you need to export all Active Directory user information to CSV, then you can use a simple Powershell script to carry this out. First Import the Active Directory module: Then get the user information from Active Directory. For the example below we are just going to grab all information, hence the * wildcard, but […]

Scroll to top