For all DC's, gather path locations to Sysvol, NTDS.dit and AD logs

For a given domain, I have this code to gather up all of my DC’s:

Get-ADComputer -LDAPFilter "(&(objectCategory=computer)(userAccountControl:1.2.840.113556.1.4.803:=8192))" | ForEach-Object {
    "Processing $($_.DNSHostName) ..." }

…how can I use this array to output to csv the paths to:
Sysvol
ntds.dit
AD logs

Thank you

Not sure what you’re really looking for… The sysvol folder is in the same place on each domain controller as is the ntds.dit file. Take a look at the solution on this post: Where does NTDS.DIT is stored
For the record, you can get the domain controllers a little easier:

Get-ADDomainController -Server domain.local -Filter *

Charles, sorry for the late reply…Thank you for your response and the optimized one-liner.