Hello, this script is doing everything i want it to, creating a new user locally if none is found when logging in via LDAP, but whenever a user logs in it gets pointed to the directory of the newly created folder for each user, instead of the User directory my Lua is pointing to (When checking in User>Directory its pointing to D:/Test but still only shows in the folder for each user - im running 7.4.2
local strDomain = "%Domain"
local strRootDir = "D:/Test"
local strADUser = "%Name"
local strLocalUser = "local_".."%Name"
local strMapping = c_GetOptionStr(strDomain,DOPTION_ADUSER_MAPPING_STR)
if not string.find(strMapping, "%Name"..":", 0, true) then
if c_UserExist(strDomain,strLocalUser) == false then
local strPassword = md5( (c_GetTimeUS() + c_GetRandom())..c_GetServerID().."mypassword" )
c_AddUser(strDomain,strLocalUser, strPassword, 63, 1, 1)
c_AddUserDirectory(strDomain,strLocalUser, strRootDir.., "/", true, true, true, true, true, true, false, false, false, true, false, false)
c_MkDir(strRootDir.."/"..strADUser)
local user = c_GetUser(strDomain, strLocalUser)
if user ~= nil then
user.oldpassword = user.password
user.enable_two_factor = 1
AddUser(strDomain, user)
end
end
c_SetOptionStr(strDomain,DOPTION_LDAP_MAPPING_STR,strMapping.."\r\n"..strADUser..":"..strLocalUser)
end
User gets pointed to another folder than my userDirectory
-
- Posts: 3
- Joined: Mon Feb 03, 2025 9:58 am
-
- Site Admin
- Posts: 2120
- Joined: Tue Sep 29, 2009 6:09 am
Re: User gets pointed to another folder than my userDirectory
Your code is not correct in the line: c_AddUserDirectory(...)
It should be: c_AddUserDirectory(strDomain,strLocalUser, strRootDir.."/"..strADUser, "/", true, true, true, true, true, true, false, false, false, true, false, false)
It should be: c_AddUserDirectory(strDomain,strLocalUser, strRootDir.."/"..strADUser, "/", true, true, true, true, true, true, false, false, false, true, false, false)