MDT 2012 database

Hi all
If you configure MDT 2012 U1 database and add in the computer, does that replace the need for task sequences?
Also can you use make and model only and not bother about creating new computer objects under Database > Computer ??
Ronnnie
Regards
ronnie.jorgensen systems engineer
My blog

Hi,
In the future, if you have MDT issues, you can post it via
Microsoft Deployment Toolkit forum for more help. Thank you for your understanding.
Regards,
Vincent Wang
TechNet Community Support

Similar Messages

  • MDT 2012 with Database do not use the OSD* properties

    Greetings,
    I use MDT 2012 Update1 with Database to deploy clients. without use SCCM, and without DHCP.
    I find that the all the properties in the details settings begin with OSD**, such as "OSDComputerName", "OSDAdapter0Gateways", "OSDAdapter0IPAddressList"
    etc. cannot be used.
    for example, if I set the "ComputerName" as "Client1" and set "OSDComputerName" as "Client01" in the database, after the client installed, the client's Computer Name
    is set to Client1 but not Client01.
    and the client's IP address is not use the value in OSDAdapter0IPAddressList, but use the IP address that in the Boot WinPE begining screen I inputed.
    would you please help me in this case.
    Thanks 
    Frank@Hiweb 冯立超@瀚博资讯

    Thank you Michael,
    Glad to get help from you!
    I have according to you guide "Manipulating the Microsoft Deployment Toolkit database using PowerShell" created
    a script to bulk input clients settings just now. thank you!
    I have a question about IP address, as following:
    I use MDT 2012 with Database, without SCCM, without DHCP.
    so I must set IP address at the beginning of the WinPE.
    thus, the final IP address on the clients is the IP address I set at WinPE boot time, but not the IP address in the Database
    OSDAdapter0AddressList, even I set OSDAdapterCount to 1.
    would you please guide me how to correct it.
    Thank you and best regards.
    Frank@Hiweb 冯立超@瀚博资讯

  • Install SQL Express With MDT 2012 now or wait for SCCM and full SQL Server?

    We are planning to get SCCM 2012 R2 in several months and it will come with SQL Server 2012 when it is installed and configured at that time.
    If we would like to start experimenting with using a database in MDT 2012 now, can we go ahead and set up a database in SQL Express and start using it  for deployments now or should we wait for SQL server?  
    Can the database created in standalone MDT 2012 with SQL Express be migrated to SQL Server 2012  and SCCM 2012R2 or would we need to start over with a new database when we get SQL Server and SCCM?

    Using SQL Express should be fine.  You can export the database from there and import it into a full SQL Server install later if you want to preserve the content.
    Thanks,
    -Michael Niehaus
    Senior Product Marketing Manager, Windows Deployment
    http://blogs.technet.com/mniehaus
    [email protected]

  • MDT 2012 - Settings Per Task Sequence

    I recently converted to MDT 2012 after running MDT 2010 for awhile (which has been great). Johan had written up an article (http://www.deployvista.com/Home/tabid/36/EntryID/139/language/en-US/Default.aspx)
    that allows you to do settings per task sequence without the use of a database which was amazing for our environment. After switching to 2012 this no longer works. Is there something I'm missing or what do I need to change to make this work?
    Thanks!
    Joe

    DeployWiz_SelectTS.vbs
    ' // Copyright (c) Microsoft Corporation.  All rights reserved.
    ' // Microsoft Deployment Toolkit Solution Accelerator
    ' // File:      DeployWiz_Initialization.vbs
    ' // Version:   6.0.2223.0
    ' // Purpose:   Main Client Deployment Wizard Initialization routines
    Option Explicit
    '  Image List
    Dim g_AllOperatingSystems
    Function AllOperatingSystems
        Dim oOSes
        If isempty(g_AllOperatingSystems) then
            set oOSes = new ConfigFile
            oOSes.sFileType = "OperatingSystems"
            oOSes.bMustSucceed = false
            set g_AllOperatingSystems = oOSes.FindAllItems
        End if
        set AllOperatingSystems = g_AllOperatingSystems
    End function
    Function InitializeTSList
        Dim oItem, sXPathOld
        If oEnvironment.Item("TaskSequenceID") <> "" and oProperties("TSGuid") = "" then
            sXPathOld = oTaskSequences.xPathFilter
            for each oItem in oTaskSequences.oControlFile.SelectNodes( "/*/*[ID = '" & oEnvironment.Item("TaskSequenceID")&"']")
                oLogging.CreateEntry "TSGuid changed via TaskSequenceID = " & oEnvironment.Item("TaskSequenceID"), LogTypeInfo
                oEnvironment.Item("TSGuid") = oItem.Attributes.getNamedItem("guid").value
                exit for
            next
            oTaskSequences.xPathFilter = sXPathOld
        End if
        TSListBox.InnerHTML = oTaskSequences.GetHTMLEx ( "Radio", "TSGuid" )
        PopulateElements
        TSItemChange
    End function
    Function TSItemChange
        Dim oInput
        ButtonNext.Disabled = TRUE
        for each oInput in document.getElementsByName("TSGuid")
            If oInput.Checked then
                oLogging.CreateEntry "Found CHecked Item: " & oInput.Value, LogTypeVerbose
                ButtonNext.Disabled = FALSE
                exit function
            End if
        next
    End function
    '  Validate task sequence List
    Function ValidateTSList
        Dim oTaskList
        Dim oTS
        Dim oItem
        Dim oOSItem
        Dim sID
        Dim bFound
        Dim sTemplate
        Dim sCmd
        Set Oshell = createObject("Wscript.shell")
        set oTS = new ConfigFile
        oTS.sFileType = "TaskSequences"
        SaveAllDataElements
        If Property("TSGuid") = "" then
            oLogging.CreateEntry "No valid TSGuid found in the environment.", LogTypeWarning
            ValidateTSList = false
        End if
        oLogging.CreateEntry "TSGuid Found: " & Property("TSGuid"), LogTypeVerbose
        sID = ""
        sTemplate = ""
        If oTS.FindAllItems.Exists(Property("TSGuid")) then
            sID = oUtility.SelectSingleNodeString(oTS.FindAllItems.Item(Property("TSGuid")),"./ID")
            sTemplate = oUtility.SelectSingleNodeString(oTS.FindAllItems.Item(Property("TSGuid")),"./TaskSequenceTemplate")
        End if
        oEnvironment.item("TaskSequenceID") = sID
        TestAndLog sID <> "", "Verify Task Sequence ID: " & sID
        Set oTaskList = oUtility.LoadConfigFileSafe( sID & "\TS.XML" )
        If not FindTaskSequenceStep( "//step[@type='BDD_InstallOS']", "" ) then
            oLogging.CreateEntry "Task Sequence does not contain an OS and does not contain a LTIApply.wsf step, possibly a Custom Step or a Client Replace.", LogTypeInfo
            oProperties.Item("OSGUID")=""
            If not (oTaskList.SelectSingleNode("//group[@name='State Restore']") is nothing) then
                oProperties("DeploymentType") = "StateRestore"
            ElseIf sTemplate <> "ClientReplace.xml" and oTaskList.SelectSingleNode("//step[@name='Capture User State']") is nothing then
                oProperties("DeploymentType")="CUSTOM"
            Else
                oProperties("DeploymentType")="REPLACE"
                RMPropIfFound("ImageIndex")
                RMPropIfFound("ImageSize")
                RMPRopIfFound("ImageFlags")
                RMPropIfFound("ImageBuild")
                RMPropIfFound("InstallFromPath")
                RMPropIfFound("ImageMemory")
                oEnvironment.Item("ImageProcessor")=Ucase(oEnvironment.Item("Architecture"))
            End if
        Elseif oEnvironment.Item("OSVERSION")="WinPE" Then
            oProperties("DeploymentType")="NEWCOMPUTER"
        Else
            oLogging.CreateEntry "Task Sequence contains a LTIApply.wsf step, and is not running within WinPE.", LogTypeInfo
            oProperties("DeploymentType") = "REFRESH"
            oEnvironment.Item("DeployTemplate")=Ucase(Left(sTemplate,Instr(sTemplate,".")-1))
        End if
        oLogging.CreateEntry "DeploymentType = " & oProperties("DeploymentType"), LogTypeInfo
        set oTaskList = nothing
        set oTS = nothing
        ' Set the related properties
        oEnvironment.Item("ImageProcessor") = ""
        oEnvironment.Item("OSGUID")=""
        oUtility.SetTaskSequenceProperties sID
        If Left(Property("ImageBuild"), 1) < "6" then
            RMPropIfFound("LanguagePacks")
            RMPropIfFound("UserLocaleAndLang")
            RMPropIfFound("KeyboardLocale")
            RMPropIfFound("UserLocale")
            RMPropIfFound("UILanguage")
            RMPropIfFound("BdePin")
            RMPropIfFound("BdeModeSelect1")
            RMPropIfFound("BdeModeSelect2")
            RMPropIfFound("OSDBitLockerStartupKeyDrive")
            RMPropIfFound("WaitForEncryption")
            RMPropIfFound("BdeInstall")
            RMPropIfFound("OSDBitLockerWaitForEncryption")
            RMPropIfFound("BdeRecoveryKey")
            RMPropIfFound("BdeInstallSuppress")
        End If
        If oEnvironment.Item("OSGUID") <> "" and oEnvironment.Item("ImageProcessor") = "" then
            ' There was an OSGUID defined within the TS.xml file, however the GUID was not found
            ' within the OperatingSystems.xml file. Which is a dependency error. Block the wizard.
            ValidateTSList = False
            ButtonNext.Disabled = True
            Bad_OSGUID.style.display = "inline"
        Else
            ValidateTSList = True
            ButtonNext.Disabled = False
            Bad_OSGUID.style.display = "none"
        ENd if
        sCmd = "wscript.exe """ & oUtility.ScriptDir & "\ZTIGather.wsf"""
        oItem = oSHell.Run(sCmd, , true)
    End Function

  • MDT 2012 deploy OS from USB external drive failed - need to unplug and plug it once again

    We are using MDT 2012 and deploying Windows 7 using media (USB external hard drive). We can successfully deploy Windows 7 32 bit using this method but there is a problem with deploying Windows 7 64bit. This problem appears only on HP EliteBook 840. We can
    boot into WinPE 64 bit and can start proper task sequence, all image is applied then after restart, before logon screen appears there is an error saying that cannot find litetouch.vbs script. After clicking ok, I can logon to Windows and there is no usb external
    drive recognized. But when I unplug and plug usb drive once again it is recognized by Windows and can be used. I can see that Windows install some drivers just after plug it again
    I checked BIOS looking for some USB power options - there is no such settings. And 32 bit deployment works ok. So this is not a case. Looks for me like a problem with proper usb drivers for 64 bit. I download all drivers from HP website (driver pack and
    drivers only for USB 3.0). We are using make and model matching in MDT - works ok for all the rest hardware models. Any idea how to troubleshoot it?

    Not sure what's going on here. Is this a USB "Flash" drive or a USB "Hard Drive". There *Is* a distinction.
    I *thought* that MDT would copy itself to the c:\minint\scripts folder to continue installation.
    Next time, when you see this error, Press Shift-F10 to get into a cmd.exe prompt. Can you find litetouch.vbs on any of the drives? Does the USB Drive appear?
    IF in fact, the USB Drive is not appearing after the 1st reboot, then you have a problem. Why did the USB 3.0 driver not install. Check the Driver Installation Logs to verify.
    Keith Garner - keithga.wordpress.com

  • Unable to capture image using MDT 2012

    After running my Sysprep and Capture task using MDT 2012, MDT begins to capture the image and makes it all the way to ~94% and then stops and returns several errors. Any idea as to what may be causing this? Below are the errors returned during the capture
    task and the ZTIBackup.log:
    Error creating an image of drive C:, re=2
    ZTI ERROR - Non-zero return code by ZTIBackup, rc = 2
    Litetouch deployment failed, Return Code = -2147467259 0x80004005
    Failed to run the action: Create WIM.
    The system cannot find the file specified. (Error: 00000002; Source: Windows)
    The execution of the group (capture Image) has failed and the execution has been aborted. An action failed.
    Operation aborted (Error: 80004004; Source: Windows)
    Failed to run the last action: Create WIM. Execution of task sequence failed.
    The system cannot find the file specified. (Error: 00000002; Source: Windows)
    Task Sequence Engine failed! Code: enExecutionFail
    Task sequence execution failed with error code 80004005
    Error Task Sequence Manager failed to execute task sequence. Code 0x80004005
    ZTIBackup.log:
    <![LOG[Microsoft Deployment Toolkit version: 6.1.2373.0]LOG]!><time="14:01:12.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread="" file="ZTIBackup">
    <![LOG[The task sequencer log is located at X:\windows\TEMP\SMSTSLog\SMSTS.LOG.  For task sequence failures, please consult this log.]LOG]!><time="14:01:12.000+000" date="08-15-2014" component="ZTIBackup" context=""
    type="1" thread="" file="ZTIBackup">
    <![LOG[OriginalPartitionIdentifier is set, find disk: SELECT * FROM Win32_LogicalDisk WHERE Size = '299999686656' and VolumeName = '' and VolumeSerialNumber = '2A688632']LOG]!><time="14:01:12.000+000" date="08-15-2014" component="ZTIBackup"
    context="" type="1" thread="" file="ZTIBackup">
    <![LOG[Search for Drive: OriginalPartitionIdentifier  SELECT * FROM Win32_LogicalDisk WHERE Size = '299999686656' and VolumeName = '' and VolumeSerialNumber = '2A688632']LOG]!><time="14:01:12.000+000" date="08-15-2014"
    component="ZTIBackup" context="" type="1" thread="" file="ZTIBackup">
    <![LOG[Found Drive: C:]LOG]!><time="14:01:12.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread="" file="ZTIBackup">
    <![LOG[Property OSDTargetDriveCache is now = C:]LOG]!><time="14:01:12.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread="" file="ZTIBackup">
    <![LOG[Property OSDisk is now = C:]LOG]!><time="14:01:12.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread="" file="ZTIBackup">
    <![LOG[BackupDrive not specified searching for backup drive]LOG]!><time="14:01:12.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread="" file="ZTIBackup">
    <![LOG[BackupDrive defaulting to Destination Logical Drive: C:]LOG]!><time="14:01:12.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread="" file="ZTIBackup">
    <![LOG[Checking to see if we can store the backup locally]LOG]!><time="14:01:12.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread="" file="ZTIBackup">
    <![LOG[Drive C: 160595120]LOG]!><time="14:01:12.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread="" file="ZTIBackup">
    <![LOG[Local store path = C:\StateStore]LOG]!><time="14:01:12.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread="" file="ZTIBackup">
    <![LOG[Total used space: 160595120]LOG]!><time="14:01:12.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread="" file="ZTIBackup">
    <![LOG[Available space at C:\StateStore: 132373320]LOG]!><time="14:01:12.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread="" file="ZTIBackup">
    <![LOG[Local store not permitted]LOG]!><time="14:01:12.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread="" file="ZTIBackup">
    <![LOG[Network store path set to blank]LOG]!><time="14:01:12.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread="" file="ZTIBackup">
    <![LOG[Network store path set to: \\OCS-MDT\CCBShare$\Captures]LOG]!><time="14:01:12.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread="" file="ZTIBackup">
    <![LOG[Backup file name already set to: CCB01-8_15_14.wim]LOG]!><time="14:01:12.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread="" file="ZTIBackup">
    <![LOG[Using the backup path: \\OCS-MDT\CCBShare$\Captures\CCB01-8_15_14.wim]LOG]!><time="14:01:12.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread="" file="ZTIBackup">
    <![LOG[Validating connection to \\OCS-MDT\CCBShare$\Captures]LOG]!><time="14:01:12.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread="" file="ZTIBackup">
    <![LOG[Already connected to server OCS-MDT as that is where this script is running from.]LOG]!><time="14:01:13.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread=""
    file="ZTIBackup">
    <![LOG[Beginning backup of drive C:]LOG]!><time="14:01:13.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread="" file="ZTIBackup">
    <![LOG[About to run command: "\\OCS-MDT\CCBShare$\Tools\X64\imagex.exe"  /capture /compress maximum C: "\\OCS-MDT\CCBShare$\Captures\CCB01-8_15_14.wim" "CCB01CDrive" /flags ENTERPRISE]LOG]!><time="14:01:13.000+000"
    date="08-15-2014" component="ZTIBackup" context="" type="1" thread="" file="ZTIBackup">
    <![LOG[Command has been started (process ID 1568)]LOG]!><time="14:01:13.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread="" file="ZTIBackup">
    <![LOG[ZTI Heartbeat: command has been running for 0 minutes (process ID 1568)]LOG]!><time="14:01:13.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread="" file="ZTIBackup">
    <![LOG[  Console > ImageX Tool for Windows]LOG]!><time="14:01:13.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread="" file="ZTIBackup">
    <![LOG[  Console > Copyright (C) Microsoft Corp. All rights reserved.]LOG]!><time="14:01:13.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread="" file="ZTIBackup">
    <![LOG[  Console > Version: 6.1.7600.16385]LOG]!><time="14:01:13.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread="" file="ZTIBackup">
    <![LOG[  Console > Files/folders excluded from image capture by default:]LOG]!><time="14:01:13.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread="" file="ZTIBackup">
    <![LOG[  Console >  \$windows.~bt]LOG]!><time="14:01:13.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread="" file="ZTIBackup">
    <![LOG[  Console >  \$windows.~ls]LOG]!><time="14:01:13.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread="" file="ZTIBackup">
    <![LOG[  Console >  \winpepge.sys]LOG]!><time="14:01:13.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread="" file="ZTIBackup">
    <![LOG[  Console >  \Windows\CSC]LOG]!><time="14:01:13.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread="" file="ZTIBackup">
    <![LOG[  Console >  \Recycled]LOG]!><time="14:01:13.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread="" file="ZTIBackup">
    <![LOG[  Console >  \Recycler]LOG]!><time="14:01:13.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread="" file="ZTIBackup">
    <![LOG[  Console >  \$Recycle.Bin\*]LOG]!><time="14:01:13.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread="" file="ZTIBackup">
    <![LOG[  Console >  \System Volume Information]LOG]!><time="14:01:13.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread="" file="ZTIBackup">
    <![LOG[  Console >  \pagefile.sys]LOG]!><time="14:01:13.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread="" file="ZTIBackup">
    <![LOG[  Console >  \hiberfil.sys]LOG]!><time="14:01:13.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread="" file="ZTIBackup">
    <![LOG[  Console > Turning on VERIFY option for network share]LOG]!><time="14:01:13.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread="" file="ZTIBackup">
    <![LOG[  Console > Scanning files and directories...]LOG]!><time="14:01:14.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread="" file="ZTIBackup">
    <![LOG[  Console > [   0% ] Capturing progress ]LOG]!><time="14:18:10.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread="" file="ZTIBackup">
    <![LOG[ZTI Heartbeat: command has been running for 17 minutes (process ID 1568)]LOG]!><time="14:18:10.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread="" file="ZTIBackup">
    <![LOG[  Console > [   1% ] Capturing progress ]LOG]!><time="14:18:10.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread="" file="ZTIBackup">
    <![LOG[  Console > [   2% ] Capturing progress: 2:22:22 hrs remaining ]LOG]!><time="14:21:04.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread=""
    file="ZTIBackup">
    <![LOG[  Console > [   3% ] Capturing progress: 2:23:19 hrs remaining ]LOG]!><time="14:22:41.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread=""
    file="ZTIBackup">
    <![LOG[  Console > [   4% ] Capturing progress: 2:23:01 hrs remaining ]LOG]!><time="14:24:11.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread=""
    file="ZTIBackup">
    <![LOG[ZTI Heartbeat: command has been running for 23 minutes (process ID 1568)]LOG]!><time="14:24:11.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread="" file="ZTIBackup">
    <![LOG[  Console > [   5% ] Capturing progress: 2:39:46 hrs remaining ]LOG]!><time="14:27:38.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread=""
    file="ZTIBackup">
    <![LOG[  Console > [   6% ] Capturing progress: 2:43:14 hrs remaining ]LOG]!><time="14:28:53.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread=""
    file="ZTIBackup">
    <![LOG[  Console > [   7% ] Capturing progress: 2:43:42 hrs remaining ]LOG]!><time="14:30:39.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread=""
    file="ZTIBackup">
    <![LOG[ZTI Heartbeat: command has been running for 29 minutes (process ID 1568)]LOG]!><time="14:30:39.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread="" file="ZTIBackup">
    <![LOG[  Console > [   8% ] Capturing progress: 2:41:26 hrs remaining ]LOG]!><time="14:32:08.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread=""
    file="ZTIBackup">
    <![LOG[  Console > [   9% ] Capturing progress: 2:43:24 hrs remaining ]LOG]!><time="14:34:47.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread=""
    file="ZTIBackup">
    <![LOG[  Console > [  10% ] Capturing progress: 2:41:57 hrs remaining ]LOG]!><time="14:36:09.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread=""
    file="ZTIBackup">
    <![LOG[ZTI Heartbeat: command has been running for 35 minutes (process ID 1568)]LOG]!><time="14:36:09.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread="" file="ZTIBackup">
    <![LOG[  Console > [  11% ] Capturing progress: 2:38:33 hrs remaining ]LOG]!><time="14:37:31.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread=""
    file="ZTIBackup">
    <![LOG[  Console > [  12% ] Capturing progress: 2:35:51 hrs remaining ]LOG]!><time="14:39:18.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread=""
    file="ZTIBackup">
    <![LOG[  Console > [  13% ] Capturing progress: 2:33:30 hrs remaining ]LOG]!><time="14:41:00.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread=""
    file="ZTIBackup">
    <![LOG[ZTI Heartbeat: command has been running for 40 minutes (process ID 1568)]LOG]!><time="14:41:00.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread="" file="ZTIBackup">
    <![LOG[  Console > [  14% ] Capturing progress: 2:30:39 hrs remaining ]LOG]!><time="14:42:28.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread=""
    file="ZTIBackup">
    <![LOG[  Console > [  15% ] Capturing progress: 2:28:39 hrs remaining ]LOG]!><time="14:44:23.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread=""
    file="ZTIBackup">
    <![LOG[  Console > [  16% ] Capturing progress: 2:28:06 hrs remaining ]LOG]!><time="14:46:43.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread=""
    file="ZTIBackup">
    <![LOG[ZTI Heartbeat: command has been running for 45 minutes (process ID 1568)]LOG]!><time="14:46:43.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread="" file="ZTIBackup">
    <![LOG[  Console > [  17% ] Capturing progress: 2:30:58 hrs remaining ]LOG]!><time="14:50:26.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread=""
    file="ZTIBackup">
    <![LOG[  Console > [  18% ] Capturing progress: 2:42:16 hrs remaining ]LOG]!><time="14:57:55.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread=""
    file="ZTIBackup">
    <![LOG[ZTI Heartbeat: command has been running for 56 minutes (process ID 1568)]LOG]!><time="14:57:55.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread="" file="ZTIBackup">
    <![LOG[  Console > [  19% ] Capturing progress: 2:55:09 hrs remaining ]LOG]!><time="15:03:37.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread=""
    file="ZTIBackup">
    <![LOG[ZTI Heartbeat: command has been running for 62 minutes (process ID 1568)]LOG]!><time="15:03:37.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread="" file="ZTIBackup">
    <![LOG[  Console > [  20% ] Capturing progress: 3:03:46 hrs remaining ]LOG]!><time="15:07:09.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread=""
    file="ZTIBackup">
    <![LOG[  Console > [  21% ] Capturing progress: 3:10:17 hrs remaining ]LOG]!><time="15:11:41.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread=""
    file="ZTIBackup">
    <![LOG[ZTI Heartbeat: command has been running for 70 minutes (process ID 1568)]LOG]!><time="15:11:41.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread="" file="ZTIBackup">
    <![LOG[  Console > [  22% ] Capturing progress: 3:12:08 hrs remaining ]LOG]!><time="15:13:22.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread=""
    file="ZTIBackup">
    <![LOG[  Console > [  23% ] Capturing progress: 3:11:13 hrs remaining ]LOG]!><time="15:15:43.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread=""
    file="ZTIBackup">
    <![LOG[  Console > [  24% ] Capturing progress: 3:08:56 hrs remaining ]LOG]!><time="15:17:45.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread=""
    file="ZTIBackup">
    <![LOG[ZTI Heartbeat: command has been running for 76 minutes (process ID 1568)]LOG]!><time="15:17:45.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread="" file="ZTIBackup">
    <![LOG[  Console > [  25% ] Capturing progress: 3:06:17 hrs remaining ]LOG]!><time="15:20:12.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread=""
    file="ZTIBackup">
    <![LOG[  Console > [  26% ] Capturing progress: 3:03:27 hrs remaining ]LOG]!><time="15:22:24.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread=""
    file="ZTIBackup">
    <![LOG[ZTI Heartbeat: command has been running for 81 minutes (process ID 1568)]LOG]!><time="15:22:24.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread="" file="ZTIBackup">
    <![LOG[  Console > [  27% ] Capturing progress: 3:00:07 hrs remaining ]LOG]!><time="15:24:14.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread=""
    file="ZTIBackup">
    <![LOG[  Console > [  28% ] Capturing progress: 2:56:19 hrs remaining ]LOG]!><time="15:25:55.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread=""
    file="ZTIBackup">
    <![LOG[  Console > [  29% ] Capturing progress: 2:54:19 hrs remaining ]LOG]!><time="15:30:23.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread=""
    file="ZTIBackup">
    <![LOG[ZTI Heartbeat: command has been running for 89 minutes (process ID 1568)]LOG]!><time="15:30:23.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread="" file="ZTIBackup">
    <![LOG[  Console > [  30% ] Capturing progress: 2:52:44 hrs remaining ]LOG]!><time="15:32:22.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread=""
    file="ZTIBackup">
    <![LOG[  Console > [  31% ] Capturing progress: 2:50:14 hrs remaining ]LOG]!><time="15:34:29.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread=""
    file="ZTIBackup">
    <![LOG[  Console > [  32% ] Capturing progress: 2:47:25 hrs remaining ]LOG]!><time="15:36:38.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread=""
    file="ZTIBackup">
    <![LOG[ZTI Heartbeat: command has been running for 95 minutes (process ID 1568)]LOG]!><time="15:36:38.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread="" file="ZTIBackup">
    <![LOG[  Console > [  33% ] Capturing progress: 2:44:17 hrs remaining ]LOG]!><time="15:38:25.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread=""
    file="ZTIBackup">
    <![LOG[  Console > [  34% ] Capturing progress: 2:40:58 hrs remaining ]LOG]!><time="15:40:26.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread=""
    file="ZTIBackup">
    <![LOG[  Console > [  35% ] Capturing progress: 2:37:40 hrs remaining ]LOG]!><time="15:42:17.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread=""
    file="ZTIBackup">
    <![LOG[ZTI Heartbeat: command has been running for 101 minutes (process ID 1568)]LOG]!><time="15:42:17.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread="" file="ZTIBackup">
    <![LOG[  Console > [  36% ] Capturing progress: 2:34:21 hrs remaining ]LOG]!><time="15:44:12.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread=""
    file="ZTIBackup">
    <![LOG[  Console > [  37% ] Capturing progress: 2:31:09 hrs remaining ]LOG]!><time="15:46:18.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread=""
    file="ZTIBackup">
    <![LOG[  Console > [  38% ] Capturing progress: 2:28:17 hrs remaining ]LOG]!><time="15:48:53.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread=""
    file="ZTIBackup">
    <![LOG[ZTI Heartbeat: command has been running for 107 minutes (process ID 1568)]LOG]!><time="15:48:53.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread="" file="ZTIBackup">
    <![LOG[  Console > [  39% ] Capturing progress: 2:25:45 hrs remaining ]LOG]!><time="15:51:14.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread=""
    file="ZTIBackup">
    <![LOG[  Console > [  40% ] Capturing progress: 2:23:10 hrs remaining ]LOG]!><time="15:53:14.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread=""
    file="ZTIBackup">
    <![LOG[ZTI Heartbeat: command has been running for 112 minutes (process ID 1568)]LOG]!><time="15:53:14.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread="" file="ZTIBackup">
    <![LOG[  Console > [  41% ] Capturing progress: 2:20:18 hrs remaining ]LOG]!><time="15:54:44.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread=""
    file="ZTIBackup">
    <![LOG[  Console > [  42% ] Capturing progress: 2:17:13 hrs remaining ]LOG]!><time="15:56:48.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread=""
    file="ZTIBackup">
    <![LOG[  Console > [  43% ] Capturing progress: 2:14:21 hrs remaining ]LOG]!><time="15:59:07.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread=""
    file="ZTIBackup">
    <![LOG[ZTI Heartbeat: command has been running for 118 minutes (process ID 1568)]LOG]!><time="15:59:07.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread="" file="ZTIBackup">
    <![LOG[  Console > [  44% ] Capturing progress: 2:11:48 hrs remaining ]LOG]!><time="16:01:55.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread=""
    file="ZTIBackup">
    <![LOG[  Console > [  45% ] Capturing progress: 2:09:52 hrs remaining ]LOG]!><time="16:07:04.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread=""
    file="ZTIBackup">
    <![LOG[ZTI Heartbeat: command has been running for 126 minutes (process ID 1568)]LOG]!><time="16:07:04.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread="" file="ZTIBackup">
    <![LOG[  Console > [  46% ] Capturing progress: 2:09:09 hrs remaining ]LOG]!><time="16:10:37.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread=""
    file="ZTIBackup">
    <![LOG[  Console > [  47% ] Capturing progress: 2:08:08 hrs remaining ]LOG]!><time="16:12:58.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread=""
    file="ZTIBackup">
    <![LOG[ZTI Heartbeat: command has been running for 131 minutes (process ID 1568)]LOG]!><time="16:12:58.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread="" file="ZTIBackup">
    <![LOG[  Console > [  48% ] Capturing progress: 2:06:21 hrs remaining ]LOG]!><time="16:15:22.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread=""
    file="ZTIBackup">
    <![LOG[  Console > [  49% ] Capturing progress: 2:04:12 hrs remaining ]LOG]!><time="16:17:26.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread=""
    file="ZTIBackup">
    <![LOG[ZTI Heartbeat: command has been running for 136 minutes (process ID 1568)]LOG]!><time="16:17:26.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread="" file="ZTIBackup">
    <![LOG[  Console > [  50% ] Capturing progress: 2:01:44 hrs remaining ]LOG]!><time="16:20:12.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread=""
    file="ZTIBackup">
    <![LOG[  Console > [  51% ] Capturing progress: 1:59:26 hrs remaining ]LOG]!><time="16:22:36.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread=""
    file="ZTIBackup">
    <![LOG[ZTI Heartbeat: command has been running for 141 minutes (process ID 1568)]LOG]!><time="16:22:36.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread="" file="ZTIBackup">
    <![LOG[  Console > [  52% ] Capturing progress: 1:57:05 hrs remaining ]LOG]!><time="16:24:21.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread=""
    file="ZTIBackup">
    <![LOG[  Console > [  53% ] Capturing progress: 1:54:22 hrs remaining ]LOG]!><time="16:26:15.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread=""
    file="ZTIBackup">
    <![LOG[  Console > [  54% ] Capturing progress: 1:51:34 hrs remaining ]LOG]!><time="16:28:31.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread=""
    file="ZTIBackup">
    <![LOG[ZTI Heartbeat: command has been running for 147 minutes (process ID 1568)]LOG]!><time="16:28:31.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread="" file="ZTIBackup">
    <![LOG[  Console > [  55% ] Capturing progress: 1:48:56 hrs remaining ]LOG]!><time="16:30:23.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread=""
    file="ZTIBackup">
    <![LOG[  Console > [  56% ] Capturing progress: 1:46:05 hrs remaining ]LOG]!><time="16:33:12.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread=""
    file="ZTIBackup">
    <![LOG[ZTI Heartbeat: command has been running for 152 minutes (process ID 1568)]LOG]!><time="16:33:12.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread="" file="ZTIBackup">
    <![LOG[  Console > [  57% ] Capturing progress: 1:43:42 hrs remaining ]LOG]!><time="16:35:25.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread=""
    file="ZTIBackup">
    <![LOG[  Console > [  58% ] Capturing progress: 1:41:18 hrs remaining ]LOG]!><time="16:37:12.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread=""
    file="ZTIBackup">
    <![LOG[  Console > [  59% ] Capturing progress: 1:38:41 hrs remaining ]LOG]!><time="16:38:57.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread=""
    file="ZTIBackup">
    <![LOG[ZTI Heartbeat: command has been running for 157 minutes (process ID 1568)]LOG]!><time="16:38:57.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread="" file="ZTIBackup">
    <![LOG[  Console > [  60% ] Capturing progress: 1:36:02 hrs remaining ]LOG]!><time="16:40:19.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread=""
    file="ZTIBackup">
    <![LOG[  Console > [  61% ] Capturing progress: 1:33:11 hrs remaining ]LOG]!><time="16:41:53.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread=""
    file="ZTIBackup">
    <![LOG[  Console > [  62% ] Capturing progress: 1:30:13 hrs remaining ]LOG]!><time="16:43:58.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread=""
    file="ZTIBackup">
    <![LOG[ZTI Heartbeat: command has been running for 162 minutes (process ID 1568)]LOG]!><time="16:43:58.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread="" file="ZTIBackup">
    <![LOG[  Console > [  63% ] Capturing progress: 1:27:20 hrs remaining ]LOG]!><time="16:46:48.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread=""
    file="ZTIBackup">
    <![LOG[  Console > [  64% ] Capturing progress: 1:24:48 hrs remaining ]LOG]!><time="16:49:52.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread=""
    file="ZTIBackup">
    <![LOG[ZTI Heartbeat: command has been running for 168 minutes (process ID 1568)]LOG]!><time="16:49:52.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread="" file="ZTIBackup">
    <![LOG[  Console > [  65% ] Capturing progress: 1:22:51 hrs remaining ]LOG]!><time="16:51:34.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread=""
    file="ZTIBackup">
    <![LOG[  Console > [  66% ] Capturing progress: 1:20:36 hrs remaining ]LOG]!><time="16:52:56.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread=""
    file="ZTIBackup">
    <![LOG[  Console > [  67% ] Capturing progress: 1:17:48 hrs remaining ]LOG]!><time="16:55:22.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread=""
    file="ZTIBackup">
    <![LOG[ZTI Heartbeat: command has been running for 174 minutes (process ID 1568)]LOG]!><time="16:55:22.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread="" file="ZTIBackup">
    <![LOG[  Console > [  68% ] Capturing progress: 1:15:29 hrs remaining ]LOG]!><time="16:56:51.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread=""
    file="ZTIBackup">
    <![LOG[  Console > [  69% ] Capturing progress: 1:12:55 hrs remaining ]LOG]!><time="16:58:32.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread=""
    file="ZTIBackup">
    <![LOG[  Console > [  70% ] Capturing progress: 1:10:29 hrs remaining ]LOG]!><time="16:59:44.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread=""
    file="ZTIBackup">
    <![LOG[  Console > [  71% ] Capturing progress: 1:07:56 hrs remaining ]LOG]!><time="17:00:45.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread=""
    file="ZTIBackup">
    <![LOG[ZTI Heartbeat: command has been running for 179 minutes (process ID 1568)]LOG]!><time="17:00:45.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread="" file="ZTIBackup">
    <![LOG[  Console > [  72% ] Capturing progress: 1:05:07 hrs remaining ]LOG]!><time="17:02:14.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread=""
    file="ZTIBackup">
    <![LOG[  Console > [  73% ] Capturing progress: 1:02:13 hrs remaining ]LOG]!><time="17:04:24.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread=""
    file="ZTIBackup">
    <![LOG[  Console > [  74% ] Capturing progress: 59:21 mins remaining ]LOG]!><time="17:07:21.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread=""
    file="ZTIBackup">
    <![LOG[ZTI Heartbeat: command has been running for 186 minutes (process ID 1568)]LOG]!><time="17:07:21.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread="" file="ZTIBackup">
    <![LOG[  Console > [  75% ] Capturing progress: 57:19 mins remaining ]LOG]!><time="17:08:59.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread=""
    file="ZTIBackup">
    <![LOG[  Console > [  76% ] Capturing progress: 54:21 mins remaining ]LOG]!><time="17:12:43.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread=""
    file="ZTIBackup">
    <![LOG[ZTI Heartbeat: command has been running for 191 minutes (process ID 1568)]LOG]!><time="17:12:43.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread="" file="ZTIBackup">
    <![LOG[  Console > [  77% ] Capturing progress: 52:42 mins remaining ]LOG]!><time="17:14:16.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread=""
    file="ZTIBackup">
    <![LOG[  Console > [  78% ] Capturing progress: 50:16 mins remaining ]LOG]!><time="17:16:48.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread=""
    file="ZTIBackup">
    <![LOG[  Console > [  79% ] Capturing progress: 48:22 mins remaining ]LOG]!><time="17:18:10.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread=""
    file="ZTIBackup">
    <![LOG[ZTI Heartbeat: command has been running for 197 minutes (process ID 1568)]LOG]!><time="17:18:10.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread="" file="ZTIBackup">
    <![LOG[  Console > [  80% ] Capturing progress: 46:27 mins remaining ]LOG]!><time="17:18:47.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread=""
    file="ZTIBackup">
    <![LOG[  Console > [  81% ] Capturing progress: 44:11 mins remaining ]LOG]!><time="17:19:20.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread=""
    file="ZTIBackup">
    <![LOG[  Console > [  82% ] Capturing progress: 41:31 mins remaining ]LOG]!><time="17:20:31.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread=""
    file="ZTIBackup">
    <![LOG[  Console > [  83% ] Capturing progress: 38:07 mins remaining ]LOG]!><time="17:23:49.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread=""
    file="ZTIBackup">
    <![LOG[ZTI Heartbeat: command has been running for 202 minutes (process ID 1568)]LOG]!><time="17:23:49.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread="" file="ZTIBackup">
    <![LOG[  Console > [  84% ] Capturing progress: 35:48 mins remaining ]LOG]!><time="17:26:06.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread=""
    file="ZTIBackup">
    <![LOG[  Console > [  85% ] Capturing progress: 33:25 mins remaining ]LOG]!><time="17:28:43.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread=""
    file="ZTIBackup">
    <![LOG[ZTI Heartbeat: command has been running for 207 minutes (process ID 1568)]LOG]!><time="17:28:43.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread="" file="ZTIBackup">
    <![LOG[  Console > [  86% ] Capturing progress: 31:18 mins remaining ]LOG]!><time="17:30:54.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread=""
    file="ZTIBackup">
    <![LOG[  Console > [  87% ] Capturing progress: 29:37 mins remaining ]LOG]!><time="17:31:54.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread=""
    file="ZTIBackup">
    <![LOG[  Console > [  88% ] Capturing progress: 27:55 mins remaining ]LOG]!><time="17:32:07.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread=""
    file="ZTIBackup">
    <![LOG[  Console > [  89% ] Capturing progress: 25:04 mins remaining ]LOG]!><time="17:34:07.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread=""
    file="ZTIBackup">
    <![LOG[ZTI Heartbeat: command has been running for 213 minutes (process ID 1568)]LOG]!><time="17:34:07.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread="" file="ZTIBackup">
    <![LOG[  Console > [  90% ] Capturing progress: 22:52 mins remaining ]LOG]!><time="17:35:22.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread=""
    file="ZTIBackup">
    <![LOG[  Console > [  91% ] Capturing progress: 20:47 mins remaining ]LOG]!><time="17:36:14.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread=""
    file="ZTIBackup">
    <![LOG[  Console > [  92% ] Capturing progress: 18:33 mins remaining ]LOG]!><time="17:37:14.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread=""
    file="ZTIBackup">
    <![LOG[  Console > [  93% ] Capturing progress: 16:14 mins remaining ]LOG]!><time="17:38:22.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread=""
    file="ZTIBackup">
    <![LOG[  Console > [  94% ] Capturing progress: 13:54 mins remaining ]LOG]!><time="17:39:40.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread=""
    file="ZTIBackup">
    <![LOG[ZTI Heartbeat: command has been running for 218 minutes (process ID 1568)]LOG]!><time="17:39:40.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread="" file="ZTIBackup">
    <![LOG[ZTI Heartbeat: command has been running for 224 minutes (process ID 1568)]LOG]!><time="17:45:04.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread="" file="ZTIBackup">
    <![LOG[Return code from command = -1073741819]LOG]!><time="17:45:05.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread="" file="ZTIBackup">
    <![LOG[Error creating an image of drive C:, rc = -1073741819]LOG]!><time="17:45:05.000+000" date="08-15-2014" component="ZTIBackup" context="" type="3" thread="" file="ZTIBackup">
    <![LOG[ZTIBackup COMPLETED.  Return Value = -1073741819]LOG]!><time="17:45:05.000+000" date="08-15-2014" component="ZTIBackup" context="" type="1" thread="" file="ZTIBackup">
    <![LOG[ZTI ERROR - Non-zero return code by ZTIBackup, rc = -1073741819  0xC0000005]LOG]!><time="17:45:05.000+000" date="08-15-2014" component="ZTIBackup" context="" type="3" thread=""
    file="ZTIBackup">

    Not sure what's going on here. Possibly a corrupt drive? Or the target drive is full?
    Try running the imagex command manually from a F8 cmd window (in WinPE)
    "\\OCS-MDT\CCBShare$\Tools\X64\imagex.exe" /capture /compress maximum C: "\\OCS-MDT\CCBShare$\Captures\CCB01-8_15_14.wim" "CCB01CDrive" /flags ENTERPRISE
    Keith Garner - Principal Consultant [owner] -
    http://DeploymentLive.com

  • Dell Laptops E7440 & E7240 - Issues with connecting to MDT 2012 deployment share

    Hi,
      Good afternoon.Need help on this please
    -Test laptops Iam using are 2 * E7440 and 1*E7240. One laptop of model E7440 has our image installed and other two (1*E7440 & 1*E7240) are shipped from Dell with default Win 7 64 bit OS.
    -Test desktops Iam using are Dell Optiplex 3020 & Dell 3010 . Both models have our own images of Win 7 64 Bit.
    -Laptops and desktops are on same network .
    -For OS deployments we have MDT 2012.
    -While there are no issues with desktops, all the laptops mentioned above don’t connect to MDT deployments share . The detailed error message I get when I run a litetouch ISO is ‘A connection to the deployment share could not be made. Connection OJ.Possible
    cause:invalid credentials. Retry : Try again to connect to the deployment share.’
    -Have injected all possible network & storage drivers mentioned by Dell &  Intel into MDT boot image but the problem still persists. Still WinPE doesn’t detect network adapter wherein IPaddresses are not picked in WinPE mode.
    -Have been testing each and every driver by manually loading them into Winpe mode to see if they pick up the IP addresses and I finally found one driver by name ‘e1d63x64.inf ‘ which I downloaded directly from Intel website. This one is picking IP Address
    in WinPE mode when loaded manually. Also have tested the connectivity to MDT server in WinPE mode with net use command and it was successful.
    Have injected this driver into MDT Laptop deployment share, regenerated the ISO and tried again however Iam still unable to connect to the deployment share with litetouch ISO.
    The above driver is very much part of set of network drivers on Dell website too.But it doesn’t work.
    -Have also tried combination of network & storage drivers from Dell website  (along with the above one mentioned ) injecting them into the MDT laptop boot image but no luck.
    -Every time I make changes to drivers in boot image,I update deployment share & recreate boot image .
    -This very litetouch iso connects to  MDT deployments share for Dell desktop models 3010 & 3020 but have issues with laptop models E7440 & E7240. This means any connectivity or access issues can be ruled out. Also no problem with our image cause
    this happens even with brand new shipped laptops with your inbuild win 7 OS.
    -Have tried all options suggested on internet,tested all the drivers suggested but no luck.
    -For example I tried latest E7440 netwrok & storage drivers ,Dell Win PE drivers,drivers from Intel website,etc  individually as well as in combinations but the issue persists.
    -If you google many express similar issues with these laptop models.
    Though I used the drivers suggested by various bloggers,nothing worked for me.
    Any help on this is appreciated.Thanks in advance.

    Hi,
    I have several E6420, O3010 and since a week also some E7440 and E7240 on site.
    I never had issues using the current Dell PE package for MDT.
    At the moment my PE contains only the drivers from the Dell PE 3.0 package (WinPE3.0-Drivers-A13-D67JC)
    and all my systems mentioned abobe have no issues connecting to the deployment share.
    (btw: I have also some older E6400, E6410 and O390 I do no longer support, they
    are supported by the pack Dell-WinPE-Drivers-A05.CAB according
    to the Dell site, but I just started a deplymenst on a E6410 and is is also workign with just the latest PE pack)
    I'd
    suggest you start over with your deplyoment share using at least MDT2012 Update 1.
    Create a folder "PE" under "Out-of-Box Drivers" and extract latest Dell PE pack and import he drivers there
    Create a selection profile e.g. "PE Drivers" and include just the "PE" folder created above
    When configuring the Windows PE  settings of your deployment share select "PE
    Drivers" selection profile for the driver injection in the "Drivers and Patches" to keep the PE image free of not needed drives.

  • Windows Vista is not installing using MDT 2012 update 1

    I have created a media using selection profile in MDT 2012 update 1, but it is not deploying my physical machine. I get error message that Windows Cannot copy files required for installation. Make Sure all files required for installations are available.
    However i have successfully deployed Windows & and Windows XP with MDT 2012.
    I also used different iso image of vista but still i get same error message.

    Looks like you have a *NEW* issue that is unrelated to this thread. Generally I recommend that you open a new thread.
    How to Debug missing Drivers in MDT Litetouch
    I see that you say there are *Problems* but you don't list which devices or drivers are missing.
    From your Bdd.log file I can see that the following drivers are getting copied locally:
    xcopy /seihycd "D:\Deploy\Out-of-box Drivers\Net\e1c60x64_12.6.45.0_63DFBEA09BC1202B9E644652FC90898475BD80F6" "C:\Drivers\Net\e1c60x64_12.6.45.0_63DFBEA09BC1202B9E644652FC90898475BD80F6"
    xcopy /seihycd "D:\Deploy\Out-of-box Drivers\Net\e1c62x64_12.6.45.0_81A271BF21927B572C82D21D23EF89BD7E0ED315" "C:\Drivers\Net\e1c62x64_12.6.45.0_81A271BF21927B572C82D21D23EF89BD7E0ED315"
    xcopy /seihycd "D:\Deploy\Out-of-box Drivers\Net\e1c63x64_12.6.45.0_5B2448F2D9E89D0D8A718B71175BC6A559C8DC6A" "C:\Drivers\Net\e1c63x64_12.6.45.0_5B2448F2D9E89D0D8A718B71175BC6A559C8DC6A"
    xcopy /seihycd "D:\Deploy\Out-of-box Drivers\System\2008s4el_9.1.9.1005_2CA3E45C2F9AFCC12681EC010E1D73FEA7613AA9" "C:\Drivers\System\2008s4el_9.1.9.1005_2CA3E45C2F9AFCC12681EC010E1D73FEA7613AA9"
    xcopy /seihycd "D:\Deploy\Out-of-box Drivers\System\cdvcore_9.2.2.1039_5676255595E54B75DA4EBCF4BB54B7CBA83C68D4" "C:\Drivers\System\cdvcore_9.2.2.1039_5676255595E54B75DA4EBCF4BB54B7CBA83C68D4"
    However I can't tell what the problem is.
    Keith Garner - Principal Consultant [owner] -
    http://DeploymentLive.com

  • MDT 2012 U1 Blue Screen on task sequence ??

    My Customer have MDT 2012 U1, so when he start a task sequence when the task start apply operating system, after the system restart and when the computer install the system the blue screen appear. It is very strange beacause the same task sequence work on
    some other model but in this Lenove M82 (3306-G1F) and M82 (M3395-AB4) we have the same error. But on other Lenovo model the same task work very fine. Why?
    SMSTS.log
    We do not find an available volume to store the local data path TSManager 2014-09-11 08:54:07 1892 (0x0764)
    Set a global environment variable _SMSTSNextInstructionPointer=24 TSManager 2014-09-11 08:54:07 1892 (0x0764)
    Set a TS execution environment variable _SMSTSNextInstructionPointer=24 TSManager 2014-09-11 08:54:07 1892 (0x0764)
    Set a global environment variable _SMSTSInstructionStackString=22 TSManager 2014-09-11 08:54:07 1892 (0x0764)
    Set a TS execution environment variable _SMSTSInstructionStackString=22 TSManager 2014-09-11 08:54:07 1892 (0x0764)
    Save the current environment block TSManager 2014-09-11 08:54:07 1892 (0x0764)
    pszPath[0] != L'\0', HRESULT=80070057 (c:\qfe\nts_sms_fre\sms\framework\core\ccmcore\path.cpp,58) TSManager 2014-09-11 08:54:07 1892 (0x0764)
    Filesystem::Path::Add(sEnvPath, EnvDataFileName, sEnvPath), HRESULT=80070057 (e:\nts_sms_fre\sms\framework\tscore\environmentlib.cpp,639) TSManager 2014-09-11 08:54:07 1892 (0x0764)
    Failed to save environment to  (80070057) TSManager 2014-09-11 08:54:07 1892 (0x0764)
    TS::Environment::SharedEnvironment.saveEnvironment(szPath), HRESULT=80070057 (e:\nts_sms_fre\sms\client\tasksequence\executionengine\executionenv.cxx,842) TSManager 2014-09-11 08:54:07 1892 (0x0764)
    Failed to save the current environment block. This is usually caused by a problem with the program. Please check the Microsoft Knowledge Base to determine if this is a known issue or contact Microsoft Support Services for further assistance.
    Unknown error (Error: 80070057; Source: Unknown) TSManager 2014-09-11 08:54:07 1892 (0x0764)
    SaveEnvironment(), HRESULT=80070057 (e:\nts_sms_fre\sms\client\tasksequence\executionengine\executionenv.cxx,420) TSManager 2014-09-11 08:54:07 1892 (0x0764)
    Failed to persist execution state. Error 0x(80070057) TSManager 2014-09-11 08:54:07 1892 (0x0764)
    Failed to save execution state and environment to local hard disk TSManager 2014-09-11 08:54:07 1892 (0x0764)
    Start executing an instruciton. Instruction name: New Computer only. Instruction pointer: 24 TSManager 2014-09-11 08:54:07 1892 (0x0764)
    Set a global environment variable _SMSTSCurrentActionName=New Computer only TSManager 2014-09-11 08:54:07 1892 (0x0764)
    Set a global environment variable _SMSTSNextInstructionPointer=24 TSManager 2014-09-11 08:54:07 1892 (0x0764)
    Evaluating an AND expression TSManager 2014-09-11 08:54:07 1892 (0x0764)
    Evaluating a variable condition expression TSManager 2014-09-11 08:54:07 1892 (0x0764)
    Variable = DeploymentType TSManager 2014-09-11 08:54:07 1892 (0x0764)
    Value = NEWCOMPUTER TSManager 2014-09-11 08:54:07 1892 (0x0764)
    Operator = equals TSManager 2014-09-11 08:54:07 1892 (0x0764)
    Expand a string: equals TSManager 2014-09-11 08:54:07 1892 (0x0764)
    Expand a string: DeploymentType TSManager 2014-09-11 08:54:07 1892 (0x0764)
    Expand a string: NEWCOMPUTER TSManager 2014-09-11 08:54:07 1892 (0x0764)
    The variable condition expression is evaluated to be TRUE TSManager 2014-09-11 08:54:07 1892 (0x0764)
    The AND expression is evaluated to be TRUE TSManager 2014-09-11 08:54:07 1892 (0x0764)
    The condition for the group (New Computer only) is evaluated to be true TSManager 2014-09-11 08:54:07 1892 (0x0764)
    The group (New Computer only) has been successfully started TSManager 2014-09-11 08:54:07 1892 (0x0764)
    Sending status message . . . TSManager 2014-09-11 08:54:07 1892 (0x0764)
    Executing in non SMS standalone mode. Ignoring send a task execution status message request TSManager 2014-09-11 08:54:07 1892 (0x0764)
    User did not specify local data drive TSManager 2014-09-11 08:54:07 1892 (0x0764)
    Volume D:\ is not a fixed hard drive TSManager 2014-09-11 08:54:07 1892 (0x0764)
    Volume X:\ is not a fixed hard drive TSManager 2014-09-11 08:54:07 1892 (0x0764)
    Volume Z:\ is not a fixed hard drive TSManager 2014-09-11 08:54:07 1892 (0x0764)
    BDD.log
    Property LogPath is now = X:\MININT\SMSOSD\OSDLOGS LiteTouch 2014-09-11 08:53:34 0 (0x0000)
    Microsoft Deployment Toolkit version: 6.1.2373.0 LiteTouch 2014-09-11 08:53:34 0 (0x0000)
    Property Debug is now = FALSE LiteTouch 2014-09-11 08:53:34 0 (0x0000)
    ZTIUtility!GetAllFixedDrives (Faux) LiteTouch 2014-09-11 08:53:34 0 (0x0000)
    ZTIUtility!GetAllFixedDrives =  LiteTouch 2014-09-11 08:53:34 0 (0x0000)
    No task sequence is in progress. LiteTouch 2014-09-11 08:53:34 0 (0x0000)
    New ZTIDisk :
    \\MININT-KGJQ3PL\root\cimv2:Win32_DiskDrive.DeviceID="\\\\.\\PHYSICALDRIVE0" LiteTouch 2014-09-11 08:53:34 0 (0x0000)
    Found Possible OS TargetDisk:
    \\MININT-KGJQ3PL\root\cimv2:Win32_DiskDrive.DeviceID="\\\\.\\PHYSICALDRIVE0" LiteTouch 2014-09-11 08:53:34 0 (0x0000)
    GetPartitions: 0 LiteTouch 2014-09-11 08:53:34 0 (0x0000)
    Did not find disk. LiteTouch 2014-09-11 08:53:34 0 (0x0000)
    Property SMSTSLocalDataDrive is now =  LiteTouch 2014-09-11 08:53:34 0 (0x0000)
    Unable to connect to BCDStore. LiteTouch 2014-09-11 08:53:40 0 (0x0000)
    Not running within WinPE or WinRE. LiteTouch 2014-09-11 08:53:40 0 (0x0000)
    Property DeploymentMethod is now = UNC LiteTouch 2014-09-11 08:53:40 0 (0x0000)
    DeploymentMethod = UNC LiteTouch 2014-09-11 08:53:40 0 (0x0000)
    Property DeployRoot is now = X:\Deploy LiteTouch 2014-09-11 08:53:40 0 (0x0000)
    Using a local or mapped drive, no connection is required. LiteTouch 2014-09-11 08:53:40 0 (0x0000)
    DeployRoot = X:\Deploy LiteTouch 2014-09-11 08:53:40 0 (0x0000)
    Property DeployDrive is now = X: LiteTouch 2014-09-11 08:53:40 0 (0x0000)
    DeployDrive = X: LiteTouch 2014-09-11 08:53:40 0 (0x0000)
    Property PHASE is now = PREINSTALL LiteTouch 2014-09-11 08:53:40 0 (0x0000)
    Property DeploymentType is now = NEWCOMPUTER LiteTouch 2014-09-11 08:53:40 0 (0x0000)
    Phase = PREINSTALL LiteTouch 2014-09-11 08:53:40 0 (0x0000)
    About to run command: wscript.exe "X:\Deploy\Scripts\ZTIGather.wsf" /inifile:Bootstrap.ini LiteTouch 2014-09-11 08:53:40 0 (0x0000)
    Property inifile is now = Bootstrap.ini ZTIGather 2014-09-11 08:53:40 0 (0x0000)
    Microsoft Deployment Toolkit version: 6.1.2373.0 ZTIGather 2014-09-11 08:53:40 0 (0x0000)
    ------------------------- Object Initialization ------------------------- ZTIGather 2014-09-11 08:53:40 0 (0x0000)
    ------------------------- Initialization ------------------------- ZTIGather 2014-09-11 08:53:40 0 (0x0000)
    Synchronizing the environments. ZTIGather 2014-09-11 08:53:40 0 (0x0000)
    Property DeployRoot is now = X:\Deploy ZTIGather 2014-09-11 08:53:40 0 (0x0000)
    Property DeployDrive is now = X: ZTIGather 2014-09-11 08:53:40 0 (0x0000)
    Finished synchronizing the environments. ZTIGather 2014-09-11 08:53:40 0 (0x0000)
    Property definition is now = BDD_Welcome_ENU.xml Wizard 2014-09-11 08:53:40 0 (0x0000)
    Microsoft Deployment Toolkit version: 6.1.2373.0 Wizard 2014-09-11 08:53:40 0 (0x0000)
    Getting OS info ZTIGather 2014-09-11 08:53:40 0 (0x0000)
    Property OSCurrentVersion is now = 6.1.7601 ZTIGather 2014-09-11 08:53:40 0 (0x0000)
    Property OSCurrentBuild is now = 7601 ZTIGather 2014-09-11 08:53:40 0 (0x0000)
    Property OSVersion is now = WinPE ZTIGather 2014-09-11 08:53:40 0 (0x0000)
    Property IsServerOS is now = False ZTIGather 2014-09-11 08:53:40 0 (0x0000)
    Property IsServerCoreOS is now = False ZTIGather 2014-09-11 08:53:40 0 (0x0000)
    Finished getting OS info ZTIGather 2014-09-11 08:53:40 0 (0x0000)
    Getting HAL information ZTIGather 2014-09-11 08:53:40 0 (0x0000)
    Not Wizard = Faux Wizard 2014-09-11 08:53:40 0 (0x0000)
    Property WizardComplete is now = N Wizard 2014-09-11 08:53:40 0 (0x0000)
    Property HALName is now = acpiapic ZTIGather 2014-09-11 08:53:40 0 (0x0000)
    Finished getting HAL information ZTIGather 2014-09-11 08:53:40 0 (0x0000)
    Getting network info ZTIGather 2014-09-11 08:53:40 0 (0x0000)
    Checking network adapter: [00000000] Intel(R) 82579LM Gigabit Network Connection ZTIGather 2014-09-11 08:53:40 0 (0x0000)
    MAC address = 44:37:E6:D0:8F:EF ZTIGather 2014-09-11 08:53:40 0 (0x0000)
    IP Address = 10.26.33.23 ZTIGather 2014-09-11 08:53:40 0 (0x0000)
    IP Address = fe80::8d70:f039:f93f:e5e9 ZTIGather 2014-09-11 08:53:40 0 (0x0000)
    Default Gateway = 10.26.32.1 ZTIGather 2014-09-11 08:53:40 0 (0x0000)
    Property IPAddress001 is now = 10.26.33.23 ZTIGather 2014-09-11 08:53:40 0 (0x0000)
    Property IPAddress002 is now = fe80::8d70:f039:f93f:e5e9 ZTIGather 2014-09-11 08:53:40 0 (0x0000)
    Property MacAddress001 is now = 44:37:E6:D0:8F:EF ZTIGather 2014-09-11 08:53:40 0 (0x0000)
    Property DefaultGateway001 is now = 10.26.32.1 ZTIGather 2014-09-11 08:53:40 0 (0x0000)
    Finished getting network info ZTIGather 2014-09-11 08:53:41 0 (0x0000)
    Getting DP info ZTIGather 2014-09-11 08:53:41 0 (0x0000)
    Unable to determine ConfigMgr distribution point ZTIGather 2014-09-11 08:53:41 0 (0x0000)
    Finished getting DP info ZTIGather 2014-09-11 08:53:41 0 (0x0000)
    Getting WDS server info ZTIGather 2014-09-11 08:53:41 0 (0x0000)
    Unable to determine WDS server name, probably not booted from WDS. ZTIGather 2014-09-11 08:53:41 0 (0x0000)
    Finished getting WDS server info ZTIGather 2014-09-11 08:53:41 0 (0x0000)
    Property HostName is now = MININT-KGJQ3PL ZTIGather 2014-09-11 08:53:41 0 (0x0000)
    Getting asset info ZTIGather 2014-09-11 08:53:41 0 (0x0000)
    Unable to determine asset tag via WMI. ZTIGather 2014-09-11 08:53:41 0 (0x0000)
    FindFile(...\Microsoft.BDD.Utility.dll)  Result : 0 ZTIGather 2014-09-11 08:53:42 0 (0x0000)
    RUN: regsvr32.exe /s "X:\Deploy\Tools\x86\Microsoft.BDD.Utility.dll" ZTIGather 2014-09-11 08:53:42 0 (0x0000)
    FindFile: The file x64\Microsoft.BDD.Utility.dll could not be found in any standard locations. ZTIGather 2014-09-11 08:53:42 0 (0x0000)
    FindFile(...\Microsoft.BDD.Utility.dll)  Result : 1 ZTIGather 2014-09-11 08:53:42 0 (0x0000)
    RUN: regsvr32.exe /s "" ZTIGather 2014-09-11 08:53:42 0 (0x0000)
    Property AssetTag is now =  ZTIGather 2014-09-11 08:53:42 0 (0x0000)
    Property SerialNumber is now = MJ24PLX ZTIGather 2014-09-11 08:53:42 0 (0x0000)
    Property Make is now = LENOVO ZTIGather 2014-09-11 08:53:42 0 (0x0000)
    Property Model is now = 3306G1F ZTIGather 2014-09-11 08:53:42 0 (0x0000)
    Property Product is now = MAHOBAY ZTIGather 2014-09-11 08:53:42 0 (0x0000)
    Property UUID is now = 4C5C19C8-5CD9-11E3-8E8B-153233E31400 ZTIGather 2014-09-11 08:53:42 0 (0x0000)
    Property Memory is now = 3891 ZTIGather 2014-09-11 08:53:42 0 (0x0000)
    Property Architecture is now = X86 ZTIGather 2014-09-11 08:53:42 0 (0x0000)
    Property ProcessorSpeed is now = 3300 ZTIGather 2014-09-11 08:53:42 0 (0x0000)
    Property CapableArchitecture is now = AMD64 X64 X86 ZTIGather 2014-09-11 08:53:42 0 (0x0000)
    Property IsLaptop is now = False ZTIGather 2014-09-11 08:53:42 0 (0x0000)
    Property IsDesktop is now = True ZTIGather 2014-09-11 08:53:42 0 (0x0000)
    Property IsServer is now = False ZTIGather 2014-09-11 08:53:42 0 (0x0000)
    Property IsUEFI is now = False ZTIGather 2014-09-11 08:53:42 0 (0x0000)
    Property IsOnBattery is now = False ZTIGather 2014-09-11 08:53:42 0 (0x0000)
    Property SupportsX86 is now = True ZTIGather 2014-09-11 08:53:42 0 (0x0000)
    Property SupportsX64 is now = True ZTIGather 2014-09-11 08:53:42 0 (0x0000)
    Property SupportsSLAT is now = False ZTIGather 2014-09-11 08:53:42 0 (0x0000)
    Finished getting asset info ZTIGather 2014-09-11 08:53:42 0 (0x0000)
    Getting OS SKU info ZTIGather 2014-09-11 08:53:42 0 (0x0000)
    Unable to determine Windows SKU while in Windows PE. ZTIGather 2014-09-11 08:53:42 0 (0x0000)
    Determining the Disk and Partition Number from the Logical Drive X:\WINDOWS ZTIGather 2014-09-11 08:53:42 0 (0x0000)
    Property OriginalArchitecture is now =  ZTIGather 2014-09-11 08:53:42 0 (0x0000)
    Getting virtualization info ZTIGather 2014-09-11 08:53:42 0 (0x0000)
    Property IsHypervisorRunning is now = False ZTIGather 2014-09-11 08:53:42 0 (0x0000)
    Property SupportsVT is now = True ZTIGather 2014-09-11 08:53:42 0 (0x0000)
    Property SupportsNX is now = True ZTIGather 2014-09-11 08:53:42 0 (0x0000)
    Property Supports64Bit is now = True ZTIGather 2014-09-11 08:53:42 0 (0x0000)
    Property SupportsHyperVRole is now = True ZTIGather 2014-09-11 08:53:42 0 (0x0000)
    This computer does not appear to be a virtual machine (BIOS is 'LENOVO - 14c0'). ZTIGather 2014-09-11 08:53:42 0 (0x0000)
    Property IsVM is now = False ZTIGather 2014-09-11 08:53:42 0 (0x0000)
    Finished getting virtualization info ZTIGather 2014-09-11 08:53:42 0 (0x0000)
    Connection succeeded to MicrosoftVolumeEncryption ZTIGather 2014-09-11 08:53:42 0 (0x0000)
    There are no encrypted drives ZTIGather 2014-09-11 08:53:42 0 (0x0000)
    Property IsBDE is now = False ZTIGather 2014-09-11 08:53:42 0 (0x0000)
    Processing the PREINSTALL phase. ZTIGather 2014-09-11 08:53:42 0 (0x0000)
    Determining the INI file to use. ZTIGather 2014-09-11 08:53:42 0 (0x0000)
    Finished determining the INI file to use. ZTIGather 2014-09-11 08:53:42 0 (0x0000)
    Using from [Settings]: Rule Priority = DEFAULT ZTIGather 2014-09-11 08:53:42 0 (0x0000)
    ------ Processing the [DEFAULT] section ------ ZTIGather 2014-09-11 08:53:42 0 (0x0000)
    Property DEPLOYROOT is now = \\10.26.32.40\DeploymentShare$ ZTIGather 2014-09-11 08:53:43 0 (0x0000)
    Using from [DEFAULT]: DEPLOYROOT =
    \\10.26.32.40\DeploymentShare$ ZTIGather 2014-09-11 08:53:43 0 (0x0000)
    Property USERID is now = Administrateur ZTIGather 2014-09-11 08:53:43 0 (0x0000)
    Using from [DEFAULT]: USERID = Administrateur ZTIGather 2014-09-11 08:53:43 0 (0x0000)
    Property USERDOMAIN is now = crdiq03 ZTIGather 2014-09-11 08:53:43 0 (0x0000)
    Using from [DEFAULT]: USERDOMAIN = crdiq03 ZTIGather 2014-09-11 08:53:43 0 (0x0000)
    <Message containing password has been suppressed> ZTIGather 2014-09-11 08:53:43 0 (0x0000)
    <Message containing password has been suppressed> ZTIGather 2014-09-11 08:53:43 0 (0x0000)
    Property KEYBOARDLOCALEPE is now = 0c0c:00001009 ZTIGather 2014-09-11 08:53:43 0 (0x0000)
    Using from [DEFAULT]: KEYBOARDLOCALEPE = 0c0c:00001009 ZTIGather 2014-09-11 08:53:43 0 (0x0000)
    Property SKIPBDDWELCOME is now = YES ZTIGather 2014-09-11 08:53:43 0 (0x0000)
    Using from [DEFAULT]: SKIPBDDWELCOME = YES ZTIGather 2014-09-11 08:53:43 0 (0x0000)
    ------ Done processing X:\Deploy\Scripts\Bootstrap.ini ------ ZTIGather 2014-09-11 08:53:43 0 (0x0000)
    Remapping variables. ZTIGather 2014-09-11 08:53:43 0 (0x0000)
    Property TaskSequenceID is now =  ZTIGather 2014-09-11 08:53:43 0 (0x0000)
    Property DeploymentType is now = NEWCOMPUTER ZTIGather 2014-09-11 08:53:43 0 (0x0000)
    Finished remapping variables. ZTIGather 2014-09-11 08:53:43 0 (0x0000)
    ZTIGather processing completed successfully. ZTIGather 2014-09-11 08:53:43 0 (0x0000)
    Command completed, return code = 0 LiteTouch 2014-09-11 08:53:43 0 (0x0000)
    Property WizardComplete is now = Y Wizard 2014-09-11 08:53:44 0 (0x0000)
    About to run command: wpeutil.exe SetKeyboardLayout 0c0c:00001009 LiteTouch 2014-09-11 08:53:44 0 (0x0000)
    Command completed, return code = 0 LiteTouch 2014-09-11 08:53:44 0 (0x0000)
    Validating connection to \\10.26.32.40\DeploymentShare$ LiteTouch 2014-09-11 08:53:44 0 (0x0000)
    Mapped Network UNC Path Z:  =
    \\10.26.32.40\DeploymentShare$ LiteTouch 2014-09-11 08:53:44 0 (0x0000)
    Found Existing UNC Path Z:  =
    \\10.26.32.40\DeploymentShare$ LiteTouch 2014-09-11 08:53:44 0 (0x0000)
    Successfully established connection using supplied credentials. LiteTouch 2014-09-11 08:53:44 0 (0x0000)
    About to run command: wscript.exe "X:\Deploy\Scripts\ZTIGather.wsf" /nolocalonly LiteTouch 2014-09-11 08:53:44 0 (0x0000)
    Property definition is now = WelcomeWiz_Initialize.xml Wizard 2014-09-11 08:53:44 0 (0x0000)
    Microsoft Deployment Toolkit version: 6.1.2373.0 Wizard 2014-09-11 08:53:44 0 (0x0000)
    Property nolocalonly is now =  ZTIGather 2014-09-11 08:53:44 0 (0x0000)
    Microsoft Deployment Toolkit version: 6.1.2373.0 ZTIGather 2014-09-11 08:53:44 0 (0x0000)
    ------------------------- Object Initialization ------------------------- ZTIGather 2014-09-11 08:53:44 0 (0x0000)
    ------------------------- Initialization ------------------------- ZTIGather 2014-09-11 08:53:44 0 (0x0000)
    Synchronizing the environments. ZTIGather 2014-09-11 08:53:44 0 (0x0000)
    Property DeployRoot is now = \\10.26.32.40\DeploymentShare$ ZTIGather 2014-09-11 08:53:44 0 (0x0000)
    Property DeployDrive is now = X: ZTIGather 2014-09-11 08:53:44 0 (0x0000)
    Finished synchronizing the environments. ZTIGather 2014-09-11 08:53:44 0 (0x0000)
    Skipping local settings gathering because it has already been done. ZTIGather 2014-09-11 08:53:44 0 (0x0000)
    Processing the PREINSTALL phase. ZTIGather 2014-09-11 08:53:44 0 (0x0000)
    Determining the INI file to use. ZTIGather 2014-09-11 08:53:44 0 (0x0000)
    Not Wizard = Faux Wizard 2014-09-11 08:53:44 0 (0x0000)
    Property WizardComplete is now = N Wizard 2014-09-11 08:53:44 0 (0x0000)
    Using DEFAULT VALUE: Ini file =
    \\10.26.32.40\DeploymentShare$\Control\CustomSettings.ini ZTIGather 2014-09-11 08:53:44 0 (0x0000)
    Finished determining the INI file to use. ZTIGather 2014-09-11 08:53:44 0 (0x0000)
    Added new custom property MYCUSTOMPROPERTY ZTIGather 2014-09-11 08:53:44 0 (0x0000)
    Using from [Settings]: Rule Priority = DEFAULT ZTIGather 2014-09-11 08:53:45 0 (0x0000)
    ------ Processing the [DEFAULT] section ------ ZTIGather 2014-09-11 08:53:45 0 (0x0000)
    Property EVENTSERVICE is now = http://10.26.32.40:9800 ZTIGather 2014-09-11 08:53:45 0 (0x0000)
    Using from [DEFAULT]: EVENTSERVICE = http://10.26.32.40:9800 ZTIGather 2014-09-11 08:53:45 0 (0x0000)
    Property OSINSTALL is now = YES ZTIGather 2014-09-11 08:53:45 0 (0x0000)
    Using from [DEFAULT]: OSINSTALL = YES ZTIGather 2014-09-11 08:53:45 0 (0x0000)
    Property JOINWORKGROUP is now = GROUPE ZTIGather 2014-09-11 08:53:45 0 (0x0000)
    Using from [DEFAULT]: JOINWORKGROUP = GROUPE ZTIGather 2014-09-11 08:53:45 0 (0x0000)
    Property TIMEZONE is now = 035 ZTIGather 2014-09-11 08:53:45 0 (0x0000)
    Using from [DEFAULT]: TIMEZONE = 035 ZTIGather 2014-09-11 08:53:45 0 (0x0000)
    Property TIMEZONENAME is now = Eastern Standard Time ZTIGather 2014-09-11 08:53:45 0 (0x0000)
    Using from [DEFAULT]: TIMEZONENAME = Eastern Standard Time ZTIGather 2014-09-11 08:53:45 0 (0x0000)
    Property KEYBOARDLOCALE is now = 0c0c:00001009 ZTIGather 2014-09-11 08:53:45 0 (0x0000)
    Using from [DEFAULT]: KEYBOARDLOCALE = 0c0c:00001009 ZTIGather 2014-09-11 08:53:45 0 (0x0000)
    Property USERLOCALE is now = fr-CA ZTIGather 2014-09-11 08:53:45 0 (0x0000)
    Using from [DEFAULT]: USERLOCALE = fr-CA ZTIGather 2014-09-11 08:53:45 0 (0x0000)
    Property UILANGUAGE is now = fr-CA ZTIGather 2014-09-11 08:53:45 0 (0x0000)
    Using from [DEFAULT]: UILANGUAGE = fr-CA ZTIGather 2014-09-11 08:53:45 0 (0x0000)
    Property SKIPCAPTURE is now = YES ZTIGather 2014-09-11 08:53:45 0 (0x0000)
    Using from [DEFAULT]: SKIPCAPTURE = YES ZTIGather 2014-09-11 08:53:45 0 (0x0000)
    <Message containing password has been suppressed> ZTIGather 2014-09-11 08:53:45 0 (0x0000)
    <Message containing password has been suppressed> ZTIGather 2014-09-11 08:53:45 0 (0x0000)
    Property SKIPAPPLICATIONS is now = YES ZTIGather 2014-09-11 08:53:45 0 (0x0000)
    Using from [DEFAULT]: SKIPAPPLICATIONS = YES ZTIGather 2014-09-11 08:53:45 0 (0x0000)
    Property SKIPCOMPUTERBACKUP is now = YES ZTIGather 2014-09-11 08:53:45 0 (0x0000)
    Using from [DEFAULT]: SKIPCOMPUTERBACKUP = YES ZTIGather 2014-09-11 08:53:45 0 (0x0000)
    Property SKIPDOMAINMEMBERSHIP is now = YES ZTIGather 2014-09-11 08:53:45 0 (0x0000)
    Using from [DEFAULT]: SKIPDOMAINMEMBERSHIP = YES ZTIGather 2014-09-11 08:53:45 0 (0x0000)
    Property SKIPCOMPUTERNAME is now = NO ZTIGather 2014-09-11 08:53:45 0 (0x0000)
    Using from [DEFAULT]: SKIPCOMPUTERNAME = NO ZTIGather 2014-09-11 08:53:45 0 (0x0000)
    Property SKIPDEPLOYMENTTYPE is now = YES ZTIGather 2014-09-11 08:53:45 0 (0x0000)
    Using from [DEFAULT]: SKIPDEPLOYMENTTYPE = YES ZTIGather 2014-09-11 08:53:45 0 (0x0000)
    Property SKIPUSERDATA is now = YES ZTIGather 2014-09-11 08:53:45 0 (0x0000)
    Using from [DEFAULT]: SKIPUSERDATA = YES ZTIGather 2014-09-11 08:53:45 0 (0x0000)
    Property SKIPPACKAGEDISPLAY is now = YES ZTIGather 2014-09-11 08:53:45 0 (0x0000)
    Using from [DEFAULT]: SKIPPACKAGEDISPLAY = YES ZTIGather 2014-09-11 08:53:45 0 (0x0000)
    Property SKIPLOCALESELECTION is now = YES ZTIGather 2014-09-11 08:53:45 0 (0x0000)
    Using from [DEFAULT]: SKIPLOCALESELECTION = YES ZTIGather 2014-09-11 08:53:45 0 (0x0000

    Hi,
    I agree with Damon.
    Might be the ConfigMgr Driver Injector will help you.
    This tool will allow you to capture installed drivers on your workstations and then will automatically import them in ConfigMgr 2012.
    http://gallery.technet.microsoft.com/ConfigMgr-Driver-Injector-aae7d17d
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Windows 7 Image Deployment Failed in HP model D530 using MDT 2012 and ADK 8.0

    Hi,
    I need your help to sort out the following issue.
    I have installed MDT 2012 +ADK 8.0  and created Windows 7 32 bit OS from CD in the deployment share and tried deploying the raw OS from Deployment Share in to a reference machine (HP D530) ,the deployment failed also couldn't able to capture
    Image from the machine,even the sysprep failed. This is the error
    Your PC needs to restart.
    Please hold down the power button.
    Error Code:0x0000005D
    Parameters:
    0x030F0209
    0x746E6547
    0X49656E69
    0X6C65746E
    So tried the same in another HP machine ,the deployment was success and also was able to capture the refrence machine.
    Need your help to find why this error occurred in this specific HP model D530 alone. Is it the reason that ADK was not supported in that specific model.
    D530 is the maximum available HW model in client environment so your help will be much appreciated.
    Thanks in Advance!!

    I have never seen that error before (see identical post). I did a quick internet search and found the following:
    http://optimizewindows8.wordpress.com/2013/03/26/how-to-fix-error-code-0x0000005d/
    Either:
    1) Upgrade your machines with modern processors that support the ADK.
          or
    2) Downgrade to the WAIK
    http://www.microsoft.com/en-us/download/details.aspx?id=5753 and stick with Windows 7.
    Keith Garner - keithga.wordpress.com

  • MDT 2012 'Failed to save Environment to (80070057) Error during Windows 7 x64 Pro Deployment

    Hi There,
    I've been using MDT for a little while now, but I'm having problems successfully deploying an image to a batch of new laptops. The laptop HDD's are completely blank, and I am PXE booting using an x64 Litetouch Image via WDS. I have successfully captured
    my image from a reference laptop (the same model that I'm trying to image), and I am now trying to deploy it using a standard client task sequence.
    The 'Install operating System' phase seems to go ok, but then sits for quite some time at the 'Applying Unattend.xml' stage, then eventually, I get a general error 'Task Sequence Failed - 80004005'. I then exit MDT (it doesn't reboot as it should), and let
    the laptop boot, which it does, and logs straight on into Windows, but gives me error along the lines of 'can't find the litetouch script', which I assume means MDT hasn't been able to copy it across. The laptop is however joined to our domain, and I pretty
    much just have to tick the 'require a password to log on to this computer' box in user accounts, and all looks ok.
    So in summary, the image is applying, but the laptop is not rebooting and running the final cleanup scripts.
    I have already changed the SATA mode to IDE, instead of AHCI, having read this sometimes causes problems. I also read that systems with UEFI BIOS can also cause problems with MDT, but I'm not sure if this is the case.
    I have edited my customsettings.ini, to copy log files back to my server, which it has done for me. Having looked at the logs (with CM Trace), I can see these errors:
    Failed to save environment to  (80070057)
    TSManager 26/03/2014 15:48:09
    1820 (0x071C)
    Failed to save the current environment block. This is usually caused by a problem with the program. Please check the Microsoft Knowledge Base to determine if this is a known issue or contact Microsoft Support Services for further assistance.
    The parameter is incorrect. (Error: 80070057; Source: Windows)
    TSManager 26/03/2014 15:48:09
    1820 (0x071C)
    Failed to persist execution state. Error 0x(80070057)
    TSManager 26/03/2014 15:48:09
    1820 (0x071C)
    Failed to save execution state and environment to local hard disk
    TSManager 26/03/2014 15:48:09
    1820 (0x071C)
    The task sequence execution engine can not reboot the machine because we failed to persist execution environment
    TSManager 26/03/2014 15:48:09
    1820 (0x071C)
    Fatal error is returned in check for reboot request of the action (Restart computer). 
    Unspecified error (Error: 80004005; Source: Windows)
    TSManager 26/03/2014 15:48:09
    1820 (0x071C)
    An error (0x80004005) is encountered in execution of the task sequence
    TSManager 26/03/2014 15:48:09
    1820 (0x071C)
    Task Sequence Engine failed! Code: 80004005
    TSManager 26/03/2014 15:48:09
    1820 (0x071C)
    Any help you can give me would be great, as I'd like to get this process running properly.
    Thanks,
    Sarah

    You don't mention what kind of OS this is (Windows 7 Pro x64?)
    This is a known issue/FAQ.
    I would recommending using MDT 2012 (update 1) for UEFI machines.
    Machines with uEFI 2.3.1 only support Windows 8.x.
    http://technet.microsoft.com/en-us/library/hh824898.aspx
    Recomendation: Convert the BIOS to CSM and/or upgrade to Windows 8.1 :^)
    Keith Garner - keithga.wordpress.com

  • MDT 2012 U1 LTI Format incorrect partition

    Hi, everyone:
    I recently  update for xp to Win7 use MDT 2012 Update 1. Everything looks can be, but except for some individual strange question. 
    Details are follows: 
    The original xp partition C: is Primary partition, also system disk; other is extended partition, including D and E drive. 
    After performing MDT task sequence (disabled "format and partition disk" step for only format C:),  this machine D drive formatted and put wim applied to the D drive. 
    On xp running wmic results are as follows:
     C:\>wmic path win32_diskpartition get bootable,bootpartition,caption,description
    Bootable  BootPartition  Caption                Description
              FALSE          Disk #0, Partition #0  Extended w/Extended Int 13
    TRUE      TRUE           Disk #0, Partition #1  Installable File System
    diskpart: 
    DISKPART> list part
      Partition ###  Type              Size     Offset
      Partition 1    Primary             24 GB    32 KB
      Partition 2    Extended           125 GB    24 GB
      Partition 3    Logical             49 GB    24 GB
      Partition 4    Logical             76 GB    73 GB
    Finally, I found that if  the disk 0,partition #1 is C driver, the task  sequence will fail.
    Anyone have a solution?  Thanks. 

    espero y te ayude estas opciones dentro de MDT
    http://blogs.itpro.es/octaviordz/2013/09/27/crear-particiones-de-windows-con-mdt-2012/
    Freelance-IT http://www.freelance-it.com.mx

  • MDT 2012 upd 1 and Windows / Component updates

    I am trying to create a deployment for Win 7 x64 in MDT 2012, and it is going quite well.  My problem is with the Windows Update passes -- for some reason it misses many Office and Component updates until I go to deploy.  Then it takes another
    hour to grab and install those.  I don't understand why it does not grab them during the TS process.
    I am doing a staged capture in a VM environment, starting with a zero-touch capture that includes Office 2010 and all the updates.  This is my thin image and it takes about 5.5 hours through capture.  Then I take this thin image, add standard apps
    that cannot be silently installed, customize desktop options that cannot be easily automated (another huge pain, but another topic), and, I was hoping, install all the updates for Office 2010 and other non-OS components.
    In the first TS, I run the updates pre-installation, use the TS step to install Office, and run them again post-installation.  It does pick up a few, but then the logs say the system is fully updated and goes on to the next step.
    In the second TS, I use the post-installation update step.  One of the apps I use installs SQL components, and the TS picks up on this and installs several updates it finds.  Then it decides the machine is up to date and moves on, skipping about
    40 updates as of this writing.
    As a test, I inserted a reboot step between app installation and the post-install Update step, but it still ignored the Office updates.  Research on the issue turned up the idea that at some point ZTIWindowsUpdate turns on the extra updates, and also
    several suggestions that this is how it is supposed to work (and why the standard TS is designed this way).
    I rolled my VM back to the suspended point and I'm running WU manually at the console.  I had to enable "Microsoft Update" manually, and now it is happily pulling down the updates.  I just hope there's enough smarts left in the VM to
    run to  the task to completion.
    I'm hoping that some whiz with the process can enlighten us on how to force ZTIWindowsUpdate to search for critical updates for all Microsoft components, not just the OS ones.
    UPDATE:
    Digging into the code and logs, it seems that a certain condition is not occurring to trigger the Microsoft Update service; bFoundMU must be true for this to happen.  A ServiceID hard coded is not being matched--the reason escapes me.  Near as
    I can tell, after a magic reboot it finally finds a match for this ServiceID.  Hopefully this snippet does not get munged...
        On Error Resume Next
                Item = oFSO.GetFileVersion ( ees("%SystemRoot%\System32\WUAUENG.DLL" ) )
                oLogging.CreateEntry "Ready to Opt-In to Microsoft Update: WUA Version: " & Item , LogTypeInfo
                Set ServiceManager = nothing
                Set ServiceManager = CreateObject("Microsoft.Update.ServiceManager")
            On Error Goto 0
            If ServiceManager is nothing then
                oLogging.CreateEntry "Failed to Create Object: Microsoft.Update.ServiceManager" , LogTypeWarning
            Else
                bFoundMU = False
                For each Item in ServiceManager.Services
                    WScript.Echo "Registered Update Service: " & Item.ServiceID & "   " & Item.Name
                    If Item.ServiceID = "7971f918-a847-4430-9279-4a52d1efe18d" then
                        bFoundMU = True
                    End if
                Next
                oLogging.CreateEntry "Microsoft Update Service:  Enabled = " & bFoundMU, LogTypeInfo
                If not bFoundMU then
                    On Error Resume Next
                        Err.clear
                        ServiceManager.ClientApplicationID = "My App"
                        If Err.Number <> 0 then
                            oLogging.CreateEntry "There was an error getting Windows Update to opt into Microsoft Update. Please verify you are running the latest version
    of Windows Update Agent." , LogTypeWarning
                        End if
    The logs look virtually identical between the two runs.  This is getting way deeper than I understand the update process or about service IDs.
    UPDATE 2:
    Digging further, it seems that the the condition of bFoundMU has no bearing on whether or not MU is used, but possibly the existence of muauth.cab.  From the deploy log where it actually started, bFoundMU is still false, but at that point the Office
    updates started to come in:
    <![LOG[Property MSIT_WU_Count is now = 1]LOG]!><time="11:05:32.000+000" date="04-24-2014" component="ZTIWindowsUpdate" context="" type="1" thread="" file="ZTIWindowsUpdate">
    <![LOG[Configuring Windows Update settings (manual update, use server)]LOG]!><time="11:05:32.000+000" date="04-24-2014" component="ZTIWindowsUpdate" context="" type="1" thread="" file="ZTIWindowsUpdate">
    <![LOG[Archive NoAUtoUpdate State: Was [<empty>].]LOG]!><time="11:05:32.000+000" date="04-24-2014" component="ZTIWindowsUpdate" context="" type="1" thread="" file="ZTIWindowsUpdate">
    <![LOG[Property NoAutoUpdate_Previous is now = <empty>]LOG]!><time="11:05:32.000+000" date="04-24-2014" component="ZTIWindowsUpdate" context="" type="1" thread="" file="ZTIWindowsUpdate">
    <![LOG[Windows Update Agent verion 6 found, OK to continue]LOG]!><time="11:05:34.000+000" date="04-24-2014" component="ZTIWindowsUpdate" context="" type="1" thread="" file="ZTIWindowsUpdate">
    <![LOG[Ready to Opt-In to Microsoft Update: WUA Version: 7.5.7601.17514]LOG]!><time="11:05:34.000+000" date="04-24-2014" component="ZTIWindowsUpdate" context="" type="1" thread="" file="ZTIWindowsUpdate">
    <![LOG[Microsoft Update Service:  Enabled = False]LOG]!><time="11:05:34.000+000" date="04-24-2014" component="ZTIWindowsUpdate" context="" type="1" thread="" file="ZTIWindowsUpdate">
    <![LOG[FindFile: The file muauth.cab could not be found in any standard locations.]LOG]!><time="11:05:34.000+000" date="04-24-2014" component="ZTIWindowsUpdate" context="" type="1"
    thread="" file="ZTIWindowsUpdate">
    <![LOG[ about to begin add service []]LOG]!><time="11:05:34.000+000" date="04-24-2014" component="ZTIWindowsUpdate" context="" type="1" thread="" file="ZTIWindowsUpdate">
    <![LOG[ Status: 3]LOG]!><time="11:05:35.000+000" date="04-24-2014" component="ZTIWindowsUpdate" context="" type="1" thread="" file="ZTIWindowsUpdate">
    <![LOG[Command Line Procesed Query=False Registered=False  UpdateCommand=[IsInstalled = 0 and IsHidden = 0]]LOG]!><time="11:05:36.000+000" date="04-24-2014" component="ZTIWindowsUpdate" context="" type="1"
    thread="" file="ZTIWindowsUpdate">
    <![LOG[Start Search...]LOG]!><time="11:05:36.000+000" date="04-24-2014" component="ZTIWindowsUpdate" context="" type="1" thread="" file="ZTIWindowsUpdate">
    __bunch of skipped updates__
    <![LOG[  SKIP  - 258b6ca1-a8ec-4dfa-b619-fb8cecac6e2e - Turkish Language Pack - Windows 7 Service Pack 1 for x64-based Systems (KB2483139) - 56 MB]LOG]!><time="11:14:02.000+000" date="04-24-2014" component="ZTIWindowsUpdate"
    context="" type="1" thread="" file="ZTIWindowsUpdate">
    <![LOG[INSTALL - 48f7e3b7-2c8f-4900-ae32-f3d8f29c988d - Microsoft SQL Server 2005 Express Edition Service Pack 4 (KB2463332) - 55 MB]LOG]!><time="11:14:02.000+000" date="04-24-2014" component="ZTIWindowsUpdate" context=""
    type="1" thread="" file="ZTIWindowsUpdate">
    <![LOG[INSTALL - d68e0cb2-9501-405e-af9c-156f352d6735 - Security Update for Microsoft Visual C++ 2010 Redistributable Package (KB2467173) - 8 MB]LOG]!><time="11:14:02.000+000" date="04-24-2014" component="ZTIWindowsUpdate"
    context="" type="1" thread="" file="ZTIWindowsUpdate">
    <![LOG[INSTALL - 719584bc-2208-4bc9-a650-d3d6347eb32e - Security Update for Microsoft Visual C++ 2010 Service Pack 1 Redistributable Package (KB2565063) - 9 MB]LOG]!><time="11:14:02.000+000" date="04-24-2014" component="ZTIWindowsUpdate"
    context="" type="1" thread="" file="ZTIWindowsUpdate">
    <![LOG[INSTALL - eb7a169f-6bca-4e00-a52a-623c063c162d - Update for Office File Validation 2010 (KB2553065), 32-bit Edition - 2 MB]LOG]!><time="11:14:02.000+000" date="04-24-2014" component="ZTIWindowsUpdate" context=""
    type="1" thread="" file="ZTIWindowsUpdate">
    <![LOG[INSTALL - f51a0e5b-24a9-4be1-8b36-0f22f99949e7 - Security Update for Microsoft SharePoint Workspace 2010 (KB2566445), 32-Bit Edition - 17 MB]LOG]!><time="11:14:02.000+000" date="04-24-2014" component="ZTIWindowsUpdate"
    context="" type="1" thread="" file="ZTIWindowsUpdate">
    <![LOG[INSTALL - 35eb79df-cb34-491c-ab0a-34b63f32b45c - Update for Microsoft Office 2010 (KB2553092), 32-Bit Edition - 9 KB]LOG]!><time="11:14:02.000+000" date="04-24-2014" component="ZTIWindowsUpdate" context=""
    type="1" thread="" file="ZTIWindowsUpdate">
    <![LOG[INSTALL - a6309b2e-7ee4-4b02-8ce9-cf39796a2411 - Update for Microsoft OneNote 2010 (KB2553290) 32-Bit Edition - 7 MB]LOG]!><time="11:14:02.000+000" date="04-24-2014" component="ZTIWindowsUpdate" context=""
    type="1" thread="" file="ZTIWindowsUpdate">
    <![LOG[INSTALL - f5202a56-ff34-401d-a040-f97c7f70891c - Update for Microsoft Office 2010 (KB2553310) 32-Bit Edition - 8 MB]LOG]!><time="11:14:02.000+000" date="04-24-2014" component="ZTIWindowsUpdate" context=""
    type="1" thread="" file="ZTIWindowsUpdate">
    <![LOG[INSTALL - 33a4aa0a-cb01-4326-85f4-4a7d33d8782b - Update for Microsoft Outlook Social Connector 2010 (KB2553406) 32-Bit Edition - 1 MB]LOG]!><time="11:14:02.000+000" date="04-24-2014" component="ZTIWindowsUpdate"
    context="" type="1" thread="" file="ZTIWindowsUpdate">
    <![LOG[INSTALL - aae5e2c7-3498-4f43-af66-aec06a59713f - Microsoft Silverlight (KB2636927) - 12 MB]LOG]!><time="11:14:02.000+000" date="04-24-2014" component="ZTIWindowsUpdate" context="" type="1"
    thread="" file="ZTIWindowsUpdate">
    <![LOG[INSTALL - c8077d6d-00c2-421b-89f6-30828574519a - Update for Microsoft Office 2010 (KB2767886) 32-Bit Edition - 271 KB]LOG]!><time="11:14:02.000+000" date="04-24-2014" component="ZTIWindowsUpdate" context=""
    type="1" thread="" file="ZTIWindowsUpdate">
    <![LOG[INSTALL - 9c5e43a3-3ae9-434d-b105-a9d7902d5f9f - Service Pack 2 for Microsoft Office 2010 (KB2687455) 32-Bit Edition - 395 MB]LOG]!><time="11:14:02.000+000" date="04-24-2014" component="ZTIWindowsUpdate" context=""
    type="1" thread="" file="ZTIWindowsUpdate">
    <![LOG[INSTALL - b8fcacb4-add0-4cc9-8551-675b59965798 - Update for Microsoft Office 2010 (KB2825640) 32-Bit Edition - 18 KB]LOG]!><time="11:14:02.000+000" date="04-24-2014" component="ZTIWindowsUpdate" context=""
    type="1" thread="" file="ZTIWindowsUpdate">
    <![LOG[INSTALL - 5923c276-0628-4ba4-be3d-e56aa029a14b - Security Update for Microsoft Office 2010 (KB2687423) 32-Bit Edition - 2 MB]LOG]!><time="11:14:02.000+000" date="04-24-2014" component="ZTIWindowsUpdate" context=""
    type="1" thread="" file="ZTIWindowsUpdate">
    <![LOG[INSTALL - 79b27019-3090-4309-bfdc-c8be9b21ab96 - Update for Microsoft Access 2010 (KB2553446) 32-Bit Edition - 7 MB]LOG]!><time="11:14:02.000+000" date="04-24-2014" component="ZTIWindowsUpdate" context=""
    type="1" thread="" file="ZTIWindowsUpdate">
    After the subsequent reboot, bFoundMU was set to true.

    Another detail I neglected to mention is that I am using two separate deployment shares, one for building the deploy image and the other for actual deployments.  I think I found another clue in the log, muauth.cab:
    <![LOG[FindFile: The file muauth.cab could not be found in any standard locations.]LOG]!><time="11:05:34.000+000" date="04-24-2014" component="ZTIWindowsUpdate" context="" type="1" thread="" file="ZTIWindowsUpdate">
    <![LOG[ about to begin add service []]LOG]!><time="11:05:34.000+000" date="04-24-2014" component="ZTIWindowsUpdate" context="" type="1" thread="" file="ZTIWindowsUpdate">
    The next stanza in ZTIWindowsUpdate.wsf is this:
    If oEnvironment.Item("WsusServer") = "" then
                              iResult = oUtility.FindFile("muauth.cab", strCabPath)
                            If iResult <> Success then
                                '// "" will force a internet search for cab file
                                strCabPath = ""
                            End if
                            oLogging.CreateEntry " about to begin add service ["+ strCabPath +"]", LogTypeInfo
                            Set NewUpdateService = ServiceManager.AddService2("7971f918-a847-4430-9279-4a52d1efe18d",6,strCabPath)
                            oLogging.CreateEntry " Status: " & NewUpdateService.RegistrationState, LogTypeInfo
                        End if
    Indeed, the muauth.cab file was present in my first one, but not the deployment one.  As the log says, since there is no muauth.cab file, the code will then go download it. 
    I don't know how, when, or why this happened (why is it in my first DS and not my second?), but a simple test this evening will confirm my suspicion that if the file is not present it will update as expected.

  • WDS & MDT 2012 Integration Questions: Do I need an install image on WDS if I'm multicasting from MDT

    I'm running WDS & MDT 2012 on Server 2012 for my deployment solution.  I have a few questions about what happens when you integrate WDS & MDT.
    Perhaps this is a simple question, but if WDS multicasts the installation image from MDT, do I need to have an image in the installation folder of WDS?  I have the "Enable multicasting" box checked whenever I update my deployment share
    Also, my server is running X64 architecture, so I have the x64 WAIK installed.  but I'm having issues editing the unattend.xml on my server because my images are all X86.  Keeping in mind that I already have the X64 WAIK installed, can i install
    the X86 WAIK tools on my server?

    Sorry, that's two questions you only get one... Just kidding...
    FOr MDT, you don't import the images into the WDS console, you just need to add a Multicast namespace.
    http://keithga.wordpress.com/2014/04/23/multicasting-with-mdt/
    AS for the unattend.xml edit issue, that is known:
    http://blogs.technet.com/b/deploymentguys/archive/2009/08/27/windows-7-waik-and-custom-images.aspx
    Keith Garner - Principal Consultant [owner] -
    http://DeploymentLive.com

  • Use a SQL 2012 database server with Reporting Services 2008?

    Hello, we have a SQL Server 2008 R2 Reporting Services Standard server with the reporting databases running on a SQL Server 2008 Standard database server. I would like to upgrade the database server to SQL Server 2012 before I upgrade the reporting server.
    Can I run SQL Server 2008 R2 Reporting Services against a 2008-version database running on a SQL 2012 database server? Thanks for your help.

     
    Hi Nicole
    Thanks for your posting.
    Are you asking if we can connect from SSRS 2008 r2 to a database sitting on SQL Server 2012.  Am I right?, please ignore me if I misunderstood your question. If that is your question
    then I think you will be able to using BIDS 2008, I have created A database on SQL Server 2012 and I use that database table inside  my SSRS 2008 R2 dataset. I can even think that you can use a database of compatibility level of 2012(110) as well
    Many thanks
    Syed Qazafi Anjum

Maybe you are looking for

  • How to Print Screen as a File on MacBook Pro Using Bootcamp 5.0 on Windows 8.1

    I know print screen on a MBP is Shift + Fn + F11, but I want to print screen as a file. I tried Shift + Fn + F11 + Command but it doesn't work. Does Bootcamp support this feature?

  • List missing fonts in Illustrator

    Hi all, I've been working on a script to try and build a list of font's that not loaded in Illustrator. I know that Illustrator will alert missing fonts when a document is opened but this routine will be part of a larger script that will have the use

  • Charging process is different in PC USB or adapter USB?

    My ipod is charged for 97%. If I connect it to my net adapter USB charger, it jumps to 100% instantly. When I disconnect it, I get 97% again. If I connect it to my PC USB port, it jumps to 95% instantly. When I disconnect it, it jumps back to 97%. I

  • Upgrading iPhone how do I ensure I don't lose app data?

    I'm about to upgrade my iPhone. How do I ensure I don't lose app data (ie angry birds scores) when this happens? Is any potential solution affected by the fact that my wife has her iPhone synced to the same computer as me and we share iTunes acct

  • Smart card reader refusing to work on OS X Mavericks

    Hi, I am the owner of a bit4id Minilector EVO, a little smart card reader (manufactured by ACS Advanced Card Systems) who I use to comply with the digital signatures required by the Italian law. There is an official application to use the smart cards