Howard
I read your migration article on your website. VERY IMPRESSING. You are using Perl, and there is a part of code like this
#-----------------------------------------------------------------------------

# Create new key based on new SID by copying OldSID Key.

# Set the binary sid to the correct sid.

#-----------------------------------------------------------------------------

$Key = 'SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileList';

$ProfileKey = $HKLM->Open($Key);

$OldSidKey = $ProfileKey->Open($OldSid);

$OldSidKey->CopyKey($ProfileKey, $NewSid);

$NewSidKey = $ProfileKey->Open($NewSid);

$NewSidKey->SetValues('Sid',®_BINARY,$NewBinarySid);

#-----------------------------------------------------------------------------

I dont understand Perl, but does this code load the profile and change the Sid ?
If it is so, can this be done with kix ?

/Mima