I'm trying to create a user using pyad, what I have working is: ou = pyad.adcontainer.ADContainer.from_dn('OU=Employees,DC=lan,DC=company,DC=com') name = ("doe john") newUser = pyad.aduser.ADUser.create(name, ou, password="password") However if I try and make the name to be doe, john (has a comma in it now): ou = pyad.adcontainer.ADContainer.from_dn('OU=Employees,DC=lan,DC=company,DC=com') name = ("doe, john") [...] read more