SCCM won´t capture image after ZTIWindowsUpdate

Hi!
We are running SCCM 2012 R2 and are using ZTIWindowsUpdate.wsf
to update our images.
Now we are having trouble that the image doesn't get captured after we have ran
ZTIWindowsUpdate.wsf in a Build and Capture OSD.
This is the last entries from ZTIWindowsUpdate.log:
More to install, Please reboot and run again!
ZTIWindowsUpdate 2015-04-09 16:38:27
0 (0x0000)
Property SMSTSRetryRequested is now = true ZTIWindowsUpdate
2015-04-09 16:38:27 0 (0x0000)
Property SMSTSRebootRequested is now = true
ZTIWindowsUpdate 2015-04-09 16:38:27
0 (0x0000)
ZTIWindowsUpdate processing completed successfully.
ZTIWindowsUpdate 2015-04-09 16:38:27
0 (0x0000)
Running ZTIWindowsUpdate.wsf is the last step in the Task Sequence before the capture.
There are 41 updates and according to the log they all get installed properly.

The link Torsten supplied is the best place to start.  Make sure you are not installing any updates that require multiple reboots.  You can exclude those updates using something like this:
https://scriptimus.wordpress.com/2012/03/22/mdt-2012-automating-updates-in-lite-touch-deployments/
Jeff

