How to collect all the logs that are scattered in different locations
We have a PowerShell script available that can be used to retrieve all of the Active Administrator logs to a single .zip file.
The script is called
Get-ActiveAdministratorLogs.ps1 and should be run as follows:
--- Start PowerShell ---
Get-ActiveAdministratorLogs.ps1 -OutFile "OutputFileName"
--- End PowerShell ---
This will gather all of the logs and place them in a .zip file named "OutputFileName" (You can customise the file name) in the directory where the script was run.
Note that this script must be run by an account that has access to all of the logfile directories. Preferably, this would be the foundation service account or a domain admin account.
Script attached