From what I've seen in vbscripts, moving a user is pretty simple...Here is one of the example scripts converted to kix.

 Code:
Dim $objNewOU,$objOldOU,$filter[0],$objUser

$objNewOU = GetObject("LDAP://ou=finance,dc=fabrikam,dc=com")
$objOldOU = GetObject("LDAP://ou=accounting,dc=fabrikam,dc=com")

$filter[0] = "User"
$objOldOU.Filter = $filter

For Each $objUser in $objOldOU
   If $objUser.class = "User"
       $objNewOU.MoveHere($objUser.ADsPath,"")
   Endif
Next