USMT Migration Questions (Should I use two Config files?)

I am currently running System Center Config Manager at my workplace. We have integrated MDT and are running a UDI on all of our PXE deployments.
I have a ton of MDT Task Sequences that use the UDI and I have started looking into USMT.
Currently we are backing up the data manually before we wish to do a re-install and moving this data back across after the installation is finished, though we wish to streamline this operation.
We currently back up our data to a local share (\BACKUPNAS\USMT) and once done move the contents of the folder we create back to the desktop and separate our the other files like Docs back to Docs and so forth.
I wish to have a similar setup with USMT. I need to backup the entire drive and then move the entire backup onto %SYSTEMDRIVE% once completed, during this time USMT can happily move docs to docs, videos to videos and so on.
To do this should I split the USMT files into two? One for backing up and one for restoring?

You don't have to split the XML files in two pieces to differentiate between capture and restore. Also, this should get you started:
https://technet.microsoft.com/en-us/library/hh824928.aspx
My Blog: http://www.petervanderwoude.nl/
Follow me on twitter: pvanderwoude

Similar Messages

  • How do I disable Autocomplete using the config files - NOT by using Options Privacy...

    Hi,
    I have around 300 computers around the country which need the Autocomplete feature turning off for forms.
    Obviously it wouldn't be practical to remote onto each machine and change the setting in Options > Privacy > Firefox Will... > Use custom settings for history > Remember search and form history - nor is it practical to use the about:config screen since the address and toolbars are disabled by default to prevent users from browsing to other pages they aren't meant to.
    I was wondering if there was a config file or a registry setting where I can change this setting in the backgorund, that way we can push the config files or a registry tweak out the all machines that would change this setting.
    Any help would be appreciated greatly.
    Dan

    I can see where those answers are going, there must be an easy way to do it using js config files or userChrome.css.though.
    I tried doing an entry in userChrome whereby it hides the autocomplete box by overriding the pages stylesheet but the entry only seemed to work on a per domain basis... however the site that the browsers will be using is an intranet and therefore each PC will have a different URL to go to - making it impractical for masses of machines. Not sure if this can be worked upon to apply to every site?

  • Newbie question: Should I use iDVD o iMovie?

    I use a Sony camcorder with the mini-DV tapes. I have about 20 old tapes I'd like to turn into DVDs. This is my first time using iDVD or iMovie.
    I'd like to keep things simple: Download the movies to my iMac, make a handful of chapter points and burn to DVD.
    Not interested in adding soundtracks, trimming the clips, etc etc. Just keep it simple.
    Each 1 hour tape typically has about 8-12 individual clips of a few minutes each (all video is my little kids). I want to be able to access each clip via an upfront menu selection (like a normal movie DVD).
    Should I use iDVD to do this or iMovie??
    If iDVD, what are some starter tips for me. Thanks!!

    I am trying to download imovie06 but can only find updates? How do I find the actual program
    More info here.
    http://www.macworld.com/article/138476/goodbye_imovie6.html
    http://arstechnica.com/apple/news/2009/01/imovie-hd-fading-into-the-ether-as-app le-removes-download.ars

  • Using Custom Config Files with WinForms

    I have created a new .config file for my application called "MyConfigFile.config" but I do not know how to reference, read or update it. Should I treat it as any other generic XML file?
    Rob E.

    The configuration file should be in the same directory as the application. The name of the configuration file should have the same name as the application with .config at the end. For example, an application called Watcher.exe should have
    a configuration file called Watcher.exe.config.
    To access the appSettings values from inside the program, use the AppSetting property of the ConfigurationSettings class.
    string title = System.Configuration.ConfigurationSettings.AppSettings["Title"];
    Two things should be kept in mind when accessing appSettings from the configuration file.One, the AppSetting could be null. Two, the AppSetting property always returns a string.When getting values from the configuration file, the code needs
    to handle these situations.
    One way to approach this is as follows:
    int AppSetValueMax = 0;
    if (ConfigurationSettings.AppSettings[key] != null)
    try
    AppSetValueMax = Convert.ToInt32(ConfigurationSettings.AppSettings["Max"]);
    catch(Exception e)
    //Exception Handling

  • How to use a config file?

    People,
    i have a basic question. How to extract the contents from a ".config" file?
    I have a config file with few sections and few global variables defined.
    how to extract these data; or how to use this file?
    a sample .config file, that i have is,
    # global variables
    pageTitle = "Main Menu"
    bodyBgColor = #000000
    tableBgColor = #000000
    rowBgColor = #00ff00
    [Customer]
    pageTitle = "Customer Info"
    [Login]
    pageTitle = "Login"
    focus = "username"
    Intro = """This is a value that spans more
    than one line. you must enclose
                   it in triple quotes."""
    # hidden section
    [.Database]
    host=my.domain.com
    db=ADDRESSBOOK
    user=php-user
    pass=foobar
    How would i extract these data; or how to utilize this file first of all?
    - Kumar
    [ [email protected] ]

    Hi Kumar,
    Instead of .config file you can use .properties file. Place the configuration part in that file. Use ResourceBundle class. This class have methods like getResourceString(String key) which reads the .properties file and returns a String as it's Value. I normally use the same. I have written one class for it. C if you can use it. The keys are case sensitive. initialize is a directory in which i am keeping my Config.properties file.
    import java.util.*;
    import java.text.*;
    import java.net.*;
    import javax.swing.*;
    public class ReadConfig
    public static ResourceBundle resources;
    * This is responsible for getting data from Config.properties for setting properties externally.
    static
    try
    resources = ResourceBundle.getBundle("initialize.Config", Locale.getDefault());
    catch (MissingResourceException mre)
    JOptionPane.showMessageDialog(new JFrame(), "initialize/Config.properties not found.\n Please report it to administrator.");
    System.err.println("initialize/Config.properties not found");
    System.exit(1);
    }//static
    public ReadConfig()
    System.out.println(getResourceString("DatabaseName"));
    System.out.println(getResourceString("JDBCDriver"));
    System.out.println(getResourceString("DSN"));
    System.out.println(getResourceString("ConnectionString"));
    }//constructor
    public String[] tokenize(String input)
    Vector v = new Vector();
    StringTokenizer t = new StringTokenizer(input);
    String cmd[];
    while (t.hasMoreTokens())
    v.addElement(t.nextToken());
    cmd = new String[v.size()];
    for (int i = 0; i < cmd.length; i++)
    cmd[i] = (String) v.elementAt(i);
    return cmd;
    * A method takes string as parameter and reference of ResourceBundle.
    * It is used with <b>Resources Bundle</b> i.e. with .properties file.
    * When value of particular string from .properties file has to retrive.
    public String getResourceString(String nm, ResourceBundle resources)
    String str;
    try
    str = resources.getString(nm);
    catch (MissingResourceException mre)
    str = null;
    return str;
    * A method takes string as parameter. It is used with <b>Resources Bundle
    * </b> i.e. with .properties file. When value of particular string from .properties
    * file has to retrive.
    public static String getResourceString(String nm)
    String str;
    try
    str = resources.getString(nm.trim());
    catch (MissingResourceException mre)
    str = null;
    return str;
    }//getResourceString(String nm)
    * This method takes string as parameter and returns corresponding <b>URL</b>.
    * If key is <b>null</b>, then will return <b>null</b>.
    public URL getResource(String key)
    String name = getResourceString(key);
    if (name != null)
    URL url = this.getClass().getResource(name);
    return url;
         return null;
    }//getResource(String key)
    public static void main(String[] args)
    new ReadConfig();
    }//main
    }//class
    Hope this will be helpful to you.
    Kind Regards
    Sandeep

  • I am not able to use two backing files in same portal page

    hi to all
    i am using backing files in remote portlet.
    but i have two portlets in my portal page and in both i need to use backing files. i used seperate backing files for both the portlets but only one works at a time.
    please help me out frnds..
    did this happening because of same object MarkupRequestState.KEY..... following is code that i am using. similar code used for another portlet, just a change of state varible and parameter variable
    am i missing something?
    package backempno;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    import com.bea.netuix.servlets.controls.content.backing.AbstractJspBacking;
    import com.bea.wsrp.ext.holders.MarkupRequestState;
    import com.bea.wsrp.ext.holders.SimpleStateHolder;
    public class sendempno extends AbstractJspBacking
    public boolean preRender(HttpServletRequest request,HttpServletResponse response)
    SimpleStateHolder state2 = new SimpleStateHolder();
    String empno=request.getParameter("empno");
    state2.addParameter("empno",empno);
    request.setAttribute(MarkupRequestState.KEY, state2);
    return true;
    }

    Hi Susan,
    In that case I will recommend that you consult a local technician/IT team and see if there is some network connectivity issue with your machine.
    - Abhishek Maurya

  • Using two databank files in a single script

    The guy that created the scripts I'm using before I took over created a databank to create a random string of numbers to populate a field on our web site. But now I am using another databank to populate from a list all the other fields on our site. Is there a way in VB to populate a parameter value so I acn use the first databank file or to use two databanks in one script?

    Hi,
    With eTester it is only possible to use ONE Databank file...
    -but you can also use VBA to populate parameters/input fields...
    so either you have to merge your databank files OR you have to use some VBA to read data from the second file...and enter this through programming into your script.
    if you want to write a string to a input field..
    you could for example do the following in VBA.
    On Error GoTo ERRLBL
    Dim element As HTMLTableCell
    Dim valueStr As String
    'get the input field you wana interact with
    RSWApp.om.GetElementByPath "window(index=0).Tag[TD](index=29)", element
    If element Is Nothing Then
    errDescription = "html object not found!"
    errNumber = -1
    Exit Sub
    End If
    'WRITE something to a input field...
    element.innerText="what ever text or value you want...could also be a variable"
    errDescription = ""
    errNumber = 0
    Exit Sub
    ERRLBL:
    errDescription = Err.Description
    errNumber = Err.Number
    hope it helps
    /m
    Message was edited by: mfries

  • Which Host should I use when config OOTB produers?

    http://download.oracle.com/docs/cd/E15523_01/web.1111/e13813/custom_webcenter_admin.htm#WLSTC1016
    as above mentioned,use the following wlst register producers,
    wls:/weblogic/serverConfig> registerOOTBProducers(producerHost='myhost.com',
    producerPort=9999, appName='myApp')
    my question is I have config webcenter with oam, then what host and port I should use, webtier or webcenter?

    You publish to MobileMe. With or without a domainname.
    To use your domainname, follow the instructions in your MobileMe account where you setup Personal Domain:
    https://secure.me.com/account/
    Where you'll find a link to [iWeb: Using your own domain name|http://support.apple.com/kb/HT1107]
    Or read it in the [MobileMe help|http://help.apple.com/mac/1/help> : Account > Setting up a Personal Domain
    You can have only one domainame with Personal Domain at MobileMe. To use the other one you have to enable URL forwarding where you host your domainname.
    And browse this [Forum : MobileMe iWeb and Personal Domain|http://discussions.apple.com/forum.jspa?forumID=1163]
    Where?
    Start with your own ISP. The same who also has webspace for your pages.
    And Godaddy. You've been there. Read what they have to offer.
    [Skaff deg en registrar|http://www.norid.no/domeneregistrering/registrar.html]

  • Easiest Question - Should I use some BI Object?

    This potentially is the easiest question here.
    Before I spend tons of time and effort learning BI to see if I can do something, I thought I'd just throw out a query here.
    I'm creating an Interactive Form that the user will fill out, when they are finished they will press a 'post' button that will create a simple xml or flat file of the information and send it to the necessary parties.  However, the business wants to 'report' on this information as well so they feel we need to put this data into COPA. Another collegue opted for an SIS structure or something like that. While both of these will work (the COPA option is the least desired) I thought, 'we don't have BI, but maybe I can post that data directly to a cube or something??'. 
    Hence the query.
    Should we just simply post to an SIS structure, low overhead, pretty easy...or should we somehow put it in BI, lots of overhead, lots of learning because we do not have it, but scalable and positions us for growth. 
    See...just an opinion question. 
    Thanks,
    Greg

    I hope this is the possible solution for your query.
    1. Go to SICF and activate this web service: u201C/sap/bc/srt/rfc/sap/QUERY_VIEW_DATAu201D
    2. Go to transaction WSCONFIG and enter service destination u201CQUERY_VIEW_DATAu201D and enter variant u201Cquery_view_datau201D and hit enter. Currently, there are no released services so create a new service.
    3. Choose Save to release this web lservice.
    4. Choose ICF Details -> External Aliases
    5. Choose u201CNewu201D to create a new external alias.
    6. Enter external alias u201C/sap/bw/xml/soap/queryviewu201D and enter description u201CSAP BI Web Service u2013 XML Result Setu201D
    7. Specify your security and user ID on the u201CLogon datau201D tab.
    8. Specify u201C/sap/bc/srt/rfc/sap/QUERY_VIEW_DATAu201D under the u201CTrg Elementu201D tab.
    9. Save your external alias.
    10. Go to transaction WSADMIN -> Goto -> Administration Settings. Ensure that the path to your J2EE is specified here and save this.
    11. Find your web service and choose the u201CWeb service homepageu201D
    12. Login to your ABAP system from the Web Service Navigator
    13. Choose Test -> GetQueryViewData to test this service.
    14. Enter and Infoprovider and Query and send the request to test this web service. Note: If the query has mandatory variables, those must be passed in the parameter. For thesake of this test, use a query without variables.
    15. Ensure the request and response are successful.
    16. If you have issues, make sure you activate your Web Service and Interface in SE80
    17. Here is an example of how to pass parameters for filter values using WEB API commands. We are passing the FILTER_IOBJNM=0D_CHANNEL and FILTER_VALUE=3.
    18. Here is an example of how to pass parameters for variable values using WEB API commands. In this case,we are using a selection option variable. We are passing the following parameters:
    VAR_NAME_1=DISTGOP
    VAR_OPERATOR_1=EQ
    VAR_VALUE_LOW_EXT_1=3
    VAR_VALUE_HIGH_EXT_1=5
    Hope this would help you.

  • Should I use TWO firewalls at the same time? (Router + Maci's SystemUtility

    I tried to search for answers if it would be good or bad to establish a "double-firewall".
    Via Google I found a lot on PC's but nothing on Macintosh + Router. I personally feel that having a router with its own firewall + LittleSnitch + FireFox with WOT and NoScript is already sufficient. And my concern is that by activating Mac's own firewall on top I would contribute to confusion.

    You only need one firewall.

  • Why should I use the OpenDocument file format?

    Forgive the noobish sounding question, because I'm definitely not a linux newbie anymore. The current xkcd (http://www.xkcd.com/743) got me thinking. I never had a problem with .doc files before, because everything can read them. And I'd never used .odt files before because I only recently discovered abiword-plugins lets me read .odt files in Abiword.
    So, I'd like you to please convince me why I should use .odt files over .doc files. Thank you.

    drcouzelis wrote:
    I wonder if it would be worth it to teach people how to use LaTeX. I certainly don't think it's more complicated than writing a Word document in all cases. I can't believe how much time my coworkers spend try to "format" many of the 50+ page documents we work with. So often I hear problems like "This page break is wrong", "The index links are all messed up", "How do I get rid of this space?", and similar. Some of the time the answer is "We'll just leave it" or "I'll just re-write it". I thought all of those big fancy buttons on the top of the window were supposed to make writing a Word document easy? /rant
    Say, is there an application that allows a person to right-click on a TEX file and "Open (as PDF)" and "Edit (as TEXT)", For any OS? You know, kind of like a JIT compiler.
    ...and is this too off-topic?
    Well, I could share my experience here.
    1. LaTeX is probably similar to Perl or Vim in terms of the learning curve. I mean, it's more "learn as you work" thing: LaTeX relies heavily on it CTAN repository and there are lots of different ways to do the same thing. Which is why all the guides are more like cookbooks with recipes how to perform different kind of tasks, not a 101 tutorial.
    2. LaTeX is more oriented towards large documents, rather books than articles. Which means, one doesn't really need all of the features that LaTeX has to markup a document less than 50 pages. Most of the guides teach you how to work with books, while most of the users need to work with smaller texts. It's not a real problem for somebody who uses LaTeX for publishing his books to use it for smaller texts, but in other cases it's a bit challenging.
    Whenever you grab a LaTeX guide, you can strip it off all the advanced topics and you'll find out that merely one or two chapters are needed for most WYSIWYG converts: document structure (the essential packages, etc), beautifiers (boldface, italic, underlining, etc), paragraph formatting (alignments, columns, etc) headers/titles, tables, images embedding and footnotes. All of this can be described in 50 pages at most, and that would be totally comprehensive.
    So basically, one just needs a guide to LaTeX for word processing. Learning LaTeX for that purposes using publishing-oriented guides is really time consuming.
    Perhaps, there is even some kind of a special macro for word processing, that has less features, but makes them easier to memorize and use - I don't know.
    Actually, Pandoc's user guide could be a nice starting point, since pandoc has exactly the needed feature set. You should just expand it with some page properties (interlinear interval, page margins, etc), a review of the available tools for LaTeX (aucTeX, vim-latex, LyX, Kile, gummi, may be some popular extensions to Geany, Gedit, Kate), some popular Web resources (package reviews, tips-and-tricks wikis, etc) and some further reading.

  • What setting should I use to save file for upload to youtube

    Hi,
    the link below is the video on youtube that I just saved using the first setting that I always use using Flash.  Now because of the change over, as we have discussed I have to save the file then upload it for sites I upload to after the change.  I know I can save it on the For Windows one but it is not HD.  As you will see when you play this video it is all shakey (and not because I am shaking the camera   ).
    The other link is the non shakey saved for windows version.
    http://www.youtube.com/watch?v=lfjoqXIm2q0 Flash
    http://www.youtube.com/watch?v=i2OwQ3GTSPE (saved For Windows)
    Should I just resign my self to using the work around and use the save for Windows and not the FLASH.  or is there a setting I can use that gets rid of the shake.   However, since most of what I post is for people trying to sell their horses I would like the best quality I can get up on YouTube.
    Thanks for your help.  I really do appreciate it very much.  Saves me hours of time.
    Sarah

    Because YouTube is so unpredictable -- and always changing it encoding systems -- your best bet is to use the workaround and output as a WMV file.

  • When should I use my Proxy files

    Should I do all editing with proxy files to improve performance. Editing, color correction effects?
    I just saw a video where one guy said after you replace your proxy files then you can start effects, but I was thinking wait doesn't that defeat the purpose?
    I am rocking a basic mac book pro right now so anything to help make editing smoother so knowing when I can use proxy files would really help me out.
    Thank!

    Use native footage.
    PPRo is designed around that as a workflow.

  • How to enable chunked streaming mode using OSB config file

    Hi All,
    Is there way through which we can enable and disable the chunked streaming mode option in Business service (of OSB) through OSB configuration file?? If yes, please let me know.
    Thanks,
    Aditya

    Hi Aditya,
    I don't think it can be done dynamically the way you described... But I believe you can create two business services, one with chunked=on and the other with chunked=off and route to one of them dynamically according to your configuration...
    Cheers,
    Vlad

  • Ssh with two or more private keys using ~/.ssh/config read the wrong private key

    Hi,
    I have created a config file in ~/.ssh/ to be able to connect to remote sites using different private keys per site.
    The problem is when I try to connect to any of them ssh reads the wrong private key dispite of the configuration in ~/.ssh/config file.
    For example:
    Host vps
       Hostname x.x.x.x
      User guesswho
       IdentityFile vps.pk
    Host home
      Hostname y.y.y.y
      User home
      IdentityFile home.pk
    >ssh -v vps ( connects using home.pk)
    >ssh -v -i ~/.ssh/vps.pk ( connects using home.pk)
    I tried it on a Ubuntu 10.04.3 LTS using same config file and keys (openssh-server 1:5.3p1-3ubuntu7) and it worked as expected.
    Any help would be appreciated.
    zcookie

    My question is do I have to create a separate private key from my imac or can I just copy the private key from my macbook?
    Do you have to create separate private keys? No, but there are reasons why you might want to.
    The biggest one is the fact that if any key is compromised, they are all compromised (since they are the same). Say, for example, your MacBook is lost or stolen. You really should consider disabling the MacBook's key from authorized_keys to prevent the finder/thief from getting into your server. If that one key is shared by multiple hosts, though, you're going to lock out all the other hosts as well, even though they haven't been affected.
    Having separate keys per client lets you nix just the key for the MacBook (or whichever machine) without impacting the other machines' ability to connect.
    Other than the trivial amount of work it takes to create a private key there's really no overhead in having unique keys per client machine. If, however, you really want them to be the same, knock yourself out

Maybe you are looking for

  • VPN client connected to VPN but can't ping or access to server

    HI , i need help urgently, had been troubleshooting for a day, but have no ideal what wrong with the config. Basically there is 2 set of VPN configured, one is site to site IPSEC VPN and another one is connect via VPN client software coexist in same

  • Cancelled jobs

    Hi All      I have to create a program which gets the background jobs cancelled for a particular period.If we have any cancelled jobs then send a SMS.I have the funtionality to send an SMS will you please tell me how to get the background jobs cancel

  • Printing Resource Name Form View

    Hi there, I am using Project 2013 Professional on SP1 with all the updates applied. I am trying to print the resource name form so I can give all the business users involved in the project a list of thier tasks, when they are due, and how much effort

  • Some help please: how to remove incompatible audio units?

    Hello forum readers, If someone knows, a little help would be appreciated: When staring Logic Pro X, each time Audio Units are automatically being scanned. All the time I get a window with the message "Incompatible Audio Units found": "While verifyin

  • Inserting images in OS independant way

    Hi All, I have a report which has few bmp files on boilerplates. The development(9iDS-902 R2) goes on in Win2K machines. While inserting images from local disks, the reports builder requires the path of the file to be present. The final deployment of