How to do a VAIT Access Control
ticket example of this:
[#8482] VAIT Access Control info - 19th Sept | ARAG
This is done on an annual basis.
Best way to do this is via PowerShell using the following command:
You will need to change the OU for each DC you want to connect to. Once you have got this information, You can just copy and paste in what you need from the CSV into your document. You can view the ticket at the top of this for more examples on how to make it look once you have the CSV.
Below is the PowerShell script you will be able to use to get the information required. For each country you will just need to change the DC to the relevant country.
# Specify the distinguished name (DN) of the OU you want to retrieve users from
$ouDN = "OU=Service Accounts,OU=Administration,OU=ARAG UK,DC=AD,DC=ARAG,DC=CO,DC=UK" # Replace with the actual OU DN
$output = "C:\Users\YourUsername\Documents\TechnicalUsers.csv"
# Get all users in the specified OU
$usersInOU = Get-ADUser -Filter * -SearchBase $ouDN
# Display the user information
$usersInOU | Select-Object -Property Name | sort Name | export-csv $output -NoTypeInformation