Answered SkipUserData too broad

  • Thursday, December 06, 2012 8:08 PM
     
     

    In MDT 2012 Update 1, there is a new wizard page: Move Data and Settings. We want to use this page, but not the User Data (Restore) page. However, the SkipUserData property controls the appearance of both pages; it seems you can either show both pages or hide both pages.

    Have I missed something? Is there a relatively simple way to show the Move Data and Settings page without showing the User Data (Restore) page?

All Replies

  • Thursday, December 06, 2012 10:51 PM
     
     Answered

    There are a couple of ways you could go about this. I'll just detail the easiest one here though:

    Fire up \scripts\DeployWiz_Definition_ENU.xml

    Scroll down to the section that begins with <Pane id="OfflineUserData" reference="DeployWiz_OfflineData.xml">

    And either delete the words "UCase(Property("SkipUserData"))<>"YES" and " or else just change the variable to something else - such as "SkipUserData" so you can still control it if you like.

    Hope this helps

    • Marked As Answer by David Trimboli Friday, December 07, 2012 3:13 PM
    •  
  • Friday, December 07, 2012 3:02 PM
     
     

    so you want to backup and never restore data ?

    if so I would suggest to use a default value for UserDataLocation/UDDIR/UDSHARE and keep SkipUserData, that would prevent you from modifying native MDT files that could be overwritten at the next MDT update.


    David Sebban | Nelite North America | My Blog | Follow me on twitter : @davidsebban

  • Friday, December 07, 2012 3:11 PM
     
     
    No, I want to show the option not to format the drive or to keep existing user data in the refresh scenario, not to transfer user settings in the replace scenario. We use roaming profiles and never use the replace scenario, but occasionally refreshing without reformatting would be helpful.
  • Friday, December 07, 2012 3:13 PM
     
     
    Perfect! Thanks!