PowerShell: Get Remote Desktop Services User Profile Path from AD.
Bit goofy this, when trying to get profile path information for a user you may think Get-ADUser will provide you anything you would likely see in the dialog in AD Users and Computers, but you would be wrong. Get-ADUser -Identity <username> -Properties * does not yield a 'terminalservicesprofilepath' attribute.
Instead you must do the following:
([ADSI]"LDAP://").terminalservicesprofilepath
You can use Get-ADUser to retrieve the DN for a user or any other method you prefer.