Windows 10: USMT 10 - issues with profile when migrating from Win7 to Win10

Discus and support USMT 10 - issues with profile when migrating from Win7 to Win10 in Windows 10 Installation and Upgrade to solve the problem; Hello, Has anyone used USMT 10 to migrate from Win7 to Win10? I have used USMT successfully in the past to move WinXP (32-bit) to Win7 Pro... Discussion in 'Windows 10 Installation and Upgrade' started by mike908, May 1, 2016.

  1. mike908 Win User

    USMT 10 - issues with profile when migrating from Win7 to Win10


    Hello,

    Has anyone used USMT 10 to migrate from Win7 to Win10?


    I have used USMT successfully in the past to move WinXP (32-bit) to Win7 Pro (64-bit). I downloaded the new ADK to get the v10 tools. I now have USMT 10 and was practicing the migration of Win7 Pro 64-bit users to Win10 Enterprise 64-bit. Just for completeness, I also tried Win7 Enterprise 64-bit -> USMT -> Win10 Enterprise 64-bit. The results were the same.

    I have used the original MIG XML files previously and they did what I needed, so I intended to do the same here. My XML files are unmodified at this point, but I tried with a few modifications aimed at not bringing over Start Menu (shared & user specific) *.LNK files.I have had this failure with both the "no LNK files" and stock XML versions. I tested and the migration logs (scanstate and loadstate) both claim no error in the migration process. Reviewing the logs I see no critical errors or warnings.

    The problem is that following the migration, the profiles that were migrated cannot use Start Menu, Cortana/Search, Notification Area (Action Center), or right click any icon pinned to the Taskbar. SearchUI.exe appears to not be running when I review Task Manager -> Details. Cortana is not listed under Processes.

    A new user - someone who logs on without a migrated profile - is created properly and they work normally. Existing users - the tech profile that existed prior to the migration - work fine. It is only a failure within the migrated profiles. I have tried the suggested Start Menu repair actions (the Get-AppXPackage / AppXManifest.xml process) and multiple other suggestions. Nothing seems to repair this, and since I can create a new profile successfully or use a non-migrated existing profile, I have to believe it's a flaw in what I'm doing with USMT.


    My scanstate script is: scanstate.exe \\system\migration_folder /i:migapp.xml /i:migdocs.xml /o /uel:90 /l:C:\scanstate.log /v:13

    My loadstate script is: loadstate.exe \\system\migration_folder /i:migapp.xml /i:c:\intel\usmtfiles\miguser.xml /l:C:\loadstatelog /v:13

    :)
     
    mike908, May 1, 2016
    #1

  2. USMT windows 10 Office 2016

    Has anyone successfully managed to use USMT to migrate to Windows 10 (Office 2016) from previous OS and Office client and have the mail profile reattach?

    I have tested on my lab and everything is migrating as expected from Win7 Office 2010 to Win10 Office 2016 but the mail profile is not present on the Win10 machine. Using the latest version of the advanced deployment toolkit.
     
    Craig Smollet, May 1, 2016
    #2
  3. USMT

    Can USMT be used to migrate user profiles from windows 7 and up to a domain(server 2012 r2)?
     
    scottieallen, May 1, 2016
    #3
  4. John035 Win User

    USMT 10 - issues with profile when migrating from Win7 to Win10

    It's out of the box I was thinking in.
     
    John035, May 5, 2016
    #4
  5. I am having the same issue with Windows 7 to Windows 10 USMT. Have been cracking away at this for a couple days. Will let you know if I find anything.
     
    Keyboard Jockey, May 5, 2016
    #5
  6. Hey Mike,
    I found that my problem was from using the CopyProfile function in sysprep. Without CopyProfile, USMT works just fine. Thanks Microsoft...

    For the USMT functionality I would recommend adding a couple things.

    1. Generate a Config File to customize the settings being moved:scanstate.exe /i:MigUser.xml /i:MigApp.xml /genconfig:Config.xml
    - Edit the Config.xml to your liking. I would Exclude any Startmenu / Taskbar settings.

    2. Add this line to your script right before the scanstate line. It will skip missing profiles which can save a lot of time.
    SET MIG_IGNORE_PROFILE_MISSING=1

    3. Add a second layer of logging so that you have a more granular output. Here is what I use:
    scanstate.exe %USMTDEST% /localonly /i:Miguser.xml /i:MigApp.xml /config:config.xml /progress:scanstate_progress.log /l:scanstate.log /efs:copyraw /o /c /v:13 /UEL:30


    4. Lastly for redundancy, I like to check the mig file to make sure it is not corrupt.
    usmtutils.exe /verify:Summary "USMT.mig" /l:"Integrity_Check.log"
     
    Keyboard Jockey, May 16, 2016
    #6
  7. mike908 Win User
    Hi Keyboard Jockey,
    I think I reached the same conclusion when my coworkers and I started brainstorming about Sysprep as the issue not USMT. Unfortunately, you're confirming what I just saw in test earlier this morning.

    I was thinking that in Win7 to Win10 moves, it would be best to start clean and I would have the user logon, let the profile build fresh, then copy data from Win7 (old machine) to Win10 (new machine). That would preserve the default profile settings we pre-supply as part of our imaging.

    The other option was to drop the CopyProfile portion of the process like you did and then use USMT. Since you are doing that, I am curious how you handle customizations, especially Start Menu customizations.

    We had a nice Start Menu config with our key applications pinned in logical groups. Losing that is not a deal breaker, but having the core applications pinned was well received by our test/pilot users. From a callback standpoint, I'd hate to lose the ability to customize our default profile.

    I don't see how this got past MS quality assurance testing; enterprise customers shouldn't have to sacrifice using custom default profiles or the USMT tool.

    Thanks,
    Mike
     
    mike908, May 16, 2016
    #7
  8. USMT 10 - issues with profile when migrating from Win7 to Win10

    Luckily Microsoft has given us Import / Export functionality for customizing the default profile post image. Here is what I am using:
    Note that I just found the CopyProfile piece and have not completely tested. Will get back to you after final testing.

    Export Start menu and Default App associations from a pre-configured computer:
    Export-StartLayout -Path C:\tmp\start.xml

    Dism /Online /Export-DefaultAppAssociations:%~dp0Defaultapps.xml

    Then Import them back:
    Import-StartLayout -LayoutPath C:\Temp\start.xml -MountPath $env:SystemDrive\
    Dism.exe /online /Import-DefaultAppAssociations:%~dp0Defaultapps.xml

    I bundle the import functions with the ManageTaskbar customizer:
    TechNet Manage the taskbar / remove the Edge icon for new users
     
    Keyboard Jockey, May 16, 2016
    #8
  9. Keyboard Jockey, May 19, 2016
    #9
  10. mike908 Win User
    Thank you Keyboard Jockey. I see USMT in the list of fixes for the March 1st 10586.122 build. We are currently using build 10586.218 (April 12) so I was wondering if you had already injected the March 1st & March 8th updates into your master image before this test.
     
    mike908, Apr 4, 2018
    #10
