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.

Similar Messages

  • MDT 2012 measuring amount and deployment time

    I'm on beginning of MDT's Adventure. For our Client we have to prepare in a monthly basis image load reports that contain amount of images deployed in requested period of time with information how many each OS installation took time. If it's possible to
    collect those information from MDT 2012/WDS logs and if it is possible to automation of preparation image load report process.

    You could always do a .count of your logging directory on the MDT DS.  The other option would be a Powershell script that runs at the end of the deployment.  It could be something as simple as --
    #TS Variables
    $tsenv = New-Object -COMObject Microsoft.SMS.TSEnvironment
    $scriptroot = $tsenv.Value("Scriptroot")
    #Machine Log Path
    $machineLog = machinelog.txt
    #WMI Variables
    $os = get-wmiobject win32_operatingsystem
    $computer = get-wmiboject win32_computersystem
    #VALIDATE MACHINE LOG EXISTS.
    if (!(test-path $scriptroot\$machinelog)){
    new-item -path $scriptroot\$machinelog}
    #ADD CONTENT TO MACHINE LOG.
    add-content -path $scriptroot\$machinelog -value "Machine built - $(Get-Date) - Machine Name : $computer.name OS : $os.version"
    #DONE
    exit 0
    This is really basic but you get the idea.  Have it shoot data to a file.  Usually you would want this into an xls file, but that takes a bit more work.  I take no responsibility for this script and it has not been tested, it's more to give
    you the idea of the construct for what you would need.  Good luck.

  • DPM 2012 R2 UR2 and Windows 2003 SP2 Agent Version Issue

    Hi All, I have UR2 installed on my DPM 2012 R2 server and have followed Mike's guide on getting them protected:
    http://blogs.technet.com/b/dpm/archive/2014/06/11/details-on-protecting-windows-server-2003-computers-using-data-protection-manager-2012-r2.aspx
    The agents now show in the DPM console but display as needing an update and showing as agent version 4.1.3313.0 instead of 4.1.3441.0, which is odd.
    Servers have:
    .Net 3.5 Sp1 Full
    Visual C++ 2008 Redistributable - x86 9.0.30729.17
    From the DPM server:
    C:\Program Files\Microsoft System Center 2012 R2\DPM\DPM\agents\RA\4.2.1235.0\i386\1033\DPMAgentInstaller_Win2K3_i386.exe
    Executed:
    setdpmserver.exe -dpmservername DPMserverName
    From the DPM server:
    Attach-ProductionServer.ps1 script on the DPM server and refreshed twice
    What have I missed?

    Hi.
    Reboot your 2003 Server
    Run DPM Setup again on Server 2003
    Run setdpmserver.exe again
    click refresh in DPM Server
    worked for me
    Seidl Michael | http://www.techguy.at |
    twitter.com/techguyat | facebook.com/techguyat

  • MDT 2012 to Migrate from Windows 2003 32 Bit to Windows 2012 R2 64 Bit

    I have used MDT for so long however only for client OS upgrade - XP to Windows 7/8.
    We wish to use MDT to migrate from Windows 2003 32 Bit to Windows 2012 R2 64 Bit. All servers are virtual on HyperV or VMWare - plan is to use USMT hardlink Migration.
    Is this supported? Has anyone used this for server migration?
    Regards, Vik Singh "If this thread answered your question, please click on "Mark as Answer"

    Thanks Keith for your reply.
    Even is USMT does not work, we are ok. SMIGdeploy will be helpful.
    Basically, want MDT to run some scripts on the Windows 2003 server, post which install Windows 2012 and join it to the existing domain with the same computer name.
    Then hydration kit to help with the installation of features etc. Also, we would like to take a complete backup to a WIM before migrating.
    I am sure this is workable.
    Regards, Vik Singh "If this thread answered your question, please click on "Mark as Answer"

  • FileIO and Windows file updating

    I am having a file problem with my Director application. I have two Director MX applications which run on different computers. They communicate with each other via a text file which is stored at a networked location. Both applications access the file and write to it. I have several users using the applications at the same time. Potentially, I could have 1 user using AppA and 8 users using AppB at one time.
    I am using the FileIO extra. When a user needs to update the file, the applications follow these steps:
         create the Fileio object
         open the file with write access
         read the file
         delete the file
         create the file
         open the file with write access
         write to the file
         close the file
         set the Fileio object to 0
    The problem occurs intermittently when users are accessing the file at approximately the same time. There are times when the correct information has apparently not been written to the file. For example, AppA reads the file, AppB reads the file, AppA writes new information to the file, AppB writes different new information to the file. Basically AppB's changes win and AppA's changes are lost.
    There also have been instances where the correct information has been written, but a user has accessed the information almost immediately and they receive the old information. If I check the file later, the correct information is there. I have seen similar behavior in the past where I've made changes to a text file but another application accessing that file still receives the old information. I believe this is a Windows issue where the file changes have not been actually stored yet.
    I really have two problems. First, there is apparently no way to lock the text file for the entire time it is being updated. I'm not sure this is solvable using Director and the FileIO xtra. Except for the moment between the delete and the open, I should have the file locked to other users. There is apparently no way, with the FileIO capability, of locking the file for the entire time.
    The second problem is the Windows issue with file changes taking some time to synch up. Is there a way to force the Windows text file to accept the changes so that I can be sure the next user is getting the absolutely latest file? I'm not sure how to describe the problem exactly to search for solutions. Is there a term for this?
    Any ideas are welcome. Thanks.

    If you have multiple instances of the same app using a single file then you should probably be using a database.
    If you want a simple, free and portable solution then I suggest checking out Valentin's SQLite Xtra here: http://staff.dasdeck.de/valentin/xtras/sqlite/

  • Change license to Windows 2012 R2 Essentials and Windows 2012 R2 Standard

    Hi,
    I'm working for a small company (10 users). We have 2 servers; 1 is a normal file server, domain controller etc.; the second is dedicated for running a financial application. We bought and installed new hardware but with so called 'Technet licenses'.
    Obviously we need to buy proper licenses. I have 2 questions :
    1. Am I correct in buying 1 Windows 2012 R2 Essentials license, 1 Windows 2012 R2 Standard license and 10 CALs ?
    2. Can I just install these licenses 'over' the existing 'Technet licenses' ?
    Any help will be greatly appreciated.
    Ronald Ruijtenberg

    I would purchase one Server Standard license, install it as a hypervisor on the server, then add to VMs.  First one is Server with the Essentials role, the second to run your financial application.  You can do this on one physical box and you
    only have to purchase one copy of Server Standard.
    Larry Struckmeyer[MVP] If your question is answered please mark the response as the answer so that others can benefit.

  • Mac Mini, USB, BootCamp and Windows Software Updates

    Right so ive recently bought a Mac Mini and Installed Windows 7 Home on it.
    First time went a bit haywire and now ive managed to sort it.
    Ive downloaded the WindowsSupport updates for the Mac but its stuck in my Mac OSX.
    When i log onto Windows there are no drivers and it does not recognise my External Hard Drive, so i cant install the updates. Because i cant install the drivers i have no internet connection on Windows.
    Its really frustrating me now, ive been at it for a good couple of days and i just cant find the solution to the problem.
    The Mac Mini has no Disc drive and i dont want to buy one. I only want to transfer the Drivers so everything works fine in Windows.
    Can anyone help?
    Appreciate any comments back to help me find this solution.
    Thanks

    itake it you have lion yea bad news you kinda need the mac drivers disk that is created by boot camp there is another way of doing it without internet access but you need a usb thumb drive.
    Here is how you do it
    1. plug in the usb thumb drive in mac os x
    2. go to utilitys
    3. go to disk utility click the thumb drive erase drive as ms dos partition fat32
    4. once thats completed close disk utility
    5. now copy your drivers to the thumb drive (but be farwarned you need the apple bootcamp drivers without those drivers you will not be able to leave windows and return to mac os x without the bootcamp control panel)

  • MDT 2012 import of a windows xp wim file

    Hi, i created using MDT a sysprepped wim image of windows xp Pro x86.
    all went good.
    now when i try to import the wim file in my deployment share it says succes,
    Directory structure is created but the os is not visable in the listed operating systems.
    WIM Information:
    GUID:  {2A7D4A1D-2275-4E40-9533-963E2B80F526}
    Image Count: 1
    Compression: LZX
    Part Number: 1/1
    Attributes: 0x8
      RP_FIX
    Image Index: 1
    Name:  AWS001CDrive
    Files:  18258
    Folders:  1052
    Expanded Size: 2236 MB
    WIM XML Information:
    <WIM>
      <TOTALBYTES>1055994471</TOTALBYTES>
      <IMAGE INDEX="1">
        <DIRCOUNT>1052</DIRCOUNT>
        <FILECOUNT>18258</FILECOUNT>
        <TOTALBYTES>2345533683</TOTALBYTES>
        <HARDLINKBYTES>0</HARDLINKBYTES>
        <CREATIONTIME>
          <HIGHPART>0x01CFE409</HIGHPART>
          <LOWPART>0xFBE4C974</LOWPART>
        </CREATIONTIME>
        <LASTMODIFICATIONTIME>
          <HIGHPART>0x01CFE409</HIGHPART>
          <LOWPART>0xFCCB4C08</LOWPART>
        </LASTMODIFICATIONTIME>
        <WINDOWS>
          <ARCH>0</ARCH>
          <PRODUCTNAME>Microsoft® Windows® Operating System</PRODUCTNAME>
          <HAL>acpiapic_up</HAL>
          <PRODUCTTYPE>WinNT</PRODUCTTYPE>
          <PRODUCTSUITE></PRODUCTSUITE>
          <LANGUAGES>
            <LANGUAGE>en-US</LANGUAGE>
            <DEFAULT>en-US</DEFAULT>
          </LANGUAGES>
          <VERSION>
            <MAJOR>5</MAJOR>
            <MINOR>1</MINOR>
            <BUILD>2600</BUILD>
            <SPBUILD>5512</SPBUILD>
            <SPLEVEL>3</SPLEVEL>
          </VERSION>
          <SYSTEMROOT>WINDOWS</SYSTEMROOT>
        </WINDOWS>
        <NAME>AWS001CDrive</NAME>
      </IMAGE>
    </WIM>
    please help
    att00000001 0.00000000 [7572] WizardProgress: Buttons disabled  
    00000002 0.00003996 [7572] WorkbenchRunspace.Acquire: busy=1 free=0  
    00000003 0.00009312 [7572] WizardProgress: Starting thread  
    00000004 0.00058514 [7572] WizardProgress: Enabling timer  
    00000005 0.01564251 [7572] Import OS  
    00000006 0.01605643 [7572] Performing operation "import" on Target "Operating system".  
    00000007 0.01889779 [7572] Copying: D:\Windows XPsp3\Operating Systems\CDT001\CDT001.wim to D:\BDD\XPSP3\Deploy\Operating Systems\CDT001\CDT001.wim because destination does not exist  
    00000008 0.02240201 [7572] Copying "D:\Windows XPsp3\Operating Systems\CDT001\CDT001.wim" to "D:\BDD\XPSP3\Deploy\Operating Systems\CDT001\CDT001.wim" (0%) (0)  
    00000009 0.63314098 [7572] Copying "D:\Windows XPsp3\Operating Systems\CDT001\CDT001.wim" to "D:\BDD\XPSP3\Deploy\Operating Systems\CDT001\CDT001.wim" (100%) (100)  
    00000010 0.63607800 [7572] Ignoring exception: System.PlatformNotSupportedException: Operation is not supported on this platform.  
    00000011 0.63607800 [7572]    at Microsoft.BDD.PSSnapIn.Verifier.CheckWim(String subdirectory, String wimFile)  
    00000012 0.63639331 [7572] Import processing finished.  
    00000013 0.63742131 [7572] Operating system added successfully.  
    00000014 0.63752323 [7572] Operating system added successfully.  
    00000015 1.00813878 [7572] WizardProgress: Thread is complete  
    00000016 1.00818348 [7572] WorkbenchRunspace.Release: busy=0 free=1  
    00000017 22.53772736 [7572] DeploymentPointScopeNode.Refresh: DS004:\Operating Systems\x86\Windows XP  
    00000018 22.53774261 [7572] DeploymentPointRefresher.Refresh: DS004:\Operating Systems\x86\Windows XP  
    00000019 22.53777504 [7572] WorkbenchRunspace.Acquire: busy=1 free=0  
    00000020 22.55024147 [7572] GetMDTItems: 0  
    00000021 22.55026817 [7572] GetChildItems: 0  
    00000022 22.55041885 [7572] WorkbenchRunspace.Release: busy=0 free=1  
    00000023 22.55044174 [7572] DeploymentPointRefresher.Refresh: Released runspace  
    00000024 22.55092049 [7572] DeploymentPointView.Refresh: DS004:\Operating Systems\x86\Windows XP  
    00000025 22.55094910 [7572] DeploymentPointRefresher.Refresh: DS004:\Operating Systems\x86\Windows XP  
    00000026 22.55097389 [7572] WorkbenchRunspace.Acquire: busy=1 free=0  
    00000027 22.56624222 [7572] GetMDTItems: 0  
    00000028 22.56626892 [7572] GetChildItems: 0  
    00000029 22.56674194 [7572] WorkbenchRunspace.Release: busy=0 free=1  
    00000030 22.56677055 [7572] DeploymentPointRefresher.Refresh: Released runspace  
    00000031 37.85541916 [7140] 7140: 2014-10-10 09:25:43.661 [CBS]                       IsCacheStillGood: True.  
    10 09:27:44.187 [CBS]                       IsCacheStillGood: True.  ached a screen print if the debug tool during import

    Did you specify the "Flags" switch when capturing the image with ImageX? Should be something.
    https://social.technet.microsoft.com/Forums/en-US/64e7a260-718e-4672-8f22-1c6bb5a1056d/litetouch-deployment-failed-return-code-2147467259-0x80004005?forum=mdt
    Keith Garner - Principal Consultant [owner] -
    http://DeploymentLive.com

  • SCCM 2012 vs WSUS for Windows Server Updates

    Hi, 
    Can anyone assist with clarifying the benefit of using SCCM 2012 for server patching over WSUS. As far as i understand SCCM can manage updates for third party applications if configured correctly. However if this is the only benefit I cannot see a clear
    reason for using it. 
    Any information on the benefits of SCCM for server patching would be much appreciated. 
    Regards, 
    Michael. 

    Hi,
    There are many reasons to use SCCM for patching instead of WSUS, I wrote a blog post a while ago listing 12 reasons why you should use it.
    http://ccmexec.com/2012/08/top-11-reasons-why-you-should-use-configmgr-2012-for-managing-software-updates/
    I hope that helps!
    Regards,
    Jörgen
    -- My System Center blog ccmexec.com -- Twitter
    @ccmexec

  • Skip Obtaining drivers from Windows Update using MDT 2012

    Does anyone know how to disable windows from obtaining drivers online after MDT is done imaging, the reason why I ask is that after the image is done, it takes forever for a dell keyboard to install drivers because windows is searching online. I would like
    to turn that setting off using MDT 2012 if possible.
    Thanks,
    Bobby

    Dynamic update only works when you are upgrading from an existing OS, and it only downloads critical drivers; network, video, audio, and mass storage. It wouldnt help in a bare metal build and probably wouldnt have anything to do with plug and play detecting
    a keyboard.
    http://technet.microsoft.com/en-us/library/ee126093(WS.10).aspx
    Our online driver search hasnt worked in a while, since they began configuring our browser with a .PAC file pushed down via GPO. WinHTTP can't pick up settings from the PAC file, and we can't hard code the settings into the OS, because there are
    a number of different proxies depending on where in the world you are.
    I actually hard code proxy and WinHTTP settings while I build the reference image and then remove them, just so I can do automatic updates. It's amazing how much more work "security" causes sometimes.

  • HT4235 I have tried everything previously suggested and I cannot get my laptop to recoginze my Apple Devices since the latest Windows 8 update!

    Here is the result of my iTunes Diagnostics Report. Please HELP!
    Microsoft Windows 8 x64 Home Premium Edition (Build 9200)
    Hewlett-Packard HP Pavilion g6 Notebook PC
    iTunes 11.1.5.5
    QuickTime 7.7.4
    FairPlay 2.5.16
    Apple Application Support 3.0.1
    iPod Updater Library 11.1f5
    CD Driver 2.2.3.0
    CD Driver DLL 2.1.3.1
    Apple Mobile Device 7.1.1.3
    Apple Mobile Device Driver not found.
    Bonjour 3.0.0.10 (333.10)
    Gracenote SDK 1.9.6.502
    Gracenote MusicID 1.9.6.115
    Gracenote Submit 1.9.6.143
    Gracenote DSP 1.9.6.45
    iTunes Serial Number  (Removed)
    Current user is not an administrator.
    The current local date and time is 2014-05-02 12:50:35.
    iTunes is not running in safe mode.
    WebKit accelerated compositing is enabled.
    HDCP is supported.
    Core Media is supported.
    **** External Plug-ins Information ****
    No external plug-ins installed.
    **** Network Connectivity Tests ****
    Network Adapter Information
    Adapter Name:        { }
    Description:            Microsoft Wi-Fi Direct Virtual Adapter #2
    IP Address:             0.0.0.0
    Subnet Mask:          0.0.0.0
    Default Gateway:    0.0.0.0
    DHCP Enabled:      Yes
    DHCP Server:        
    Lease Obtained:     Wed Dec 31 19:00:00 1969
    Lease Expires:       Wed Dec 31 19:00:00 1969
    DNS Servers:        
    Adapter Name:        { }
    Description:            Microsoft Wi-Fi Direct Virtual Adapter
    IP Address:             0.0.0.0
    Subnet Mask:          0.0.0.0
    Default Gateway:    0.0.0.0
    DHCP Enabled:      Yes
    DHCP Server:        
    Lease Obtained:     Wed Dec 31 19:00:00 1969
    Lease Expires:       Wed Dec 31 19:00:00 1969
    DNS Servers:        
    Adapter Name:        { }
    Description:            Realtek PCIe FE Family Controller
    IP Address:             0.0.0.0
    Subnet Mask:          0.0.0.0
    Default Gateway:  
    DHCP Enabled:      Yes
    DHCP Server:        
    Lease Obtained:     Wed Dec 31 19:00:00 1969
    Lease Expires:       Wed Dec 31 19:00:00 1969
    DNS Servers:        
    Adapter Name:        { }
    Description:            Ralink RT3290 802.11bgn Wi-Fi Adapter
    IP Address:             
    Subnet Mask:            Default Gateway:   
    DHCP Enabled:      Yes
    DHCP Server:       
    Lease Obtained:     Fri May 02 11:50:41 2014
    Lease Expires:       Sat May 03 11:50:41 2014
    DNS Servers:        
    Active Connection: LAN Connection
    Connected:             Yes
    Online:                    Yes
    Using Modem:        No
    Using LAN:             Yes
    Using Proxy:           No
    Firewall Information
    Windows Firewall is on.
    iTunes is NOT enabled in Windows Firewall.  (This is incorrect. It is enabled).
    Connection attempt to Apple web site was successful.
    Connection attempt to browsing iTunes Store was successful.
    Connection attempt to purchasing from iTunes Store was successful.
    Connection attempt to iPhone activation server was successful.
    Connection attempt to firmware update server was successful.
    Connection attempt to Gracenote server was successful.
    Last successful iTunes Store access was 2014-05-02 12:47:06.
    **** Device Connectivity Tests ****
    iPodService 11.1.5.5 (x64) is currently running.
    iTunesHelper 11.1.5.5 is currently running.
    Apple Mobile Device service 3.3.0.0 is currently running.
    No Universal Serial Bus Controller found.
    No FireWire (IEEE 1394) Host Controller found.
    Most Recent Devices Not Currently Connected:
    iPhone 4S running firmware version 7.1
    Serial Number:       
    iPad 2 running firmware version 7.0.4
    Serial Number:       
    **** Device Sync Tests ****
    No iPod, iPhone, or iPad found.

    Hello,
    Thank you for visiting Apple Support Communities.
    If your device is not recognized by iTunes, I would recommend the steps in the article below.  Start with the section labeled Verify that the Apple Mobile Device USB Driver is installed > For Windows Vista, Windows 7, and Windows 8 > Update the Apple Mobile Device Driver.
    iOS: Device not recognized in iTunes for Windows
    http://support.apple.com/kb/TS1538
    Cheers,
    Jason H.

  • P505 Widnow 7 After Recovery, All Tosbiba HW driver report unsigned driver and no Window 7 Update

    Hello,
    I just clean up the HD and use the recovery media that created after I get the system to recover my wife's Satellite P505-S8980 system due to some virus causing the system problems. I recover the system to a brand new harddisk with all the default options. Window 7 recovered successfully.
    After the finial boot, the screen turn to lower resolutions and once login, I went to device manager report that the Video, Wifi, Ethernet and SD Card reader were all unsigned driver and do not able to start them. I then try to do F8 during reboot to bypass driver verification, window working just fine. But if I boot it normally, it will have problem with those drivers. I think also try to install newer driver from Support webstie, those driver have the same problem.
    I was trying to do a Window update, it always fail to update. How can it be fixed? Both driver problem and Window 7 update. I guess this problem must be linked.
    Mcken

    Satellite P505-S8980 
    ..use the recovery media that created after I get the system to recover
    I would do the very same thing again, that is, restore the hard disk to its original out-of-the-box contents using Toshiba recovery media. (You can do it from the hard disk directly. See p. 62 in the User's Guide.)
    If the trouble occurs before making any changes, then there is almost certainly a hardware problem. To be sure,  you could reflash the BIOS.
    -Jerry

  • MDT 2012 Win7 x64 capture fails - boot loop

    Hi everyone,
    I'm pretty new to MDT and having a problem capturing a Win7 x64 reference image.
    It seems to start out fine doing the Sysprep and so on, but then it has to restart the computer and after that it goes into a boot loop. After this, I have been forced to format and reinstall Win7 on the computer. This picture shows what it loops through
    in about 20 seconds - and it shows nothing else than what's on these pictures :)
    www.jaded.dk/boot_loop.png
    I have been Google'ing alot, but can't find any post with the same issue, since most other get an error msg which I dont.
    Here is some info about the setup.
    I'm deploying the task sequence locally using these commands:
    net use * \\mdtserver\DeploymentShare$ /user:domain\username
    cscript \\mdtserver\DeploymentShare$\Scripts\LiteTouch.wsf
    Server running MDT 2012 U1 - Win server 2008 R2, 64 bit
    The laptop on which i'm trying to capture the ref img is a HP Elitebook 8470p. It is fully patched with windows updates and I have installed a few apps like Office 2010, flash player, reader etc.
    The "Rules" on my MDT Workbench is like this:
    [Settings]
    Priority=Default
    Properties=MyCustomProperty
    [Default]
    OSInstall=Y
    SkipCapture=NO
    SkipAdminPassword=YES
    SkipProductKey=YES
    SkipComputerBackup=YES
    SkipBitLocker=YES
    SkipTimeZone=YES
    SkipLocaleSelection=YES
    InputLocale=0406:00000406
    KeyboardLocale=0406:00000406
    KeyboardLocalePE=0406:00000406
    SystemLocale=0406:00000406
    UILanguage=0406
    UserLocale=0406:00000406
    My task sequence looks like this:
    www.jaded.dk/task_seq.png
    I don't know where to find a log of the capture, to get a hint of what has gone wrong.
    Hope you can help me out here :) And please let me know if you need more info.
    Thanks
    Morten

    Thank you both for answering.
    ccatlett_sogeti:
    I didn't seem to have Windows Deployment Services installed on my server. I just installed it and added WinPE boot files as bootimage according to this guide: http://blogs.technet.com/b/manojnair/archive/2011/11/23/exploring-mdt-2012-beta-2-part-6-of-10-integrating-mdt-2012-beta-2-with-windows-deployment-services-wds.aspx
    Is that correct?
    Keep in mind that I don't use PXE at the moment, if that makes any difference :)
    David:
    I will try to add SLShareDynamicLogging. I set it like this - hope it's correct:
    SLShareDynamicLogging =\\MDTSERVER\DeploymentShare$\Logs\%ComputerName%

  • X301 and Windows 7

    Hello,
    I installed Windows 7 on my X301 and have problems with three hardware devices.
    One is the fingerprint reader. It is shown in the device manager but I cannot find a vaild driver.
    The other two hardware devices I am not able to identify.
    Is there a solution for these problems? When will drivers be available for windows 7? (I read the driver announcement post)
    Regards,
    Mathias
    Solved!
    Go to Solution.

    http://support.us.dell.com/support/downloads/download.aspx?c=us&l=en&s=gen&releaseid=R186441&formatc... 
    Dell's fingerprint suit can be set-up on X301 instead of lenovo's package - works perfect!
    now fo Wimedia device (that is wireless LAN) use the one from System Update (it show 2 Wireless LAN packages) that has "64 bit" in the name and ignore the second...
    Install Auto features from Sysem Update - that wil properly enable microphone
    Don't install registry patches and Vista Component updates...
    Good luck....
    P.S. I assume that You running 64bit version of OS... there is no reason to use 32bit on any hardware that allows to run 64bit....
    Message Edited by shalamov on 01-31-2009 03:59 AM

  • 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

