Hello Everyone,
i'm trying to apply specific settings to the windows deployment task sequence, where I need all the users profiles and data to be stored on the D drive not the C.
through my research I found a couple of commands that alter the Reg Keys that are responsible for the location of the new profile location but something is wrong after OSD is done when I try to login with any domain credentials it tells me logon service unavailable.
I added the following "RunCommand" Tasks after Setup Windows and Configuration Manager
2- reg add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileList" /v ProfilesDirectory /t REG_EXPAND_SZ /d "D:\Users" /f
3- reg add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileList" /v Default /t REG_EXPAND_SZ /d "D:\Users\Default" /f
4- reg add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileList" /v Public /t REG_EXPAND_SZ /d "D:\Users\Public" /f