Thema:

USMT 10 - issues with profile when migrating from Win7 to Win10

Loading...
  1. USMT 10 - issues with profile when migrating from Win7 to Win10 - Similar Threads - USMT issues profile

  2. Migrate from domain profile to local profile

    in Windows 10 Software and Apps
    Migrate from domain profile to local profile: Here is my situation, I had a Windows server set up in my house with PCs connected to it on my network. I took the server out of operation a few years ago but have been logging into my PCs with the same accounts with no issues. A few days ago I wanted to change the password...
  3. Migrating a Win7 install to a pc with Win10 preinstalled?

    in Windows 10 Ask Insider
    Migrating a Win7 install to a pc with Win10 preinstalled?: Hello, What's the best way to migrate everything (softwares, etc) from an old computer with Win7 to a new computer with Win10? I could clone but then I'd lose Win10 I can't upgrade from 7 to 10 because the OS is already installed on the target computer I could drag and drop...
  4. upgrading from win7 to win10

    in Windows 10 Installation and Upgrade
    upgrading from win7 to win10: I can't find HP ProtectTools Device Access Manager to uninstall. https://answers.microsoft.com/en-us/windows/forum/all/upgrading-from-win7-to-win10/f289a046-d68b-471b-8f6f-de8ed5ccafa6
  5. Errors when upgrading from Win7 to Win10

    in Windows 10 Installation and Upgrade
    Errors when upgrading from Win7 to Win10: Hello, I'm trying to upgrade my Win7 OS to Win10. I have launched the MediaCreationTool1903. I end up with an error REPLICATE_OC in the phase SAFE_OS. 0x8007001F - 0x20006. I have noticed the CBS.log file contained some errors like: Error CBS Failed...
  6. Migrating a Win10 User profile to a new acxount

    in Windows 10 Customization
    Migrating a Win10 User profile to a new acxount: So here is my question. A user has changed her surname and due to other issues i have had to creat her a new AD account. I want to copy the whole contents of her user profile C:\Windows\users\••••• and then move it ti the new account, what is the easiest process to complete...
  7. USMT - Moving profile from windows 10 to windows 10

    in Windows 10 Network and Sharing
    USMT - Moving profile from windows 10 to windows 10: I am trying to move my profile from one windows 10 machine to another on my work domain. Below are the commands i am using. scanstate u:\ /o /ue:*\* /ui:IT01\tsatech /i:migdocs.xml /i:migapp.xml loadstate u:\ /mu:IT01\tsatech:IT97\tsatech /i:migdocs.xml /i:migapp.xml...
  8. win7 profile to win10 a journey ..

    in User Accounts and Family Safety
    win7 profile to win10 a journey ..: I've had a fun week, amusing a upgrade off a 3 year old sluggish win7 I thought a clean install of win 10 would be better. So I made a new profile, copied the old profile over into a temp folder ran a take ownership thing over the old profile, made a temp admin profile copied...
  9. USMT: Migration from two to one partition

    in Windows 10 Installation and Upgrade
    USMT: Migration from two to one partition: Hello, during the migration from Windows 7 to Windows 10 we want to move from 2 partitions to 1 partitions. On the external partition (E Drive) we have set the folder redirection for the user libraries. The E Drive is also used to store user data. Now we have folders...
  10. Migrated Win7 to SSD will not upgrade to Win10

    in Windows 10 Installation and Upgrade
    Migrated Win7 to SSD will not upgrade to Win10: Using an Asus CM8730 desktop with Win7. Purchased a Samsung Evo 850 SSD and used Samsung Migration software to move Win7 to the SSD from the HD that came from the computer. All went well, the computer boots very fast from the SSD. After about a month of use I decided to...

Users found this page by searching for:

  1. usmt migrating from office 2010 to office 2016

    ,
  2. usmt issues

    ,
  3. windows user profile upgrade from win7 to win10

    ,
  4. USMT generate config.xml