list all user profile paths ad

IS it possible to create a list of alle users in AD and where there profiles are saved?

#Select OU
$OU = "domain.name.com/Europe/Users"


#GetDetails
Get-QADUser -Searchroot $ou -IncludedProperties homeDirectory | Select-Object name,homedrive,homedirectory,canonicalname | Out-GridView

certainly is, i used quest commands for this, probably can be done in AD module
this will output to grid, you could also output to file using “out-file”

edit… dependant on how many users you have in your domain you may need the “-resultsize unlimited” switch adding

download here, - https://support.software.dell.com/download-install-detail/5024645

Thank you for the script.

It works great