Similar Messages

  • Files not showing captured images after belle upda...

    after belle update i cant see the images i have captured with n8's camera in files(file manager of phone) even though i can see them in gallery.......only the captured images after update are not showing..does anybody else have the same problem..how could i resolve it?????
    Solved!
    Go to Solution.

    I have the similar problem after updating to Belle on my N8. My photos, previously taken with the phone are still somewhere on the memory card and are visible if I want to add them to the contact profile, but otherwise, can not locate them? Tried thru attach to e-mail, MMS, connected to PC and browsing .... It must be some hidden folder. Does anybody can help me? Thanks!

  • Capture image after Sysprep w/generalize option...

    Hello all. disclaimer...I'm more versed in IBM mainframe OSes but I can get around pretty good with Windows utils and concepts. But this is probably a noob kinda question ;-)
    I'm in a work environment where i have an image that has already been customized. The default administrator has already been created. So typically when an image is laid down via WDS I can sign in with the default admin account with no issues. I am now trying
    to capture this image after some required customizations. So i use Sysprep with the generalize option...BUT...here's my dilemma. I do not want to use OOBE. So how would I reseal the image under AUDIT before capture so that i may IMAGEX /APPLY my 'captured'
    image to deliver the same default sign-on screen upon successful completion of the apply of the image? I wish for no OOBE Welcome screen nor an AUDIT SYSPREP screen where I have to cancel out of. I wish to come to the same sign-on environment that I would
    come to had I just done a 'capture' with no SYSPREP involved.
    I know that IMAGEX /CAPTURE without a SYSPREP /GENERALIZE usage would give me exactly what I want. However, I do need the unique identifiers removed from the image of the testing PC. So I do need SYSPREP /GENERALIZE functionality.  Would I have to use
    an unattend.xml to achieve this? And if so, what passes would be necessary? I am not that familiar with the unattend file. But I have been reading up on it.
    I hope all of this makes clear sense. Any advice on how to proceed is greatly appreciated. Thanks.

    Yes, use an answer file with sysprep to fill out the OOBE information. Then the user will not see those screens after imaging. Here is an example XML i have handy.
    <?xml version="1.0" encoding="utf-8"?>
    <unattend xmlns="urn:schemas-microsoft-com:unattend">
    <settings pass="windowsPE">
    <component name="Microsoft-Windows-International-Core-WinPE" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <SetupUILanguage>
    <UILanguage>en-us</UILanguage>
    </SetupUILanguage>
    <InputLocale>en-us</InputLocale>
    <UILanguage>en-us</UILanguage>
    <SystemLocale>en-us</SystemLocale>
    <UILanguageFallback>en-us</UILanguageFallback>
    <UserLocale>en-us</UserLocale>
    </component>
    </settings>
    <settings pass="specialize">
    <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <ComputerName>*</ComputerName>
    <TimeZone>Eastern Standard Time</TimeZone>
    </component>
    <component name="Microsoft-Windows-IE-InternetExplorer" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <Home_Page>http://www.google.com/</Home_Page>
    <Help_Page>http://www.google.com/</Help_Page>
    <DisableFirstRunWizard>true</DisableFirstRunWizard>
    </component>
    </settings>
    <settings pass="oobeSystem">
    <component name="Microsoft-Windows-International-Core" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <InputLocale>0409:00000409</InputLocale>
    <SystemLocale>en-us</SystemLocale>
    <UILanguage>en-us</UILanguage>
    <UserLocale>en-us</UserLocale>
    </component>
    <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <OOBE>
    <HideEULAPage>true</HideEULAPage>
    <NetworkLocation>Other</NetworkLocation>
    <ProtectYourPC>3</ProtectYourPC>
    </OOBE>
    <UserAccounts>
    <LocalAccounts>
    <LocalAccount wcm:action="add">
    <Group>Administrators</Group>
    <DisplayName>UserAccount</DisplayName>
    <Name>UserAccount</Name>
    <Password>
    <Value>password</Value>
    <PlainText>true</PlainText>
    </Password>
    </LocalAccount>
    </LocalAccounts>
    </UserAccounts>
    </component>
    </settings>
    <cpi:offlineImage cpi:source="catalog:c:/image creation/install_windows 7 professional.clg" xmlns:cpi="urn:schemas-microsoft-com:cpi" />
    </unattend>

  • Camera won't capture image

    Camera will not capture images. Purely states 'unable to capture image'. Video camera comes up with coloured lines, no image. Reasonably new handset, have tried rebooting and clearing down all apps. Any ideas??

    Sounds like a hardware problem to me but i could be wrong. Try backing it up and doing a security wipe and see if it helps.

  • Scanner won't save images after Mac os 10.9 update OfficeJet J5780

    Have spent hours on this! Apple update and complete HP drivers offered through Apple do not fix the problem. CAn't find any fix on HP site, all lead back to apple, which appears to actually be the source of the problem. I can no longer save scanned images to my computer. This is crippling my ability to complete many important tasks. The Officejet has been flawless for years, don't want to buy a new one unless there is truly no fix. Thanks for any help offered.

    Hello ashley123,
    Welcome to the HP Support Forums!
    When you try to scan with the Officejet J5780 on Mac 10.9 and try to save to image, what happens? If you have already installed the HP printer driver package from Apple, I have a very limited amount of suggestions.
    With the said, these are my suggestion;
    Reset the printing system, Mac OS X: How to reset the printing system.
    Repair disk permissions (ignore the mention of only working on 10.7)
    Add the print once again in the Printer and Scanners area from System Preferences.
    If this does not allow the scan to save, you would be best to speak with Apple regarding a possible TWAIN issue.
    Regards,
    JERENDS
    I work on behalf of HP
    Please click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" to the left of the reply button to say “Thanks” for helping!

  • Windows 7 Professional PC hangs at "Loading files" when trying to boot with custom capture image on Windows Deployment Services.

    I have created a custom capture image in WDS. Now when I try to boot my reference PC into this image the PC hangs at "Loading files". The reference PC is running Windows 7 and I am using Windows Server 2012 Standard on my server.
    I have followed the instructions on how to create the custom capture image on the server to a fault. I PXE boot the PC and it shows the capture images after I hit F12. The problem is that it starts to boot and then hangs about 2/3 way through the progress
    bar.
    Any help would be appreciated.

    Hi Derrick Logan,
    We need know the detail phases your client hang, if it is irregular status, please collect the WDS log then post it. You can refer the following similar thread solution first.
    How to enable logging in Windows Deployment Services (WDS) in Windows Server 2003, Windows Server 2008, Windows Server 2008 R2, and in Windows Server 2012
    http://support.microsoft.com/kb/936625/en-us
    Windows is loading files... Hangs on WDS
    https://social.technet.microsoft.com/Forums/windowsserver/en-US/baacadc4-830d-43e1-ace8-3292e886958e/windows-is-loading-files-hangs-on-wds?forum=winserversetup
    WDS hangs at "Windows is loading files..." on a LAM jhl91 laptop
    https://social.technet.microsoft.com/Forums/windowsserver/en-US/3ebb6e0b-9f05-4fee-b3c0-129c34bb879d/wds-hangs-at-windows-is-loading-files-on-a-lam-jhl91-laptop?forum=winserversetup
    I’m glad to be of help to you!
    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.

  • Video clips won't play back after capture

    I am a long-time user of Premiere Elements, currently using version 9.0. I am capturing video clips from the same videocamera that I've used in previous versions of PE. My video clips won't play back after I capture them. The clip is in my "media" area, but when I try to play it back, the audio plays but the picture remains frozen on the starting image. What is happening?

    It is a Sony Handycam DCR-HC28, mini DV, using a firewire connection.
    Operating System is Windows XP Pro, Service Pack 3, system specs are SATA 2 RAID 1 with dual 1 TB hard drives. 4 GB RAM. As far as how fast my processor is, I looked on my invoice and it says, "Intel Core2 processor Q6600 (2.4 Ghz, 1066 FSB) with Quad Core technology and 8 MB cache, 4 GB DDR2 SDRAM at 800 MHz.
    I defragmented my hard drive before beginning and have 779 GB or 83 percent free space on hard drive.
    I have not placed my video clips on the timeline yet so don't know if there is a red line on top, indicating it hasn't been rendered. I merely wanted to play back my clip to set "in" and "out" points. This has never happened before in my long history of using Premiere Elements. Would prefer not to have to go back to PE 8, as that was a disaster.

  • Multiple errors attempting to capture a Windows 8 reference image after booting from USB (Dell Latitude 10)

    From results.xml:
    <?xml version="1.0"?>
    <Results><Errors>8</Errors><Warnings>0</Warnings><RetVal>-2147467259</RetVal><DeploymentType>CUSTOM</DeploymentType><Messages><![CDATA[FAILURE ( 5456 ): Unable to determine Destination Disk, Partition, and/or Drive. See BDD.LOG for more information.
    Litetouch deployment failed, Return Code = -2147467259 0x80004005
    Failed to run the action: Apply Windows PE.
    Unknown error (Error: 00001550; Source: Unknown)
    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: Apply Windows PE. Execution of task sequence failed.
    Unknown error (Error: 00001550; Source: Unknown)
    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]]></Messages></Results>
    I have not only regenerated my boot files while updating my deployment share, I have completely rebuilt the MDT 2012 deployment share from scratch, and I'm still getting the exact same errors. I can't figure out what is causing this. The only hits for these
    errors seemed to say that the -214... error is likely related to a missing file, but I don't know how to figure out what that might be. I don't know what the FAILURE ( 5456 ) could be caused by, either, although it seems to be related to not knowing what partition
    should be imaged or imaged to. I haven't been able to find any reference to MDT needing a partition to image from/to set in a CS.ini property or in a task variable.
    I am running a modified version of the Sysprep and Capture Task Sequence (set up as described at http://bjtechnews.org/2012/06/01/mdt-2012-capturing-a-reference-image-part-ii/, it's basically the default settings for that TS with the sysprep step disabled and
    the "Set Image Folder" task variable created per that post--I ran sysprep myself, manually, on the machine before shutting it down to boot from USB) after booting a Dell Latitude 10 tablet from a USB drive created by extracting the contents of the
    MDT 2012 DeploymentShare$\Boot\LiteTouchpe_x86.iso to a FAT32-formatted volume.

    Here is the second part of BDD.log:
    <![LOG[VSSMaxSize not specified using 5% of volume.]LOG]!><time="21:18:42.000+000" date="07-23-2013" component="LTICleanup" context="" type="1" thread="" file="LTICleanup">
    <![LOG[Logs contained 8 errors and 0 warnings.]LOG]!><time="21:18:42.000+000" date="07-23-2013" component="LTICleanup" context="" type="1" thread="" file="LTICleanup">
    <![LOG[No Windows PE image to delete.]LOG]!><time="21:18:42.000+000" date="07-23-2013" component="LTICleanup" context="" type="1" thread="" file="LTICleanup">
    <![LOG[Stripping BDD commands from unattend.xml template.]LOG]!><time="21:18:42.000+000" date="07-23-2013" component="LTICleanup" context="" type="1" thread="" file="LTICleanup">
    <![LOG[Modified unattend.xml saved to C:\windows\panther\unattend.xml]LOG]!><time="21:18:42.000+000" date="07-23-2013" component="LTICleanup" context="" type="1" thread="" file="LTICleanup">
    <![LOG[Checking mapped network drive.]LOG]!><time="21:18:43.000+000" date="07-23-2013" component="LTICleanup" context="" type="1" thread="" file="LTICleanup">
    <![LOG[testing drive Z: mapped to \\NCSD-WDS\DeploymentShare$]LOG]!><time="21:18:43.000+000" date="07-23-2013" component="LTICleanup" context="" type="1" thread="" file="LTICleanup">
    <![LOG[Disconnecting drive Z: mapped to \\NCSD-WDS\DeploymentShare$]LOG]!><time="21:18:43.000+000" date="07-23-2013" component="LTICleanup" context="" type="1" thread="" file="LTICleanup">
    <![LOG[testing drive Y: mapped to \\ncsd-wds.ncsd.local\deploymentshare$]LOG]!><time="21:18:43.000+000" date="07-23-2013" component="LTICleanup" context="" type="1" thread="" file="LTICleanup">
    <![LOG[Cleaning up C:\MININT directory.]LOG]!><time="21:18:43.000+000" date="07-23-2013" component="LTICleanup" context="" type="1" thread="" file="LTICleanup">
    <![LOG[Cleaning up TOOLS, SCRIPTS, and PACKAGES directories.]LOG]!><time="21:18:43.000+000" date="07-23-2013" component="LTICleanup" context="" type="1" thread="" file="LTICleanup">
    <![LOG[Removing C:\MININT folder (final log entry)]LOG]!><time="21:18:44.000+000" date="07-23-2013" component="LTICleanup" context="" type="1" thread="" file="LTICleanup">
    <![LOG[Not Wizard = False]LOG]!><time="00:44:05.000+000" date="07-24-2013" component="Wizard" context="" type="1" thread="" file="Wizard">
    <![LOG[Property WizardComplete is now = N]LOG]!><time="00:44:07.000+000" date="07-24-2013" component="Wizard" context="" type="1" thread="" file="Wizard">
    <![LOG[ Open Control File: TaskSequences]LOG]!><time="00:44:08.000+000" date="07-24-2013" component="Wizard" context="" type="1" thread="" file="Wizard">
    <![LOG[CleanStartItems Complete]LOG]!><time="00:53:55.000+000" date="07-24-2013" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[Removing C:\MININT folder (final log entry)]LOG]!><time="00:53:55.000+000" date="07-24-2013" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[ZTIUtility!GetAllFixedDrives (False)]LOG]!><time="00:53:55.000+000" date="07-24-2013" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[New ZTIDisk : \\MININT-IDKMK2C\root\cimv2:Win32_DiskDrive.DeviceID="\\\\.\\PHYSICALDRIVE0"]LOG]!><time="00:53:55.000+000" date="07-24-2013" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[New ZTIDisk : \\MININT-IDKMK2C\root\cimv2:Win32_DiskDrive.DeviceID="\\\\.\\PHYSICALDRIVE0"]LOG]!><time="00:53:55.000+000" date="07-24-2013" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[New ZTIDiskPartition : \\MININT-IDKMK2C\root\cimv2:Win32_DiskPartition.DeviceID="Disk #0, Partition #2" \\MININT-IDKMK2C\root\cimv2:Win32_LogicalDisk.DeviceID="C:"]LOG]!><time="00:53:55.000+000" date="07-24-2013" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[New ZTIDisk : \\MININT-IDKMK2C\root\cimv2:Win32_DiskDrive.DeviceID="\\\\.\\PHYSICALDRIVE0"]LOG]!><time="00:53:56.000+000" date="07-24-2013" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[New ZTIDiskPartition : \\MININT-IDKMK2C\root\cimv2:Win32_DiskPartition.DeviceID="Disk #1, Partition #0" \\MININT-IDKMK2C\root\cimv2:Win32_LogicalDisk.DeviceID="D:"]LOG]!><time="00:53:56.000+000" date="07-24-2013" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[New ZTIDisk : \\MININT-IDKMK2C\root\cimv2:Win32_DiskDrive.DeviceID="\\\\.\\PHYSICALDRIVE1"]LOG]!><time="00:53:56.000+000" date="07-24-2013" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[ZTIUtility!GetAllFixedDrives = C:]LOG]!><time="00:53:56.000+000" date="07-24-2013" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[Not Wizard = False]LOG]!><time="00:54:54.000+000" date="07-24-2013" component="Wizard" context="" type="1" thread="" file="Wizard">
    <![LOG[Property WizardComplete is now = N]LOG]!><time="00:54:55.000+000" date="07-24-2013" component="Wizard" context="" type="1" thread="" file="Wizard">
    <![LOG[ Open Control File: TaskSequences]LOG]!><time="00:54:56.000+000" date="07-24-2013" component="Wizard" context="" type="1" thread="" file="Wizard">
    <![LOG[Property TaskSequenceID is now = CAPTURE001]LOG]!><time="00:55:00.000+000" date="07-24-2013" component="Wizard" context="" type="1" thread="" file="Wizard">
    <![LOG[Found Task Sequence Item: //step[@type='BDD_InstallOS']]LOG]!><time="00:55:01.000+000" date="07-24-2013" component="Wizard" context="" type="1" thread="" file="Wizard">
    <![LOG[Found Task Sequence step of type //step[@type='BDD_InstallOS'] = False]LOG]!><time="00:55:01.000+000" date="07-24-2013" component="Wizard" context="" type="1" thread="" file="Wizard">
    <![LOG[Task Sequence does not contain an OS and does not contain a LTIApply.wsf step, possibly a Custom Step or a Client Replace.]LOG]!><time="00:55:01.000+000" date="07-24-2013" component="Wizard" context="" type="1" thread="" file="Wizard">
    <![LOG[DeploymentType = CUSTOM]LOG]!><time="00:55:01.000+000" date="07-24-2013" component="Wizard" context="" type="1" thread="" file="Wizard">
    <![LOG[Property ImageProcessor is now = ]LOG]!><time="00:55:02.000+000" date="07-24-2013" component="Wizard" context="" type="1" thread="" file="Wizard">
    <![LOG[Property OSGUID is now = ]LOG]!><time="00:55:02.000+000" date="07-24-2013" component="Wizard" context="" type="1" thread="" file="Wizard">
    <![LOG[Property TaskSequenceName is now = Capture reference image]LOG]!><time="00:55:02.000+000" date="07-24-2013" component="Wizard" context="" type="1" thread="" file="Wizard">
    <![LOG[Property TaskSequenceVersion is now = 1.0]LOG]!><time="00:55:02.000+000" date="07-24-2013" component="Wizard" context="" type="1" thread="" file="Wizard">
    <![LOG[Property TaskSequenceTemplate is now = CaptureOnly.xml]LOG]!><time="00:55:02.000+000" date="07-24-2013" component="Wizard" context="" type="1" thread="" file="Wizard">
    <![LOG[Property OSGUID is now = {9c976969-ab45-405b-82e7-d8a429228a67}]LOG]!><time="00:55:03.000+000" date="07-24-2013" component="Wizard" context="" type="1" thread="" file="Wizard">
    <![LOG[Property ImageIndex is now = 1]LOG]!><time="00:55:03.000+000" date="07-24-2013" component="Wizard" context="" type="1" thread="" file="Wizard">
    <![LOG[Property ImageSize is now = 7934]LOG]!><time="00:55:03.000+000" date="07-24-2013" component="Wizard" context="" type="1" thread="" file="Wizard">
    <![LOG[Property ImageFlags is now = Professional]LOG]!><time="00:55:03.000+000" date="07-24-2013" component="Wizard" context="" type="1" thread="" file="Wizard">
    <![LOG[Property ImageBuild is now = 6.2.9200.16384]LOG]!><time="00:55:03.000+000" date="07-24-2013" component="Wizard" context="" type="1" thread="" file="Wizard">
    <![LOG[Property ImageProcessor is now = x86]LOG]!><time="00:55:04.000+000" date="07-24-2013" component="Wizard" context="" type="1" thread="" file="Wizard">
    <![LOG[Property ImageLanguage001 is now = en-US]LOG]!><time="00:55:04.000+000" date="07-24-2013" component="Wizard" context="" type="1" thread="" file="Wizard">
    <![LOG[InstallFromPath: \\NCSD-WDS\Latitude10Deploy$\Operating Systems\Windows 8 Pro x86\Sources\install.wim]LOG]!><time="00:55:04.000+000" date="07-24-2013" component="Wizard" context="" type="1" thread="" file="Wizard">
    <![LOG[Property InstallFromPath is now = \\ncsd-wds\latitude10deploy$\Operating Systems\Windows 8 Pro x86\sources\install.wim]LOG]!><time="00:55:04.000+000" date="07-24-2013" component="Wizard" context="" type="1" thread="" file="Wizard">
    <![LOG[SourcePath: \\NCSD-WDS\Latitude10Deploy$\Operating Systems\Windows 8 Pro x86]LOG]!><time="00:55:04.000+000" date="07-24-2013" component="Wizard" context="" type="1" thread="" file="Wizard">
    <![LOG[Property SourcePath is now = \\NCSD-WDS\Latitude10Deploy$\Operating Systems\Windows 8 Pro x86]LOG]!><time="00:55:05.000+000" date="07-24-2013" component="Wizard" context="" type="1" thread="" file="Wizard">
    <![LOG[Found Task Sequence Item: //step[@type='BDD_InstallRoles']]LOG]!><time="00:55:05.000+000" date="07-24-2013" component="Wizard" context="" type="1" thread="" file="Wizard">
    <![LOG[Found Task Sequence step of type //step[@type='BDD_InstallRoles'] = ]LOG]!><time="00:55:05.000+000" date="07-24-2013" component="Wizard" context="" type="1" thread="" file="Wizard">
    <![LOG[Found Task Sequence Item: //step[@type='BDD_InstallApplication' and ./defaultVarList/variable[@name='ApplicationGUID'] and ./defaultVarList[variable='']]]LOG]!><time="00:55:05.000+000" date="07-24-2013" component="Wizard" context="" type="1" thread="" file="Wizard">
    <![LOG[Found Task Sequence step of type //step[@type='BDD_InstallApplication' and ./defaultVarList/variable[@name='ApplicationGUID'] and ./defaultVarList[variable='']] = ]LOG]!><time="00:55:06.000+000" date="07-24-2013" component="Wizard" context="" type="1" thread="" file="Wizard">
    <![LOG[Found Task Sequence Item: //step[@name='Create WIM']]LOG]!><time="00:55:06.000+000" date="07-24-2013" component="Wizard" context="" type="1" thread="" file="Wizard">
    <![LOG[Found Task Sequence step of type //step[@name='Create WIM'] = True]LOG]!><time="00:55:06.000+000" date="07-24-2013" component="Wizard" context="" type="1" thread="" file="Wizard">
    <![LOG[Found Task Sequence Item: //step[@name='Create WIM']]LOG]!><time="00:55:19.000+000" date="07-24-2013" component="Wizard" context="" type="1" thread="" file="Wizard">
    <![LOG[Found Task Sequence step of type //step[@name='Create WIM'] = True]LOG]!><time="00:55:19.000+000" date="07-24-2013" component="Wizard" context="" type="1" thread="" file="Wizard">
    <![LOG[Validating connection to \\NCSD-WDS\Latitude10Deploy$\Captures]LOG]!><time="00:55:32.000+000" date="07-24-2013" component="Wizard" context="" type="1" thread="" file="Wizard">
    <![LOG[Already connected to server NCSD-WDS as that is where this script is running from.]LOG]!><time="00:55:33.000+000" date="07-24-2013" component="Wizard" context="" type="1" thread="" file="Wizard">
    <![LOG[Property TSGuid is now = {ed8ed1ac-ab1a-448d-97b5-0d4cb1f7ef95}]LOG]!><time="00:55:38.000+000" date="07-24-2013" component="Wizard" context="" type="1" thread="" file="Wizard">
    <![LOG[Property OSGUID is now = ]LOG]!><time="00:55:39.000+000" date="07-24-2013" component="Wizard" context="" type="1" thread="" file="Wizard">
    <![LOG[Property DeploymentType is now = CUSTOM]LOG]!><time="00:55:39.000+000" date="07-24-2013" component="Wizard" context="" type="1" thread="" file="Wizard">
    <![LOG[<Message containing password has been suppressed>]LOG]!><time="00:55:39.000+000" date="07-24-2013" component="Wizard" context="" type="1" thread="" file="Wizard">
    <![LOG[Property DoCapture is now = YES]LOG]!><time="00:55:39.000+000" date="07-24-2013" component="Wizard" context="" type="1" thread="" file="Wizard">
    <![LOG[Property ComputerBackupLocation is now = \\NCSD-WDS\Latitude10Deploy$\Captures]LOG]!><time="00:55:39.000+000" date="07-24-2013" component="Wizard" context="" type="1" thread="" file="Wizard">
    <![LOG[Property BackupFile is now = CAPTURE001.wim]LOG]!><time="00:55:40.000+000" date="07-24-2013" component="Wizard" context="" type="1" thread="" file="Wizard">
    <![LOG[Property WizardComplete is now = Y]LOG]!><time="00:55:40.000+000" date="07-24-2013" component="Wizard" context="" type="1" thread="" file="Wizard">
    <![LOG[Setting variable ComputerBackupLocation to value \\ncsd-wds.ncsd.local\Latitude10Deploy$\Captures]LOG]!><time="00:55:45.000+000" date="07-24-2013" component="ZTISetVariable" context="" type="1" thread="" file="ZTISetVariable">
    <![LOG[Property ComputerBackupLocation is now = \\ncsd-wds.ncsd.local\Latitude10Deploy$\Captures]LOG]!><time="00:55:45.000+000" date="07-24-2013" component="ZTISetVariable" context="" type="1" thread="" file="ZTISetVariable">
    <![LOG[ZTISetVariable processing completed successfully.]LOG]!><time="00:55:45.000+000" date="07-24-2013" component="ZTISetVariable" context="" type="1" thread="" file="ZTISetVariable">
    <![LOG[Event 41001 sent: ZTISetVariable processing completed successfully.]LOG]!><time="00:55:46.000+000" date="07-24-2013" component="ZTISetVariable" context="" type="1" thread="" file="ZTISetVariable">
    <![LOG[Setting variable ImageBuild to value 6.2.9200]LOG]!><time="00:55:47.000+000" date="07-24-2013" component="ZTISetVariable" context="" type="1" thread="" file="ZTISetVariable">
    <![LOG[Property ImageBuild is now = 6.2.9200]LOG]!><time="00:55:47.000+000" date="07-24-2013" component="ZTISetVariable" context="" type="1" thread="" file="ZTISetVariable">
    <![LOG[ZTISetVariable processing completed successfully.]LOG]!><time="00:55:47.000+000" date="07-24-2013" component="ZTISetVariable" context="" type="1" thread="" file="ZTISetVariable">
    <![LOG[Event 41001 sent: ZTISetVariable processing completed successfully.]LOG]!><time="00:55:48.000+000" date="07-24-2013" component="ZTISetVariable" context="" type="1" thread="" file="ZTISetVariable">
    <![LOG[Setting variable ImageFlags to value %OSSKU%]LOG]!><time="00:55:49.000+000" date="07-24-2013" component="ZTISetVariable" context="" type="1" thread="" file="ZTISetVariable">
    <![LOG[Property ImageFlags is now = %OSSKU%]LOG]!><time="00:55:49.000+000" date="07-24-2013" component="ZTISetVariable" context="" type="1" thread="" file="ZTISetVariable">
    <![LOG[ZTISetVariable processing completed successfully.]LOG]!><time="00:55:49.000+000" date="07-24-2013" component="ZTISetVariable" context="" type="1" thread="" file="ZTISetVariable">
    <![LOG[Event 41001 sent: ZTISetVariable processing completed successfully.]LOG]!><time="00:55:50.000+000" date="07-24-2013" component="ZTISetVariable" context="" type="1" thread="" file="ZTISetVariable">
    <![LOG[Setting variable PHASE to value STATERESTORE]LOG]!><time="00:55:51.000+000" date="07-24-2013" component="ZTISetVariable" context="" type="1" thread="" file="ZTISetVariable">
    <![LOG[Property PHASE is now = STATERESTORE]LOG]!><time="00:55:51.000+000" date="07-24-2013" component="ZTISetVariable" context="" type="1" thread="" file="ZTISetVariable">
    <![LOG[ZTISetVariable processing completed successfully.]LOG]!><time="00:55:51.000+000" date="07-24-2013" component="ZTISetVariable" context="" type="1" thread="" file="ZTISetVariable">
    <![LOG[Event 41001 sent: ZTISetVariable processing completed successfully.]LOG]!><time="00:55:52.000+000" date="07-24-2013" component="ZTISetVariable" context="" type="1" thread="" file="ZTISetVariable">
    <![LOG[---------------- Initialization ----------------]LOG]!><time="00:55:53.000+000" date="07-24-2013" component="ZTIConfigure" context="" type="1" thread="" file="ZTIConfigure">
    <![LOG[Validating connection to \\NCSD-WDS\Latitude10Deploy$]LOG]!><time="00:55:53.000+000" date="07-24-2013" component="ZTIConfigure" context="" type="1" thread="" file="ZTIConfigure">
    <![LOG[Already connected to server NCSD-WDS as that is where this script is running from.]LOG]!><time="00:55:53.000+000" date="07-24-2013" component="ZTIConfigure" context="" type="1" thread="" file="ZTIConfigure">
    <![LOG[DestinationOSInstallType = BYDISKPARTITION]LOG]!><time="00:55:54.000+000" date="07-24-2013" component="ZTIConfigure" context="" type="1" thread="" file="ZTIConfigure">
    <![LOG[Found: DestinationDisk: 0]LOG]!><time="00:55:54.000+000" date="07-24-2013" component="ZTIConfigure" context="" type="1" thread="" file="ZTIConfigure">
    <![LOG[Found: DestinationPartition: 1]LOG]!><time="00:55:54.000+000" date="07-24-2013" component="ZTIConfigure" context="" type="1" thread="" file="ZTIConfigure">
    <![LOG[No drive mapped to Disk Partition: \\MININT-IDKMK2C\root\cimv2:Win32_DiskPartition.DeviceID="Disk #0, Partition #0"]LOG]!><time="00:55:54.000+000" date="07-24-2013" component="ZTIConfigure" context="" type="1" thread="" file="ZTIConfigure">
    <![LOG[Unable to yield a target Partition (Special Recovery option for Litetouch).]LOG]!><time="00:55:54.000+000" date="07-24-2013" component="ZTIConfigure" context="" type="1" thread="" file="ZTIConfigure">
    <![LOG[DestinationDisk and Partition did not yield a target Partition.]LOG]!><time="00:55:54.000+000" date="07-24-2013" component="ZTIConfigure" context="" type="1" thread="" file="ZTIConfigure">
    <![LOG[Destination Logical Drive was not specificed, defaulting to #:\]LOG]!><time="00:55:54.000+000" date="07-24-2013" component="ZTIConfigure" context="" type="1" thread="" file="ZTIConfigure">
    <![LOG[Looking for Sysprep.inf in #:\sysprep\Sysprep.inf]LOG]!><time="00:55:55.000+000" date="07-24-2013" component="ZTIConfigure" context="" type="1" thread="" file="ZTIConfigure">
    <![LOG[The sysprep.inf file was not found.]LOG]!><time="00:55:55.000+000" date="07-24-2013" component="ZTIConfigure" context="" type="1" thread="" file="ZTIConfigure">
    <![LOG[Property OSDAnswerFilePathSysprep is now = ]LOG]!><time="00:55:55.000+000" date="07-24-2013" component="ZTIConfigure" context="" type="1" thread="" file="ZTIConfigure">
    <![LOG[The unattend.txt file was not found.]LOG]!><time="00:55:55.000+000" date="07-24-2013" component="ZTIConfigure" context="" type="1" thread="" file="ZTIConfigure">
    <![LOG[Found unattend.xml at \\NCSD-WDS\Latitude10Deploy$\Control\CAPTURE001\Unattend.xml, will copy to C:\MININT\Unattend.xml]LOG]!><time="00:55:55.000+000" date="07-24-2013" component="ZTIConfigure" context="" type="1" thread="" file="ZTIConfigure">
    <![LOG[Copied \\NCSD-WDS\Latitude10Deploy$\Control\CAPTURE001\Unattend.xml to C:\MININT\Unattend.xml]LOG]!><time="00:55:55.000+000" date="07-24-2013" component="ZTIConfigure" context="" type="1" thread="" file="ZTIConfigure">
    <![LOG[Property OSDAnswerFilePath is now = C:\MININT\Unattend.xml]LOG]!><time="00:55:55.000+000" date="07-24-2013" component="ZTIConfigure" context="" type="1" thread="" file="ZTIConfigure">
    <![LOG[Loaded C:\MININT\Unattend.xml]LOG]!><time="00:55:55.000+000" date="07-24-2013" component="ZTIConfigure" context="" type="1" thread="" file="ZTIConfigure">
    <![LOG[No value found for ComputerName]LOG]!><time="00:55:56.000+000" date="07-24-2013" component="ZTIConfigure" context="" type="1" thread="" file="ZTIConfigure">
    <![LOG[No value found for FullName]LOG]!><time="00:55:56.000+000" date="07-24-2013" component="ZTIConfigure" context="" type="1" thread="" file="ZTIConfigure">
    <![LOG[No value found for OrgName]LOG]!><time="00:55:56.000+000" date="07-24-2013" component="ZTIConfigure" context="" type="1" thread="" file="ZTIConfigure">
    <![LOG[No value found for ProductKey]LOG]!><time="00:55:56.000+000" date="07-24-2013" component="ZTIConfigure" context="" type="1" thread="" file="ZTIConfigure">
    <![LOG[No value found for JoinDomain]LOG]!><time="00:55:56.000+000" date="07-24-2013" component="ZTIConfigure" context="" type="1" thread="" file="ZTIConfigure">
    <![LOG[No value found for MachineObjectOU]LOG]!><time="00:55:56.000+000" date="07-24-2013" component="ZTIConfigure" context="" type="1" thread="" file="ZTIConfigure">
    <![LOG[No value found for JoinWorkgroup]LOG]!><time="00:55:56.000+000" date="07-24-2013" component="ZTIConfigure" context="" type="1" thread="" file="ZTIConfigure">
    <![LOG[No value found for DomainAdmin]LOG]!><time="00:55:56.000+000" date="07-24-2013" component="ZTIConfigure" context="" type="1" thread="" file="ZTIConfigure">
    <![LOG[<Message containing password has been suppressed>]LOG]!><time="00:55:56.000+000" date="07-24-2013" component="ZTIConfigure" context="" type="1" thread="" file="ZTIConfigure">
    <![LOG[No value found for InputLocale]LOG]!><time="00:55:56.000+000" date="07-24-2013" component="ZTIConfigure" context="" type="1" thread="" file="ZTIConfigure">
    <![LOG[No value found for Language]LOG]!><time="00:55:57.000+000" date="07-24-2013" component="ZTIConfigure" context="" type="1" thread="" file="ZTIConfigure">
    <![LOG[No value found for LanguageGroup]LOG]!><time="00:55:57.000+000" date="07-24-2013" component="ZTIConfigure" context="" type="1" thread="" file="ZTIConfigure">
    <![LOG[No value found for SystemLocale]LOG]!><time="00:55:57.000+000" date="07-24-2013" component="ZTIConfigure" context="" type="1" thread="" file="ZTIConfigure">
    <![LOG[No value found for UserLocale]LOG]!><time="00:55:57.000+000" date="07-24-2013" component="ZTIConfigure" context="" type="1" thread="" file="ZTIConfigure">
    <![LOG[No value found for TimeZone]LOG]!><time="00:55:57.000+000" date="07-24-2013" component="ZTIConfigure" context="" type="1" thread="" file="ZTIConfigure">
    <![LOG[No value found for AutoLogon]LOG]!><time="00:55:57.000+000" date="07-24-2013" component="ZTIConfigure" context="" type="1" thread="" file="ZTIConfigure">
    <![LOG[No value found for AutoLogonCount]LOG]!><time="00:55:57.000+000" date="07-24-2013" component="ZTIConfigure" context="" type="1" thread="" file="ZTIConfigure">
    <![LOG[No value found for BitsPerPel]LOG]!><time="00:55:57.000+000" date="07-24-2013" component="ZTIConfigure" context="" type="1" thread="" file="ZTIConfigure">
    <![LOG[No value found for Xresolution]LOG]!><time="00:55:57.000+000" date="07-24-2013" component="ZTIConfigure" context="" type="1" thread="" file="ZTIConfigure">
    <![LOG[No value found for Yresolution]LOG]!><time="00:55:57.000+000" date="07-24-2013" component="ZTIConfigure" context="" type="1" thread="" file="ZTIConfigure">
    <![LOG[No value found for Vrefresh]LOG]!><time="00:55:58.000+000" date="07-24-2013" component="ZTIConfigure" context="" type="1" thread="" file="ZTIConfigure">
    <![LOG[No value found for AreaCode]LOG]!><time="00:55:58.000+000" date="07-24-2013" component="ZTIConfigure" context="" type="1" thread="" file="ZTIConfigure">
    <![LOG[No value found for CountryCode]LOG]!><time="00:55:58.000+000" date="07-24-2013" component="ZTIConfigure" context="" type="1" thread="" file="ZTIConfigure">
    <![LOG[No value found for Dialing]LOG]!><time="00:55:58.000+000" date="07-24-2013" component="ZTIConfigure" context="" type="1" thread="" file="ZTIConfigure">
    <![LOG[No value found for LongDistanceAccess]LOG]!><time="00:55:58.000+000" date="07-24-2013" component="ZTIConfigure" context="" type="1" thread="" file="ZTIConfigure">
    <![LOG[No value found for Home_Page]LOG]!><time="00:55:58.000+000" date="07-24-2013" component="ZTIConfigure" context="" type="1" thread="" file="ZTIConfigure">
    <![LOG[No value found for AutoMode]LOG]!><time="00:55:58.000+000" date="07-24-2013" component="ZTIConfigure" context="" type="1" thread="" file="ZTIConfigure">
    <![LOG[No value found for AutoUsers]LOG]!><time="00:55:59.000+000" date="07-24-2013" component="ZTIConfigure" context="" type="1" thread="" file="ZTIConfigure">
    <![LOG[//settings[@pass="windowsPE"]/component[@name="Microsoft-Windows-Setup"]/UpgradeData/Upgrade not found in C:\MININT\Unattend.xml, unable to update.]LOG]!><time="00:55:59.000+000" date="07-24-2013" component="ZTIConfigure" context="" type="1" thread="" file="ZTIConfigure">
    <![LOG[No value found for OSDComputerName]LOG]!><time="00:55:59.000+000" date="07-24-2013" component="ZTIConfigure" context="" type="1" thread="" file="ZTIConfigure">
    <![LOG[No value found for ProductKey]LOG]!><time="00:55:59.000+000" date="07-24-2013" component="ZTIConfigure" context="" type="1" thread="" file="ZTIConfigure">
    <![LOG[Removed parent of //settings[@pass="windowsPE"]/component[@name="Microsoft-Windows-Setup"]/UserData/ProductKey/Key from C:\MININT\Unattend.xml because the value was blank.]LOG]!><time="00:55:59.000+000" date="07-24-2013" component="ZTIConfigure" context="" type="1" thread="" file="ZTIConfigure">
    <![LOG[Removed //settings[@pass="specialize"]/component[@name="Microsoft-Windows-Shell-Setup"]/ProductKey from C:\MININT\Unattend.xml because the value was blank.]LOG]!><time="00:55:59.000+000" date="07-24-2013" component="ZTIConfigure" context="" type="1" thread="" file="ZTIConfigure">
    <![LOG[No value found for JoinDomain]LOG]!><time="00:55:59.000+000" date="07-24-2013" component="ZTIConfigure" context="" type="1" thread="" file="ZTIConfigure">
    <![LOG[Removed //settings[@pass="specialize"]/component[@name="Microsoft-Windows-UnattendedJoin"]/Identification/MachineObjectOU from C:\MININT\Unattend.xml because the value was blank.]LOG]!><time="00:55:59.000+000" date="07-24-2013" component="ZTIConfigure" context="" type="1" thread="" file="ZTIConfigure">
    <![LOG[No value found for JoinWorkgroup]LOG]!><time="00:55:59.000+000" date="07-24-2013" component="ZTIConfigure" context="" type="1" thread="" file="ZTIConfigure">
    <![LOG[No value found for DomainAdmin]LOG]!><time="00:55:59.000+000" date="07-24-2013" component="ZTIConfigure" context="" type="1" thread="" file="ZTIConfigure">
    <![LOG[No value found for DomainAdminDomain]LOG]!><time="00:56:00.000+000" date="07-24-2013" component="ZTIConfigure" context="" type="1" thread="" file="ZTIConfigure">
    <![LOG[<Message containing password has been suppressed>]LOG]!><time="00:56:00.000+000" date="07-24-2013" component="ZTIConfigure" context="" type="1" thread="" file="ZTIConfigure">
    <![LOG[Updated C:\MININT\Unattend.xml with InstallFromPath=\\ncsd-wds\latitude10deploy$\Operating Systems\Windows 8 Pro x86\sources\install.wim (value was .\Operating Systems\Windows 8 Pro x86\Sources\install.wim)]LOG]!><time="00:56:00.000+000" date="07-24-2013" component="ZTIConfigure" context="" type="1" thread="" file="ZTIConfigure">
    <![LOG[//settings[@pass="windowsPE"]/component[@name="Microsoft-Windows-Setup"]/ImageInstall/OSImage/InstallFrom/MetaData[Key="/image/index"]/Value not found in C:\MININT\Unattend.xml, unable to update.]LOG]!><time="00:56:00.000+000" date="07-24-2013" component="ZTIConfigure" context="" type="1" thread="" file="ZTIConfigure">
    <![LOG[Updated C:\MININT\Unattend.xml with ImageIndex=1 (value was 1)]LOG]!><time="00:56:00.000+000" date="07-24-2013" component="ZTIConfigure" context="" type="1" thread="" file="ZTIConfigure">
    <![LOG[<Message containing password has been suppressed>]LOG]!><time="00:56:00.000+000" date="07-24-2013" component="ZTIConfigure" context="" type="1" thread="" file="ZTIConfigure">
    <![LOG[Updated PlainText entry to true.]LOG]!><time="00:56:00.000+000" date="07-24-2013" component="ZTIConfigure" context="" type="1" thread="" file="ZTIConfigure">
    <![LOG[<Message containing password has been suppressed>]LOG]!><time="00:56:00.000+000" date="07-24-2013" component="ZTIConfigure" context="" type="1" thread="" file="ZTIConfigure">
    <![LOG[Updated PlainText entry to true.]LOG]!><time="00:56:00.000+000" date="07-24-2013" component="ZTIConfigure" context="" type="1" thread="" file="ZTIConfigure">
    <![LOG[//settings[@pass="oobeSystem"]/component[@name="Microsoft-Windows-Shell-Setup"]/UserAccounts/LocalAccounts not found in C:\MININT\Unattend.xml, unable to update.]LOG]!><time="00:56:00.000+000" date="07-24-2013" component="ZTIConfigure" context="" type="1" thread="" file="ZTIConfigure">
    <![LOG[No value found for Organization]LOG]!><time="00:56:01.000+000" date="07-24-2013" component="ZTIConfigure" context="" type="1" thread="" file="ZTIConfigure">
    <![LOG[No value found for FullName]LOG]!><time="00:56:01.000+000" date="07-24-2013" component="ZTIConfigure" context="" type="1" thread="" file="ZTIConfigure">
    <![LOG[No value found for BitsPerPel]LOG]!><time="00:56:01.000+000" date="07-24-2013" component="ZTIConfigure" context="" type="1" thread="" file="ZTIConfigure">
    <![LOG[No value found for Xresolution]LOG]!><time="00:56:01.000+000" date="07-24-2013" component="ZTIConfigure" context="" type="1" thread="" file="ZTIConfigure">
    <![LOG[No value found for Yresolution]LOG]!><time="00:56:01.000+000" date="07-24-2013" component="ZTIConfigure" context="" type="1" thread="" file="ZTIConfigure">
    <![LOG[No value found for Vrefresh]LOG]!><time="00:56:01.000+000" date="07-24-2013" component="ZTIConfigure" context="" type="1" thread="" file="ZTIConfigure">
    <![LOG[No value found for AreaCode]LOG]!><time="00:56:01.000+000" date="07-24-2013" component="ZTIConfigure" context="" type="1" thread="" file="ZTIConfigure">
    <![LOG[No value found for CountryCode]LOG]!><time="00:56:01.000+000" date="07-24-2013" component="ZTIConfigure" context="" type="1" thread="" file="ZTIConfigure">
    <![LOG[No value found for LongDistanceAccess]LOG]!><time="00:56:01.000+000" date="07-24-2013" component="ZTIConfigure" context="" type="1" thread="" file="ZTIConfigure">
    <![LOG[No value found for LongDistanceAccess]LOG]!><time="00:56:02.000+000" date="07-24-2013" component="ZTIConfigure" context="" type="1" thread="" file="ZTIConfigure">
    <![LOG[Removed //settings[@pass="specialize"]/component[@name="Microsoft-Windows-Shell-Setup"]/TimeZone from C:\MININT\Unattend.xml because the value was blank.]LOG]!><time="00:56:02.000+000" date="07-24-2013" component="ZTIConfigure" context="" type="1" thread="" file="ZTIConfigure">
    <![LOG[Removed //settings[@pass="oobeSystem"]/component[@name="Microsoft-Windows-Shell-Setup"]/TimeZone from C:\MININT\Unattend.xml because the value was blank.]LOG]!><time="00:56:02.000+000" date="07-24-2013" component="ZTIConfigure" context="" type="1" thread="" file="ZTIConfigure">
    <![LOG[No value found for KeyboardLocale]LOG]!><time="00:56:02.000+000" date="07-24-2013" component="ZTIConfigure" context="" type="1" thread="" file="ZTIConfigure">
    <![LOG[No value found for KeyboardLocale]LOG]!><time="00:56:02.000+000" date="07-24-2013" component="ZTIConfigure" context="" type="1" thread="" file="ZTIConfigure">
    <![LOG[No value found for UserLocale]LOG]!><time="00:56:02.000+000" date="07-24-2013" component="ZTIConfigure" context="" type="1" thread="" file="ZTIConfigure">
    <![LOG[No value found for UserLocale]LOG]!><time="00:56:02.000+000" date="07-24-2013" component="ZTIConfigure" context="" type="1" thread="" file="ZTIConfigure">
    <![LOG[No value found for UserLocale]LOG]!><time="00:56:03.000+000" date="07-24-2013" component="ZTIConfigure" context="" type="1" thread="" file="ZTIConfigure">
    <![LOG[No value found for UserLocale]LOG]!><time="00:56:03.000+000" date="07-24-2013" component="ZTIConfigure" context="" type="1" thread="" file="ZTIConfigure">
    <![LOG[No value found for UILanguage]LOG]!><time="00:56:03.000+000" date="07-24-2013" component="ZTIConfigure" context="" type="1" thread="" file="ZTIConfigure">
    <![LOG[No value found for UILanguage]LOG]!><time="00:56:03.000+000" date="07-24-2013" component="ZTIConfigure" context="" type="1" thread="" file="ZTIConfigure">
    <![LOG[Updated C:\MININT\Unattend.xml with ImageLanguage001=en-US (value was en-US)]LOG]!><time="00:56:03.000+000" date="07-24-2013" component="ZTIConfigure" context="" type="1" thread="" file="ZTIConfigure">
    <![LOG[Updated C:\MININT\Unattend.xml with ImageLanguage001=en-US (value was en-US)]LOG]!><time="00:56:03.000+000" date="07-24-2013" component="ZTIConfigure" context="" type="1" thread="" file="ZTIConfigure">
    <![LOG[Updated C:\MININT\Unattend.xml with ImageLanguage001=en-US (value was en-US)]LOG]!><time="00:56:03.000+000" date="07-24-2013" component="ZTIConfigure" context="" type="1" thread="" file="ZTIConfigure">
    <![LOG[No value found for Home_Page]LOG]!><time="00:56:03.000+000" date="07-24-2013" component="ZTIConfigure" context="" type="1" thread="" file="ZTIConfigure">
    <![LOG[No value found for OrgName]LOG]!><time="00:56:03.000+000" date="07-24-2013" component="ZTIConfigure" context="" type="1" thread="" file="ZTIConfigure">
    <![LOG[No value found for OrgName]LOG]!><time="00:56:04.000+000" date="07-24-2013" component="ZTIConfigure" context="" type="1" thread="" file="ZTIConfigure">
    <![LOG[No value found for FullName]LOG]!><time="00:56:04.000+000" date="07-24-2013" component="ZTIConfigure" context="" type="1" thread="" file="ZTIConfigure">
    <![LOG[No value found for FullName]LOG]!><time="00:56:04.000+000" date="07-24-2013" component="ZTIConfigure" context="" type="1" thread="" file="ZTIConfigure">
    <![LOG[Updated C:\MININT\Unattend.xml with DestinationDisk=0 (value was 0)]LOG]!><time="00:56:04.000+000" date="07-24-2013" component="ZTIConfigure" context="" type="1" thread="" file="ZTIConfigure">
    <![LOG[Updated C:\MININT\Unattend.xml with DestinationPartition=1 (value was 1)]LOG]!><time="00:56:04.000+000" date="07-24-2013" component="ZTIConfigure" context="" type="1" thread="" file="ZTIConfigure">
    <![LOG[Rewrote C:\MININT\Unattend.xml with changes]LOG]!><time="00:56:04.000+000" date="07-24-2013" component="ZTIConfigure" context="" type="1" thread="" file="ZTIConfigure">
    <![LOG[ZTIConfigure COMPLETED. Return Value = 0]LOG]!><time="00:56:04.000+000" date="07-24-2013" component="ZTIConfigure" context="" type="1" thread="" file="ZTIConfigure">
    <![LOG[ZTIConfigure processing completed successfully.]LOG]!><time="00:56:04.000+000" date="07-24-2013" component="ZTIConfigure" context="" type="1" thread="" file="ZTIConfigure">
    <![LOG[Event 41001 sent: ZTIConfigure processing completed successfully.]LOG]!><time="00:56:05.000+000" date="07-24-2013" component="ZTIConfigure" context="" type="1" thread="" file="ZTIConfigure">
    <![LOG[Will boot into Windows PE architecture x86 to match OS being deployed.]LOG]!><time="00:56:06.000+000" date="07-24-2013" component="LTIApply" context="" type="1" thread="" file="LTIApply">
    <![LOG[DestinationOSInstallType = BYDISKPARTITION]LOG]!><time="00:56:06.000+000" date="07-24-2013" component="LTIApply" context="" type="1" thread="" file="LTIApply">
    <![LOG[Found: DestinationDisk: 0]LOG]!><time="00:56:07.000+000" date="07-24-2013" component="LTIApply" context="" type="1" thread="" file="LTIApply">
    <![LOG[Found: DestinationPartition: 1]LOG]!><time="00:56:07.000+000" date="07-24-2013" component="LTIApply" context="" type="1" thread="" file="LTIApply">
    <![LOG[No drive mapped to Disk Partition: \\MININT-IDKMK2C\root\cimv2:Win32_DiskPartition.DeviceID="Disk #0, Partition #0"]LOG]!><time="00:56:07.000+000" date="07-24-2013" component="LTIApply" context="" type="1" thread="" file="LTIApply">
    <![LOG[Unable to yield a target Partition (Special Recovery option for Litetouch).]LOG]!><time="00:56:07.000+000" date="07-24-2013" component="LTIApply" context="" type="1" thread="" file="LTIApply">
    <![LOG[DestinationDisk and Partition did not yield a target Partition.]LOG]!><time="00:56:07.000+000" date="07-24-2013" component="LTIApply" context="" type="1" thread="" file="LTIApply">
    <![LOG[FAILURE ( 5456 ): Unable to determine Destination Disk, Partition, and/or Drive. See BDD.LOG for more information.]LOG]!><time="00:56:07.000+000" date="07-24-2013" component="LTIApply" context="" type="3" thread="" file="LTIApply">
    <![LOG[Event 41002 sent: FAILURE ( 5456 ): Unable to determine Destination Disk, Partition, and/or Drive. See BDD.LOG for more information.]LOG]!><time="00:56:08.000+000" date="07-24-2013" component="LTIApply" context="" type="1" thread="" file="LTIApply">
    <![LOG[Removing AutoAdminLogon registry entries]LOG]!><time="00:56:12.000+000" date="07-24-2013" component="LTICleanup" context="" type="1" thread="" file="LTICleanup">
    <![LOG[VSSMaxSize not specified using 5% of volume.]LOG]!><time="00:56:12.000+000" date="07-24-2013" component="LTICleanup" context="" type="1" thread="" file="LTICleanup">
    <![LOG[Logs contained 8 errors and 0 warnings.]LOG]!><time="00:56:13.000+000" date="07-24-2013" component="LTICleanup" context="" type="1" thread="" file="LTICleanup">
    <![LOG[No Windows PE image to delete.]LOG]!><time="00:56:13.000+000" date="07-24-2013" component="LTICleanup" context="" type="1" thread="" file="LTICleanup">
    <![LOG[Stripping BDD commands from unattend.xml template.]LOG]!><time="00:56:13.000+000" date="07-24-2013" component="LTICleanup" context="" type="1" thread="" file="LTICleanup">
    <![LOG[Modified unattend.xml saved to C:\windows\panther\unattend.xml]LOG]!><time="00:56:13.000+000" date="07-24-2013" component="LTICleanup" context="" type="1" thread="" file="LTICleanup">
    <![LOG[Checking mapped network drive.]LOG]!><time="00:56:14.000+000" date="07-24-2013" component="LTICleanup" context="" type="1" thread="" file="LTICleanup">
    <![LOG[testing drive Z: mapped to \\ncsd-wds.ncsd.local\deploymentshare$]LOG]!><time="00:56:14.000+000" date="07-24-2013" component="LTICleanup" context="" type="1" thread="" file="LTICleanup">
    <![LOG[testing drive Y: mapped to \\NCSD-WDS\Latitude10Deploy$]LOG]!><time="00:56:14.000+000" date="07-24-2013" component="LTICleanup" context="" type="1" thread="" file="LTICleanup">
    <![LOG[Disconnecting drive Y: mapped to \\NCSD-WDS\Latitude10Deploy$]LOG]!><time="00:56:14.000+000" date="07-24-2013" component="LTICleanup" context="" type="1" thread="" file="LTICleanup">
    <![LOG[Cleaning up C:\MININT directory.]LOG]!><time="00:56:14.000+000" date="07-24-2013" component="LTICleanup" context="" type="1" thread="" file="LTICleanup">
    <![LOG[Cleaning up TOOLS, SCRIPTS, and PACKAGES directories.]LOG]!><time="00:56:14.000+000" date="07-24-2013" component="LTICleanup" context="" type="1" thread="" file="LTICleanup">
    <![LOG[Removing C:\MININT folder (final log entry)]LOG]!><time="00:56:15.000+000" date="07-24-2013" component="LTICleanup" context="" type="1" thread="" file="LTICleanup">

  • Firefox won't save images or web pages, even after upgrading, reinstalling and resetting... How do I fix this?

    A couple upgrades ago, I noticed that Firefox wouldn't boot properly. According to "Task Mgr.", it would load partially with a "*32" after it's name in the listing, but not enough to display a window on screen. After ending the process, and restarting the program again it would usually boot fully. (not always, but usually) The "*32" confuses me as I run a 64bit Windows 7 system and during installation I was sure that I saw mention of a 64bit program being installed. Apparently, after the last upgrade, that issue was resolved; but Task Mgr. still lists the program with a "*32" after it.
    The issue now at hand is that Firefox won't save images online or save web pages. I'll right-click and select "save image as" or "save page as" and... nothing. No box appears prompting me to name a file or designate a location to save that file to. Nor does anything happen when I use the "File" menu for the same function either. This is, to say the least, is very frustrating. There may be other things not functioning that I'm not currently aware of, but I haven't been able to or had time to do a complete check of the functionality of the program. I've never had issues of any significance with Firefox in the past. It's always been very reliable for me, so I'm hoping there's a relatively quick fix that I simply haven't been made aware of yet...
    Thank you for your suggestions and time looking into this matter...
    Curtis Laipple

    It probably will take a little time to work through this troubleshooting article, but hopefully you will get a complete solution: [[What to do if you can't download or save files]].
    Regarding the *32, I see the same thing on Win 7 Pro x64. No worries. Firefox for Windows is compiled only as a 32-bit application.

  • Media Browser won't open iPhoto images after 10.4.5 update!@#$%^!@#$

    Media Browser won't open iPhoto images after 10.4.5 update!@#$%^!@#$
    I could use iPhoto images in Media Browser before the update - is this happening to anyone else?
    I have restarted... no change. Maybe I'll try opening and closing iPhoto once.

    Thanks for the reply.
    I am on Pages 2 also... Hmmm, Perhaps I just don't know what I am doing - New to Pages. I see my Library, Last Roll and all my albums in the Media Browser but when I double click one of them nothing happens - Is there some other way to open them?

  • Aperture import plug-in won't run.  After examining my library the number of image files stays at "undetermined" and the import button stays greyed out.  Any thoughts?

    Aperture import plug-in won't run.  After examining my library the number of image files stays at "undetermined" and the import button stays greyed out.  Any thoughts?

    Others have the same issue, with the import button being grayed out.  My trail copy expired, but I believe by poking around in the options and selecting another Aperture library and re-selecting, I was able to continue.
    The problem is common enough, that hopefully Adobe will address.  In the mean time, try repairing your Aperture library, checking permissions, exporting a subset of your library for a test, or try putting that library subset on an external drive.  (Can usually avoid permissions issues.)

  • SCCM 2012 SP1 fails to install OSD of Captured Image

    I installed Windows Server 2012, Visual Studio Pro 2008, 2010, 2012 and SQL Server 2012 onto a machine. Configured the settings on Windows Server 2012 and SQL 2012 to how the Developers requested to be configured. Ran the Capture Media from SCCM 2012 SP1,
    saved to the designated network share. Capture was successful.
    I create a TS to deploy the image to the other Dev Servers but it reboots to say no valid operating system found. I checked Monitoring for the Deployment I see the Task sequence but has the following error: Device - Unknown, MessageID - 11170, Description
    - The task sequence manager could not successfully complete execution of the task sequence.
    I see in the Apply Operation System from a captured image shows 1-1, 2-2, or 3-3. Does it matter which one I select and if so what does the numbers mean?
    Any help is greatly appreciated, thanks!!

    Hi Blacksuit,
    Those numbers of the captured image stand for the indexes that are part of your WIM.  And yes, it does matter which one you select.  In the ConfigMgr console, go to your Software Library > Operating Systems > Operating System Images and select
    the image you imported into ConfigMgr.  Then at the bottom, click the Details tab to display your indexes.  The index that contains your OS will have an OS Version and a description.  The other indexes will be data images and not contain any
    information in the Details tab.  You'll need to choose the index (number) that contains the OS for the Apply OS step.  To apply the data image indexes, use the Apply Data Image task sequence step and specify the partitions to apply the images
    too before the Apply OS step.
    Good luck!
    -Matt 

  • Deployment Workbench - how to capture an image after customisation?

    I have deployed Vista to a machine using WinPE (Created through Workbench) and chose the option when deploying "Prepare for capture"
    I then customised Vista - in this case removing the Fax applications and ran Sysprep with OOBE, Generalise and Shutdown.
    In workbench I created a new task sequence 'Standard Client Replace task sequence' which seems to be the right task to capture an image.
    When selecting the task when booting the machine with WinPE, it forces me to capture the user data - I cannot select 'Do not save data and settings'
    I must be doing something wrong!
    What I want to do is:
    Deploy Vista
    Install some apps manually i.e. not using a task sequence
    Capture the image
    Deploy to machines
    How can I do this using Workbench? Thanks.

    Hi,
    Thank you for the reply.
    I suggest referring to the following article:
    Creating a Computer Image
    http://technet.microsoft.com/en-us/library/bb977918.aspx
    If you select “Capture an image of this reference computer” on the “Specify whether to capture an image” page when running Deployment Wizard, it will sysprep and capture the system for you automatically.
    If you would like to
    “Install Vista and prepare for capture
    Install my own applications WITHOUT using task sequences
    Capture the OS”,
    I am afraid that you do not need to use MDT (you cannot perform a LTI without running Task Sequences). You can do this by only using WDS.
    1.   Install and configure the WDS Server.
    2.   Add the default Windows Server 2008 boot image to the WDS Server.
    3.   Create Capture Boot Image and add it to boot image in WDS Server.
    4.  Create a reference computer (install the operating system, applications, and make any other changes)
    5.  Sysprep.
    6.  PXE boot the reference computer into capture image on the boot screen and then capture the image (If non-PXE supported, make a discover image to boot)
    7.  Upload the captured image to WDS server.
    8.  Clients can PXE boot and install Windows (If non-PXE supported, use a discover image to boot).
    Hope it helps.
    Tim Quan - MSFT

  • Canon MP180 scanner won't be recognized after Mavericks upgrade

    Dear Apple Support Communities members,
    My Canon MP180 scanner won't be recognized after Mac OS X 10.9 (Mavericks) upgrade: neither in Image Capture nor in MP180 standalone app.
    The printer works well though.
    Any idea?
    Thanks a lot.
    Best wishes,
    Yves

    Well...
    I asked Canon support and got the answer that OS X 10.9 (Mavericks) was not supported.
    I am kindly being suggested either to downgrade from 10.9 or to buy another scanner. Cool.

  • Problem with capturing image

    http://1drv.ms/1jWJ5a3
    Problem with capturing image. Logs included.
    Also after deploying letters are swapped. System is on D drive, and data on C drive.
    Any idea ?

    Based on the logfiles:
    SMSSITECODE=K01
    SMSMP=SCCM.kolubara.local
    you could also use DNSSUFFIX=kolubara.local
    More on CCMSetup parameters can be found here
    http://technet.microsoft.com/en-us/library/gg699356.aspx. Use client.msi parameters in your task sequence separated by spaces, so that your Setup Windows & Configuration Manager Client -step looks like this:

Maybe you are looking for