I just noticed your other question about excluding the temp folder from user profiles.
I don't believe that anything is migrated from this folder normally, but I think the scanstate still scans the contents of the folder. To confirm this you could your current scanstate argument to produce an uncompressed mig file on a target pc. To exclude folders you use a custom xml file that you reference in your task sequence as an additional file (in your capture user state step). Here is one of mine. To exclude a user profile data folder you will have to use a wildcard, although I have never done this I don't know it's possible. Probably just Google USMT exclude profile folder file or something similar. Others on this forum may have the exact syntax to hand. <migration urlid="http://www.microsoft.com/migration/1.0/migxmlext/test"> <!-- Migrates all files in custom Program Files folders --> <component type="Application" context="System"> <displayName>Migrate TRIM folder</displayName> <role role="Data"> <rules> <include> <objectSet> <pattern type="File"> C:\Program Files\Trim Context\Lex\* [*]</pattern> <pattern type="File"> C:\Program Files\Trim Context\ServerData\* [*]</pattern> </objectSet> </include> </rules> </role> </component> <!-- This component exludes all folders/files in specific folders/drives --> <component type="Documents" context="System"> <displayName>Exclude c:\ Drivers folder , MSOCache folder, Autolog , c:\ Root Files , D:\ Drive , X:\ Drive </displayName> <role role="Data"> <rules> <unconditionalExclude> <objectSet> <pattern type="File">c:\drivers\*[*]</pattern> <!-- Exludes c:\drives folder --> <pattern type="File">c:\autolog\*[*]</pattern> <!-- Exludes c:\autolog folder --> <pattern type="File">c:\MSOCache\*[*]</pattern> <!-- Exludes c:\MSOCache folder --> <pattern type="File">c:\VUacd_Win3.0\*[*]</pattern> <!-- Exludes c:\VUacd_Win3.0 folder --> <pattern type="File">c:\VUacd\*[*]</pattern> <!-- Exludes c:\VUacd folder --> <pattern type="File">X:\*[*]</pattern> <!-- Exludes X: Drive --> <pattern type="File">E:\*[*]</pattern> <!-- Exludes E: Drive --> <pattern type="File">c:\[*]</pattern> <!-- Exludes c:\ root files --> <pattern type="File">c:\StateStore\*[*]</pattern> <!-- Exludes c:\StateStore --> </objectSet> </unconditionalExclude> </rules> </role> </component> </migration> From: [email protected]<mailto:[email protected]> [mailto:[email protected]] On Behalf Of Taxter, Latisha Sent: Wednesday, 16 July 2014 7:44 AM To: [email protected]<mailto:[email protected]> Subject: [mssms] mssms: How did you configure usmt for xp to win 7 refresh [cid:[email protected]] Still working on the profiles not copying issue. I am trying to limit how much scanstate copies as the profiles on the pc were close to 3gb. Is this a valid value for limiting to profiles no older than 6 days - for testing. Also how do I exclude the temp folder in the user profile? Thanks. Latisha Taxter Server Administrator III Kootenai Health 2003 Kootenai Health Way Coeur D'Alene, Idaho 83814 * 208-625-4192 ?509-953-9085 [email protected]<mailto:[email protected]> http://www.kh.org [cid:[email protected]] Confidentiality Statement: The contents of this email and any attachments are confidential. They are intended for the named recipients only. If you have received this email in error, please notify the system manager or the sender immediately and do not disclose or provide copies of the contents to anyone. ________________________________ CONFIDENTIALITY NOTICE AND DISCLAIMER The information in this transmission may be confidential and/or protected by legal professional privilege, and is intended only for the person or persons to whom it is addressed. If you are not such a person, you are warned that any disclosure, copying or dissemination of the information is unauthorised. If you have received the transmission in error, please immediately contact this office by telephone, fax or email, to inform us of the error and to enable arrangements to be made for the destruction of the transmission, or its return at our cost. No liability is accepted for any unauthorised use of the information contained in this transmission. ________________________________ CONFIDENTIALITY NOTICE AND DISCLAIMER The information in this transmission may be confidential and/or protected by legal professional privilege, and is intended only for the person or persons to whom it is addressed. If you are not such a person, you are warned that any disclosure, copying or dissemination of the information is unauthorised. If you have received the transmission in error, please immediately contact this office by telephone, fax or email, to inform us of the error and to enable arrangements to be made for the destruction of the transmission, or its return at our cost. No liability is accepted for any unauthorised use of the information contained in this transmission.

