Using the Set-AdUser cmdlet in PowerShell to set the home directory folder path.
Set-ADUser -Identity Arons -HomeDirectory 'D:\Arons'
Get-Aduser -Identity Arons -Properties * | Select SamAccountName,HomeDirectory,HomeDrive,ProfilePath
Install CIFS yum install cifs-utils -y mount -t cifs -o username=USER,password=PASSWORD,workgroup=GROUP/AD,file_mode=0777,dir_mode=0777 //P...