Maybe you are looking for

  • Intermittent JBO-35007 (Row currency has changed...) and coordination

    I get an intermittent JBO-35007: Row currency has changed since the user interface was rendered. It is not repeatable - ie. if the user leaves the application and starts it again, whatever they were doing works ok. It happens about every hour when th

  • Keynote Presentations not opening on ios7--Helpful Hint

    I went on Keynote today on my iPad ready to load a presentation--and found when I clicked it, many of my older presentations would not load. Some of the newer presentations loaded, but not older ones, after, of course, updating to ios7. This hint is

  • Missing new gl field in document posted

    Hi SAP GURUS, We have Z partner profit center field as new gl custom chracteristics and it got derived from custom table. In few cases that custom table was not filled and same not got populated in document. Even if we make this field as changable in

  • Using .jar files in WebDynpro DC's

    Hello, I am having a problem while trying to create a structure for a Web Dynpro component using .jars. For a better understanding of the background, the whole story happens in JDI SS9 (SAP NW Dev Studio 2.0.9 and it's corresponding DTR version) ther

  • Skype crashes when starting up after updating to 7...

    this is getting frustrating, i've uninstalled and reinstalled several times, cleared out all appdata and everything and ran dxdiag Solved! Go to Solution. Attachments: DxDiag.zip ‏13 KB