Question : Keeping and using user profiles from old domain when migrating to a new forest and domain

Is there a way (I think a registry tweak) to have a user use a profile from a old domain after migrating to a new forest and domain?

Users are using a POP3 external mail.  Do not want to have to reconfigure.  

Do not want to copy favorites, desktop, shorcuts, etc.

Answer : Keeping and using user profiles from old domain when migrating to a new forest and domain


SELECT
Asset.AssetId,
Asset.SerialNo,
MachineType.MachineTypeId,
MachineType.Description AS TypeDesc,
MachineModel.MachineModelId,
MachineModel.Description AS ModelDesc,
x.MovementDate, x.StoreName
FROM Asset
INNER JOIN Machine ON Asset.MachineId = Machine.MachineId
INNER JOIN MachineModel ON Machine.MachineModelId = MachineModel.MachineModelId
INNER JOIN MachineType ON Machine.MachineTypeId = MachineType.MachineTypeId
CROSS APPLY
(
SELECT MAX(MovementDate) MovementDate, MAX(StoreName) StoreName
FROM Store s
JOIN Movement m ON s.StoreID = m.StoreID
WHERE Asset.AssetID = m.AssetID
)x
WHERE Asset.Active = 1
Random Solutions  
 
programming4us programming4us