Skip to content

Latest commit

 

History

History
58 lines (43 loc) · 1.42 KB

README.md

File metadata and controls

58 lines (43 loc) · 1.42 KB

AD Export Tool

A PowerShell script providing a graphical user interface (GUI) for exporting Active Directory (AD) user data to CSV or Excel formats.

Prerequisites

  • PowerShell 5.1 or higher
  • Active Directory PowerShell module
  • Windows Server: Add-WindowsFeature RSAT-AD-PowerShell
  • Windows 10/11: Add-WindowsCapability -Online -Name "Rsat.ActiveDirectory.DS-LDS.Tools~~~~0.0.1.0"
  • Excel installed for COM Object if exporting to Excel

Configuration

Create a config.json file in the same directory as the script with the following structure:

{
    "DC": [
        "domain-controller1.domain.com",
        "domain-controller2.domain.com"
    ]
}

Features

  • Export AD user data to CSV or Excel formats
  • Customizable property selection for export
  • Multiple domain controller support
  • Flexible export options and formatting
  • Batch search functionality for multiple users

Usage

  1. Configure domain controllers in config.json
  2. Run the script:
.\ADTool.ps1
  1. For batch search, create a text file with one username per line:

Both SAMAccountName (jsmith) and UserPrincipalName ([email protected]) formats are supported.

Notes

  • The script creates a log file (ADExport.log) for troubleshooting
  • Failed batch exports are logged separately
  • Supports both single and batch user exports
  • Export formats: Excel (.xlsx) and CSV (.csv)