Well, I solved it, and that is pretty good too. This solution is only for windows, I'm afraid, because it uses the pywin32 module (although under python-ldap you have modrdn, so you can solve it there too)
Ok Here's how to move user "jimboface" to OU "happyland"
import active_directory user = active_directory.find_user("jimboface") destination_ou = active_directory.find_ou("happyland") destination_ou.com_object.MoveHere(str(user.as_string()), str(user.Name))
Moments like this remind me why I love this language. Hope this helps someone!
source share