WDS- Windows 8 deployment failed

Hi Everyone,
While re-imaging the windows 8 my deployment was failed.
Please find the error 

there is no error in bdd.log.
<![LOG[Property LogPath is now = C:\MININT\SMSOSD\OSDLOGS]LOG]!><time="10:40:54.000+000" date="12-04-2014" component="Wizard" context="" type="1" thread="" file="Wizard">
<![LOG[Property definition is now = Summary_Definition_ENU.xml]LOG]!><time="10:40:54.000+000" date="12-04-2014" component="Wizard" context="" type="1" thread="" file="Wizard">
<![LOG[Microsoft Deployment Toolkit version: 6.2.5019.0]LOG]!><time="10:40:54.000+000" date="12-04-2014" component="Wizard" context="" type="1" thread="" file="Wizard">
<![LOG[Property Debug is now = FALSE]LOG]!><time="10:40:54.000+000" date="12-04-2014" component="Wizard" context="" type="1" thread="" file="Wizard">
<![LOG[Not Wizard = False]LOG]!><time="10:40:54.000+000" date="12-04-2014" component="Wizard" context="" type="1" thread="" file="Wizard">
<![LOG[Property WizardComplete is now = N]LOG]!><time="10:40:54.000+000" date="12-04-2014" component="Wizard" context="" type="1" thread="" file="Wizard">

Similar Messages

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

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

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

  • Messaging working in BlazeDS deployed on Windows Tomcat but failing in Tomcat deployed on Ubuntu

    I have been going round and round on this for days. I have no idea how to solve it. Everything works fine in windows but now I have to move to Ubuntu. I set up a streaming server with BlazeDS which is messaging to my clients great when my war is in tomcat 7 on windows but is failing in tomcat 7 on Ubuntu.
    I see my client connect to BlazeDS on Ubuntu. The DEBUG messages print out that I have a client subscribed. It says that I have one FlexSession for an id and one client subscribed to streaming-amf. Then, a few seconds later, it says that the client sent a duplicate request "streaming-amf recieved a duplicate sreaming connection request from, FlexClient with id ... Faulting request."
    Next the log files print out that there are no streaming clients for the FlexSession and no streaming clients for the endpoint streaming-amf.
    This is the same software that works fine in the Windows Tomcat container but is not in Ubuntu Tomcat even though the WAR is exactly the same. In case it helps, my config files and calls are below:
    messaging-config.xml
        <destination id="sp-streamingchannel">   
                           <properties>
                <network>
                    <session-timeout>0</session-timeout>
                    <throttle-inbound policy="ERROR" max-frequency="50"/>
                    <throttle-outbound policy="REPLACE" max-frequency="500"/>
                </network>
                <server>
                    <allow-subtopics>true</allow-subtopics>
                    <subtopic-separator>.</subtopic-separator>
                    <max-cache-size>1000</max-cache-size>
                    <message-time-to-live>0</message-time-to-live>
                    <durable>true</durable>
                </server>
            </properties>
                <channels>
                 <channel ref="streaming-amf"/>           
                </channels>
               <adapter ref="SPStreamingAdapter"/>
               </destination>
    services-conf.xml
        <channel-definition id="streaming-amf" class="mx.messaging.channels.StreamingAMFChannel">
                  <endpoint url="http://localhost:8080/SP-Web-1.0/messagebroker/spamf" class="flex.messaging.endpoints.StreamingAMFEndpoint"/>
                        <properties>
                            <idle-timeout-minutes>0</idle-timeout-minutes>
                            <max-streaming-clients>150</max-streaming-clients>                      
                            <server-to-client-heartbeat-millis>5000</server-to-client-heartbeat-millis>
                                  <user-agent-settings>
                          <user-agent match-on="MSIE" kickstart-bytes= "2048"  max-streaming-connections-per-session="2"/> 
                          <user-agent match-on="Firefox" kickstart-bytes="0"  max-streaming-connections-per-session="4"/>
                          <user-agent match-on="AdobeAIR" kickstart-bytes="2048" max-streaming-connections-per-session="2" />
                </user-agent-settings>
                        </properties>
              </channel-definition>
    The calls in Flex:
    public var channelDest:String = "http://98.193.212.138:8080/SP-Web-1.0/messagebroker/spamf";
    private var channelName:String = "streaming-amf";
    channelSet = new ChannelSet();
    channel = new StreamingAMFChannel(channelName, channelDest);
    var c:StreamingAMFChannel = new StreamingAMFChannel();
    channelSet.addChannel(channel);
    channel.connect(channelSet);
    consumer = new Consumer();
    consumer.destination  = "sp-streamingchannel";
    consumer.channelSet = channelSet;
    consumer.subtopic = "table." + tableID;
    consumer.subscribe();
    Why would this work fine on one server but fail on the other? Thanks so much for any help you can offer.
    While it may not be releavnt to this question, I do have remoting working fine with BlazeDS on both systems. When my app starts, the user has to log in. All of that is done with BlazeDS and is working fine on both Win and Ubuntu. I only have a problem when it comes to streaming with BlazeDS as is shown above.

    I have been going round and round on this for days. I have no idea how to solve it. Everything works fine in windows but now I have to move to Ubuntu. I set up a streaming server with BlazeDS which is messaging to my clients great when my war is in tomcat 7 on windows but is failing in tomcat 7 on Ubuntu.
    I see my client connect to BlazeDS on Ubuntu. The DEBUG messages print out that I have a client subscribed. It says that I have one FlexSession for an id and one client subscribed to streaming-amf. Then, a few seconds later, it says that the client sent a duplicate request "streaming-amf recieved a duplicate sreaming connection request from, FlexClient with id ... Faulting request."
    Next the log files print out that there are no streaming clients for the FlexSession and no streaming clients for the endpoint streaming-amf.
    This is the same software that works fine in the Windows Tomcat container but is not in Ubuntu Tomcat even though the WAR is exactly the same. In case it helps, my config files and calls are below:
    messaging-config.xml
        <destination id="sp-streamingchannel">   
                           <properties>
                <network>
                    <session-timeout>0</session-timeout>
                    <throttle-inbound policy="ERROR" max-frequency="50"/>
                    <throttle-outbound policy="REPLACE" max-frequency="500"/>
                </network>
                <server>
                    <allow-subtopics>true</allow-subtopics>
                    <subtopic-separator>.</subtopic-separator>
                    <max-cache-size>1000</max-cache-size>
                    <message-time-to-live>0</message-time-to-live>
                    <durable>true</durable>
                </server>
            </properties>
                <channels>
                 <channel ref="streaming-amf"/>           
                </channels>
               <adapter ref="SPStreamingAdapter"/>
               </destination>
    services-conf.xml
        <channel-definition id="streaming-amf" class="mx.messaging.channels.StreamingAMFChannel">
                  <endpoint url="http://localhost:8080/SP-Web-1.0/messagebroker/spamf" class="flex.messaging.endpoints.StreamingAMFEndpoint"/>
                        <properties>
                            <idle-timeout-minutes>0</idle-timeout-minutes>
                            <max-streaming-clients>150</max-streaming-clients>                      
                            <server-to-client-heartbeat-millis>5000</server-to-client-heartbeat-millis>
                                  <user-agent-settings>
                          <user-agent match-on="MSIE" kickstart-bytes= "2048"  max-streaming-connections-per-session="2"/> 
                          <user-agent match-on="Firefox" kickstart-bytes="0"  max-streaming-connections-per-session="4"/>
                          <user-agent match-on="AdobeAIR" kickstart-bytes="2048" max-streaming-connections-per-session="2" />
                </user-agent-settings>
                        </properties>
              </channel-definition>
    The calls in Flex:
    public var channelDest:String = "http://98.193.212.138:8080/SP-Web-1.0/messagebroker/spamf";
    private var channelName:String = "streaming-amf";
    channelSet = new ChannelSet();
    channel = new StreamingAMFChannel(channelName, channelDest);
    var c:StreamingAMFChannel = new StreamingAMFChannel();
    channelSet.addChannel(channel);
    channel.connect(channelSet);
    consumer = new Consumer();
    consumer.destination  = "sp-streamingchannel";
    consumer.channelSet = channelSet;
    consumer.subtopic = "table." + tableID;
    consumer.subscribe();
    Why would this work fine on one server but fail on the other? Thanks so much for any help you can offer.
    While it may not be releavnt to this question, I do have remoting working fine with BlazeDS on both systems. When my app starts, the user has to log in. All of that is done with BlazeDS and is working fine on both Win and Ubuntu. I only have a problem when it comes to streaming with BlazeDS as is shown above.

  • WDS Windows Server 2008 R2 network boot PXE x86 UEFI support?

    Hi,
    WDS Windows Server 2008 R2 network boot  PXE x86 UEFI support?
    -I have an SCCM 2012 SP1 site on Windows server 2008 R2.
    -I have an HP ElitePAD 900 with Atom x86 processor, and I have some problem to deploy an OSD image to the ElitePAD.
    Do I need WDS on an Server 2012 to get PXE x86 UEFI support with KB2817245?
    http://support.microsoft.com/kb/2817245/en-us
    /Per Sai
    /SaiTech

    Is this why I get this error with 2008R2?
    Windows failed to start.  A recent hardware or software change might be the cause.  To fix it... <blahblah>
    File:\Windows\System32\boot\winload.efi
    Status: 0xc0000359
    Thanks,
    Jason

  • MDT 2012U1 / Windows 8 deployment - impossible to add a role when deploying windows with language pack

    Hello,
    I am having a problem deploying Windows 8 with language packs and adding at the same time a role/feature (netfx3).
    What I have done is creating a Standard Client Task Sequence. In the task sequence I have added, in the State Restore phase, the step Install Roles and Features (where only .Net Framework 3.5 is selected). I have configured nothing else !
    If I use this task sequence, everything is ok; Windows 8 is well deployed and NetFx3 feature is installed.
    Now, if I add one or more language packs in the MDT console and select them when using the previously created task sequence, the deployment fails with one error : ERROR - NetFx3 role processing with DISM.exe failed, rc = -2146498529.
    The language packs are well installed but as the error message says, NetFx3 is not installed.
    In the ZTIOSRole.log I can find this :
    <![LOG[Microsoft Deployment Toolkit version: 6.1.2373.0]LOG]!><time="12:55:04.000+000" date="10-24-2012" component="ZTIOSRole" context="" type="1" thread="" file="ZTIOSRole">
    <![LOG[The task sequencer log is located at C:\Users\ADMINI~1\AppData\Local\Temp\SMSTSLog\SMSTS.LOG.  For task sequence failures, please consult this log.]LOG]!><time="12:55:04.000+000" date="10-24-2012" component="ZTIOSRole" context="" type="1"
    thread="" file="ZTIOSRole">
    <![LOG[Roles will be installed.]LOG]!><time="12:55:04.000+000" date="10-24-2012" component="ZTIOSRole" context="" type="1" thread="" file="ZTIOSRole">
    <![LOG[No items were specified in variable OSRoles.]LOG]!><time="12:55:04.000+000" date="10-24-2012" component="ZTIOSRole" context="" type="1" thread="" file="ZTIOSRole">
    <![LOG[No items were specified in variable OSRoleServices.]LOG]!><time="12:55:04.000+000" date="10-24-2012" component="ZTIOSRole" context="" type="1" thread="" file="ZTIOSRole">
    <![LOG[Features specified in Feature:]LOG]!><time="12:55:04.000+000" date="10-24-2012" component="ZTIOSRole" context="" type="1" thread="" file="ZTIOSRole">
    <![LOG[  NetFx3]LOG]!><time="12:55:04.000+000" date="10-24-2012" component="ZTIOSRole" context="" type="1" thread="" file="ZTIOSRole">
    <![LOG[No items were specified in variable OptionalOSRoles.]LOG]!><time="12:55:04.000+000" date="10-24-2012" component="ZTIOSRole" context="" type="1" thread="" file="ZTIOSRole">
    <![LOG[No items were specified in variable OptionalOSRoleServices.]LOG]!><time="12:55:04.000+000" date="10-24-2012" component="ZTIOSRole" context="" type="1" thread="" file="ZTIOSRole">
    <![LOG[No items were specified in variable OptionalOSFeatures.]LOG]!><time="12:55:04.000+000" date="10-24-2012" component="ZTIOSRole" context="" type="1" thread="" file="ZTIOSRole">
    <![LOG[ZTI Heartbeat: Processing roles (0% complete]LOG]!><time="12:55:04.000+000" date="10-24-2012" component="ZTIOSRole" context="" type="1" thread="" file="ZTIOSRole">
    <![LOG[Event 41003 sent: ZTI Heartbeat: Processing roles (0% complete]LOG]!><time="12:55:04.000+000" date="10-24-2012" component="ZTIOSRole" context="" type="1" thread="" file="ZTIOSRole">
    <![LOG[Validating connection to \\HPZ820\ZENPROD01$\Operating Systems\W8ENTSP0x64]LOG]!><time="12:55:04.000+000" date="10-24-2012" component="ZTIOSRole" context="" type="1" thread=""
    file="ZTIOSRole">
    <![LOG[Already connected to server HPZ820 as that is where this script is running from.]LOG]!><time="12:55:05.000+000" date="10-24-2012" component="ZTIOSRole" context="" type="1" thread="" file="ZTIOSRole">
    <![LOG[Copying source files locally from \\HPZ820\ZENPROD01$\Operating Systems\W8ENTSP0x64\sources\sxs]LOG]!><time="12:55:05.000+000" date="10-24-2012" component="ZTIOSRole" context=""
    type="1" thread="" file="ZTIOSRole">
    <![LOG[About to execute command: cmd.exe /c C:\windows\system32\DISM.exe /Online /Enable-Feature /FeatureName:"NetFx3" /Source:"C:\MININT\sources\X64" /LimitAccess /All /NoRestart /logpath:C:\MININT\SMSOSD\OSDLOGS\ZTIOSRole_Dism.log >> C:\MININT\SMSOSD\OSDLOGS\ZTIOSRole_DismConsole.log]LOG]!><time="12:55:24.000+000"
    date="10-24-2012" component="ZTIOSRole" context="" type="1" thread="" file="ZTIOSRole">
    <![LOG[ERROR - NetFx3 role processing with DISM.exe failed, rc = -2146498529]LOG]!><time="12:55:57.000+000" date="10-24-2012" component="ZTIOSRole" context="" type="3" thread="" file="ZTIOSRole">
    <![LOG[Property InstalledRoles001 is now = NETFX3]LOG]!><time="12:55:57.000+000" date="10-24-2012" component="ZTIOSRole" context="" type="1" thread="" file="ZTIOSRole">
    <![LOG[Role processing complete.]LOG]!><time="12:55:57.000+000" date="10-24-2012" component="ZTIOSRole" context="" type="1" thread="" file="ZTIOSRole">
    <![LOG[ZTIOSRole processing completed successfully.]LOG]!><time="12:55:57.000+000" date="10-24-2012" component="ZTIOSRole" context="" type="1" thread="" file="ZTIOSRole">
    <![LOG[Event 41001 sent: ZTIOSRole processing completed successfully.]LOG]!><time="12:55:58.000+000" date="10-24-2012" component="ZTIOSRole" context="" type="1" thread="" file="ZTIOSRole">
    If I take the same log file from a machine where I have used the same task sequence but without deploying language packs, I can find that :
    <![LOG[Microsoft Deployment Toolkit version: 6.1.2373.0]LOG]!><time="13:59:57.000+000" date="10-24-2012" component="ZTIOSRole" context="" type="1" thread="" file="ZTIOSRole">
    <![LOG[The task sequencer log is located at C:\Users\ADMINI~1\AppData\Local\Temp\SMSTSLog\SMSTS.LOG.  For task sequence failures, please consult this log.]LOG]!><time="13:59:57.000+000" date="10-24-2012" component="ZTIOSRole" context="" type="1"
    thread="" file="ZTIOSRole">
    <![LOG[Roles will be installed.]LOG]!><time="13:59:57.000+000" date="10-24-2012" component="ZTIOSRole" context="" type="1" thread="" file="ZTIOSRole">
    <![LOG[No items were specified in variable OSRoles.]LOG]!><time="13:59:57.000+000" date="10-24-2012" component="ZTIOSRole" context="" type="1" thread="" file="ZTIOSRole">
    <![LOG[No items were specified in variable OSRoleServices.]LOG]!><time="13:59:57.000+000" date="10-24-2012" component="ZTIOSRole" context="" type="1" thread="" file="ZTIOSRole">
    <![LOG[Features specified in Feature:]LOG]!><time="13:59:57.000+000" date="10-24-2012" component="ZTIOSRole" context="" type="1" thread="" file="ZTIOSRole">
    <![LOG[  NetFx3]LOG]!><time="13:59:57.000+000" date="10-24-2012" component="ZTIOSRole" context="" type="1" thread="" file="ZTIOSRole">
    <![LOG[No items were specified in variable OptionalOSRoles.]LOG]!><time="13:59:57.000+000" date="10-24-2012" component="ZTIOSRole" context="" type="1" thread="" file="ZTIOSRole">
    <![LOG[No items were specified in variable OptionalOSRoleServices.]LOG]!><time="13:59:57.000+000" date="10-24-2012" component="ZTIOSRole" context="" type="1" thread="" file="ZTIOSRole">
    <![LOG[No items were specified in variable OptionalOSFeatures.]LOG]!><time="13:59:57.000+000" date="10-24-2012" component="ZTIOSRole" context="" type="1" thread="" file="ZTIOSRole">
    <![LOG[ZTI Heartbeat: Processing roles (0% complete]LOG]!><time="13:59:57.000+000" date="10-24-2012" component="ZTIOSRole" context="" type="1" thread="" file="ZTIOSRole">
    <![LOG[Event 41003 sent: ZTI Heartbeat: Processing roles (0% complete]LOG]!><time="13:59:57.000+000" date="10-24-2012" component="ZTIOSRole" context="" type="1" thread="" file="ZTIOSRole">
    <![LOG[Validating connection to \\HPZ820\ZENPROD01$\Operating Systems\W8ENTSP0x64]LOG]!><time="13:59:57.000+000" date="10-24-2012" component="ZTIOSRole" context="" type="1" thread=""
    file="ZTIOSRole">
    <![LOG[Already connected to server HPZ820 as that is where this script is running from.]LOG]!><time="13:59:57.000+000" date="10-24-2012" component="ZTIOSRole" context="" type="1" thread="" file="ZTIOSRole">
    <![LOG[Copying source files locally from \\HPZ820\ZENPROD01$\Operating Systems\W8ENTSP0x64\sources\sxs]LOG]!><time="13:59:57.000+000" date="10-24-2012" component="ZTIOSRole" context=""
    type="1" thread="" file="ZTIOSRole">
    <![LOG[About to execute command: cmd.exe /c C:\windows\system32\DISM.exe /Online /Enable-Feature /FeatureName:"NetFx3" /Source:"C:\MININT\sources\X64" /LimitAccess /All /NoRestart /logpath:C:\MININT\SMSOSD\OSDLOGS\ZTIOSRole_Dism.log >> C:\MININT\SMSOSD\OSDLOGS\ZTIOSRole_DismConsole.log]LOG]!><time="14:00:20.000+000"
    date="10-24-2012" component="ZTIOSRole" context="" type="1" thread="" file="ZTIOSRole">
    <![LOG[NetFx3 role processing succeeded, rc = 0]LOG]!><time="14:03:50.000+000" date="10-24-2012" component="ZTIOSRole" context="" type="1" thread="" file="ZTIOSRole">
    <![LOG[Property InstalledRoles001 is now = NETFX3]LOG]!><time="14:03:50.000+000" date="10-24-2012" component="ZTIOSRole" context="" type="1" thread="" file="ZTIOSRole">
    <![LOG[Role processing complete.]LOG]!><time="14:03:50.000+000" date="10-24-2012" component="ZTIOSRole" context="" type="1" thread="" file="ZTIOSRole">
    <![LOG[ZTIOSRole processing completed successfully.]LOG]!><time="14:03:50.000+000" date="10-24-2012" component="ZTIOSRole" context="" type="1" thread="" file="ZTIOSRole">
    <![LOG[Event 41001 sent: ZTIOSRole processing completed successfully.]LOG]!><time="14:03:51.000+000" date="10-24-2012" component="ZTIOSRole" context="" type="1" thread="" file="ZTIOSRole">
    As you can see, in both logfile, the source are copied from the same folder.
    Does anyone have an idea ? what am I missing ?
    I have easily reproduced the problem on another computer (installing ADK/MDT, installing OS and creating task sequence).
    Thanks in advance for your help.
    Marc.

    Hello,
    Workaround:
    1. copy stock sxs folder to local disk (e.g c:\sxs)
    2. make a direct internet connection (don't use proxy!)
    3. open admin command prompt and type: DISM.exe /online /enable-feature /featurename:NetFX3 /All /Source:c:\sxs
    4. after the successful install find the c:\windows\winsxs folder and sort by date
    5. copy new folders (that are equal to current date) to deployment share's sxs folder (overwrite)
    And now, try standard MDT install (create "Install Role And Feature" step in the Task Sequence, enable .NET install).

  • MDT2012 - Deployment failed, the system cannot find the file specified

    Hi everybody. 
    First, excuse me for my english, i think it's not the best thing I'm able to do, but now, I REALLY need help. 
    I encounter issues with my MDT 2012 Update 1 platform. 
    I have 5 systems to capture. All systems have 3 partitions (System, softwares, data). Capture is working fine for all parts. 
    In my Task Sequence, to deploy these images (C, D and E parts), I use a script after the "Install Operating System" which runs imagex to deploy the WIM images for D: and E:. 
    The script is the following : 
    "%DeployRoot%\Tools\x64\imagex" /apply "%DeployRoot%\Operating Systems\D_Drive\D_Drive.wim" 1 %DDrive%"
    But, for some images, the task fails on the "D" drive deployement. The wizard shows the following error : 
    Litetouch deployment dailed, return code = -214767259 0x80004005
    Failed to run the action: InstallD (ie : the script above)
    The system cannot find the file specified. (Error: 00000002; Source: Windows)
    The error is on my task which uses imagex to deploy my D and E WIM.
    So I looked to see if the file's path was the good one. 
    And it is !!!
    Wizard says that the file couldn't be find, but the file is existing, and in the good path. 
    For your information, there is no problem when I don't use multicast. Everything is working fine on unicast, not on multicast. 
    I even encounter this issue if I use my MDT server and my computers on the same switch. 
    Any help would be gratefull, my client gives me the week to resolve the issue. 
    Thanks 

    BDD.LOG
    <![LOG[Microsoft Deployment Toolkit version: 6.1.2373.0]LOG]!><time="16:53:56.000+000" date="02-19-2014" component="LTIApply" context="" type="1" thread="" file="LTIApply">
    <![LOG[The task sequencer log is located at X:\WINDOWS\TEMP\SMSTSLog\SMSTS.LOG.  For task sequence failures, please consult this log.]LOG]!><time="16:53:56.000+000" date="02-19-2014" component="LTIApply" context="" type="1" thread="" file="LTIApply">
    <![LOG[Write all logging text to \\192.168.36.208\Logs$]LOG]!><time="16:53:56.000+000" date="02-19-2014" component="LTIApply" context="" type="1" thread="" file="LTIApply">
    <![LOG[Validating connection to \\192.168.36.208\Logs$]LOG]!><time="16:53:56.000+000" date="02-19-2014" component="LTIApply" context="" type="1" thread="" file="LTIApply">
    <![LOG[Already connected to server 192.168.36.208 as that is where this script is running from.]LOG]!><time="16:53:56.000+000" date="02-19-2014" component="LTIApply" context="" type="1" thread="" file="LTIApply">
    <![LOG[Will boot into Windows PE architecture x64 to match OS being deployed.]LOG]!><time="16:53:56.000+000" date="02-19-2014" component="LTIApply" context="" type="1" thread="" file="LTIApply">
    <![LOG[OSDTargetDriveCache was determined earlier : V:]LOG]!><time="16:53:56.000+000" date="02-19-2014" component="LTIApply" context="" type="1" thread="" file="LTIApply">
    <![LOG[Property OSDTargetDriveCache is now = V:]LOG]!><time="16:53:56.000+000" date="02-19-2014" component="LTIApply" context="" type="1" thread="" file="LTIApply">
    <![LOG[Property OSDisk is now = V:]LOG]!><time="16:53:56.000+000" date="02-19-2014" component="LTIApply" context="" type="1" thread="" file="LTIApply">
    <![LOG[ Open Control File: OperatingSystems]LOG]!><time="16:53:56.000+000" date="02-19-2014" component="LTIApply" context="" type="1" thread="" file="LTIApply">
    <![LOG[------  Applying Windows image using ImageX.exe ------]LOG]!><time="16:53:56.000+000" date="02-19-2014" component="LTIApply" context="" type="1" thread="" file="LTIApply">
    <![LOG[LTI applying image \\192.168.36.208\MDT$\Operating Systems\Master 3 avec Sysprep\CAPT.wim using ImageX]LOG]!><time="16:53:56.000+000" date="02-19-2014" component="LTIApply" context="" type="1" thread="" file="LTIApply">
    <![LOG[Event 41023 sent: LTI applying image \\192.168.36.208\MDT$\Operating Systems\Master 3 avec Sysprep\CAPT.wim using ImageX]LOG]!><time="16:53:56.000+000" date="02-19-2014" component="LTIApply" context="" type="1" thread="" file="LTIApply">
    <![LOG[Property SourcePath is now = \\192.168.36.208\MDT$\Operating Systems\Master 3 avec Sysprep]LOG]!><time="16:53:56.000+000" date="02-19-2014" component="LTIApply" context="" type="1" thread="" file="LTIApply">
    <![LOG[Multicast transfer to directory: C:\MININT\Operating Systems\Master 3 avec Sysprep]LOG]!><time="16:53:56.000+000" date="02-19-2014" component="LTIApply" context="" type="1" thread="" file="LTIApply">
    <![LOG[<Message containing password has been suppressed>]LOG]!><time="16:53:56.000+000" date="02-19-2014" component="LTIApply" context="" type="1" thread="" file="LTIApply">
    <![LOG[Command has been started (process ID 1348)]LOG]!><time="16:53:56.000+000" date="02-19-2014" component="LTIApply" context="" type="1" thread="" file="LTIApply">
    <![LOG[ZTI Heartbeat: command has been running for 0 minutes (process ID 1348)]LOG]!><time="16:53:57.000+000" date="02-19-2014" component="LTIApply" context="" type="1" thread="" file="LTIApply">
    <![LOG[Event 41003 sent: ZTI Heartbeat: command has been running for 0 minutes (process ID 1348)]LOG]!><time="16:53:57.000+000" date="02-19-2014" component="LTIApply" context="" type="1" thread="" file="LTIApply">
    <![LOG[  Console > 
    ]LOG]!><time="16:53:57.000+000" date="02-19-2014" component="LTIApply" context="" type="1" thread="" file="LTIApply">
    <![LOG[  Console > Transfer Started.
    ]LOG]!><time="16:53:57.000+000" date="02-19-2014" component="LTIApply" context="" type="1" thread="" file="LTIApply">
    <![LOG[ZTI Heartbeat: command has been running for 5 minutes (process ID 1348)]LOG]!><time="16:58:01.000+000" date="02-19-2014" component="LTIApply" context="" type="1" thread="" file="LTIApply">
    <![LOG[Event 41003 sent: ZTI Heartbeat: command has been running for 5 minutes (process ID 1348)]LOG]!><time="16:58:01.000+000" date="02-19-2014" component="LTIApply" context="" type="1" thread="" file="LTIApply">
    <![LOG[  Console > 
    ]LOG]!><time="17:00:43.000+000" date="02-19-2014" component="LTIApply" context="" type="1" thread="" file="LTIApply">
    <![LOG[  Console > Transfer Complete [0x0].]LOG]!><time="17:00:43.000+000" date="02-19-2014" component="LTIApply" context="" type="1" thread="" file="LTIApply">
    <![LOG[Return code from command = 0]LOG]!><time="17:00:43.000+000" date="02-19-2014" component="LTIApply" context="" type="1" thread="" file="LTIApply">
    <![LOG[Multicast transfer of "\\192.168.36.208\MDT$\Operating Systems\Master 3 avec Sysprep\CAPT.wim" to "C:\MININT\Operating Systems\Master 3 avec Sysprep\CAPT.wim" completed successfully.]LOG]!><time="17:00:43.000+000" date="02-19-2014" component="LTIApply"
    context="" type="1" thread="" file="LTIApply">
    <![LOG[Cleaning off old operating system]LOG]!><time="17:00:43.000+000" date="02-19-2014" component="LTIApply" context="" type="1" thread="" file="LTIApply">
    <![LOG[Skipping V:\Drivers]LOG]!><time="17:00:43.000+000" date="02-19-2014" component="LTIApply" context="" type="1" thread="" file="LTIApply">
    <![LOG[New ZTIDiskPartition : \\MININT-1H9O4H6\root\cimv2:Win32_LogicalDisk.DeviceID="V:"    \\MININT-1H9O4H6\root\cimv2:Win32_DiskPartition.DeviceID="Disk #0, Partition #0"]LOG]!><time="17:00:43.000+000" date="02-19-2014" component="LTIApply"
    context="" type="1" thread="" file="LTIApply">
    <![LOG[Enabling 8dot3 name support on volume V:]LOG]!><time="17:00:43.000+000" date="02-19-2014" component="LTIApply" context="" type="1" thread="" file="LTIApply">
    <![LOG[About to run command: "\\192.168.36.208\MDT$\Tools\X64\imagex.exe"  /apply "C:\MININT\Operating Systems\Master 3 avec Sysprep\CAPT.wim" 1 V:]LOG]!><time="17:00:43.000+000" date="02-19-2014" component="LTIApply" context="" type="1" thread=""
    file="LTIApply">
    <![LOG[Command has been started (process ID 536)]LOG]!><time="17:00:43.000+000" date="02-19-2014" component="LTIApply" context="" type="1" thread="" file="LTIApply">
    <![LOG[  Console > ImageX Tool for Windows]LOG]!><time="17:00:43.000+000" date="02-19-2014" component="LTIApply" context="" type="1" thread="" file="LTIApply">
    <![LOG[  Console > Copyright (C) Microsoft Corp. All rights reserved.]LOG]!><time="17:00:43.000+000" date="02-19-2014" component="LTIApply" context="" type="1" thread="" file="LTIApply">
    <![LOG[  Console > Version: 6.1.7600.16385]LOG]!><time="17:00:43.000+000" date="02-19-2014" component="LTIApply" context="" type="1" thread="" file="LTIApply">
    <![LOG[  Console > [   0% ] Applying progress ]LOG]!><time="17:00:43.000+000" date="02-19-2014" component="LTIApply" context="" type="1" thread="" file="LTIApply">
    <![LOG[  Console > [   0% ] Applying progress ]LOG]!><time="17:00:49.000+000" date="02-19-2014" component="LTIApply" context="" type="1" thread="" file="LTIApply">
    <![LOG[  Console > [   1% ] Applying progress ]LOG]!><time="17:00:49.000+000" date="02-19-2014" component="LTIApply" context="" type="1" thread="" file="LTIApply">
    <![LOG[  Console > [   2% ] Applying progress ]LOG]!><time="17:00:55.000+000" date="02-19-2014" component="LTIApply" context="" type="1" thread="" file="LTIApply">
    <![LOG[  Console > [   3% ] Applying progress ]LOG]!><time="17:00:58.000+000" date="02-19-2014" component="LTIApply" context="" type="1" thread="" file="LTIApply">
    <![LOG[  Console > [   4% ] Applying progress: 5:28 mins remaining ]LOG]!><time="17:01:03.000+000" date="02-19-2014" component="LTIApply" context="" type="1" thread="" file="LTIApply">
    <![LOG[  Console > [   5% ] Applying progress: 5:33 mins remaining ]LOG]!><time="17:01:07.000+000"
    <![LOG[  Console > [  99% ] Applying progress: 3 secs remaining ]LOG]!><time="17:06:43.000+000" date="02-19-2014" component="LTIApply" context="" type="1" thread="" file="LTIApply">
    <![LOG[  Console > [ 100% ] Applying progress ]LOG]!><time="17:06:50.000+000" date="02-19-2014" component="LTIApply" context="" type="1" thread="" file="LTIApply">
    <![LOG[  Console > Successfully applied image.]LOG]!><time="17:06:51.000+000" date="02-19-2014" component="LTIApply" context="" type="1" thread="" file="LTIApply">
    <![LOG[  Console > Total elapsed time: 6 min 7 sec]LOG]!><time="17:06:51.000+000" date="02-19-2014" component="LTIApply" context="" type="1" thread="" file="LTIApply">
    <![LOG[Return code from command = 0]LOG]!><time="17:06:51.000+000" date="02-19-2014" component="LTIApply" context="" type="1" thread="" file="LTIApply">
    <![LOG[Property LTIDirtyOS is now = TRUE]LOG]!><time="17:06:51.000+000" date="02-19-2014" component="LTIApply" context="" type="1" thread="" file="LTIApply">
    <![LOG[The image C:\MININT\Operating Systems\Master 3 avec Sysprep\CAPT.wim was applied successfully.]LOG]!><time="17:06:51.000+000" date="02-19-2014" component="LTIApply" context="" type="1" thread="" file="LTIApply">
    <![LOG[Event 5625 sent: The image C:\MININT\Operating Systems\Master 3 avec Sysprep\CAPT.wim was applied successfully.]LOG]!><time="17:06:51.000+000" date="02-19-2014" component="LTIApply" context="" type="1" thread="" file="LTIApply">
    <![LOG[About to run command: "\\192.168.36.208\MDT$\Tools\X64\bootsect.exe"  /nt60 V:]LOG]!><time="17:06:52.000+000" date="02-19-2014" component="LTIApply" context="" type="1" thread="" file="LTIApply">
    <![LOG[Command has been started (process ID 1252)]LOG]!><time="17:06:52.000+000" date="02-19-2014" component="LTIApply" context="" type="1" thread="" file="LTIApply">
    <![LOG[  Console > Target volumes will be updated with BOOTMGR compatible bootcode.
    ]LOG]!><time="17:06:54.000+000" date="02-19-2014" component="LTIApply" context="" type="1" thread="" file="LTIApply">
    <![LOG[  Console > 
    ]LOG]!><time="17:06:54.000+000" date="02-19-2014" component="LTIApply" context="" type="1" thread="" file="LTIApply">
    <![LOG[  Console > V: (\\?\Volume{2ab15dec-99c9-19e3-baf6-94de80bab573})
    ]LOG]!><time="17:06:54.000+000" date="02-19-2014" component="LTIApply" context="" type="1" thread="" file="LTIApply">
    <![LOG[  Console > 
    ]LOG]!><time="17:06:54.000+000" date="02-19-2014" component="LTIApply" context="" type="1" thread="" file="LTIApply">
    <![LOG[  Console >     Successfully updated NTFS filesystem bootcode.
    ]LOG]!><time="17:06:54.000+000" date="02-19-2014" component="LTIApply" context="" type="1" thread="" file="LTIApply">
    <![LOG[  Console > 
    ]LOG]!><time="17:06:54.000+000" date="02-19-2014" component="LTIApply" context="" type="1" thread="" file="LTIApply">
    <![LOG[  Console > Bootcode was successfully updated on all targeted volumes.
    ]LOG]!><time="17:06:54.000+000" date="02-19-2014" component="LTIApply" context="" type="1" thread="" file="LTIApply">
    <![LOG[Return code from command = 0]LOG]!><time="17:06:54.000+000" date="02-19-2014" component="LTIApply" context="" type="1" thread="" file="LTIApply">
    <![LOG[Find the boot drive (if any) [True] [6.1.7601.18229] [False]]LOG]!><time="17:06:54.000+000" date="02-19-2014" component="LTIApply" context="" type="1" thread="" file="LTIApply">
    <![LOG[New ZTIDiskPartition : \\MININT-1H9O4H6\root\cimv2:Win32_DiskPartition.DeviceID="Disk #0, Partition #0"    \\MININT-1H9O4H6\root\cimv2:Win32_LogicalDisk.DeviceID="V:"]LOG]!><time="17:06:54.000+000" date="02-19-2014" component="LTIApply"
    context="" type="1" thread="" file="LTIApply">
    <![LOG[New ZTIDisk : \\MININT-1H9O4H6\root\cimv2:Win32_DiskDrive.DeviceID="\\\\.\\PHYSICALDRIVE0"]LOG]!><time="17:06:54.000+000" date="02-19-2014" component="LTIApply" context="" type="1" thread="" file="LTIApply">
    <![LOG[Found bootable drive (No Boot File Test) [ V: ]: \\MININT-1H9O4H6\root\cimv2:Win32_LogicalDisk.DeviceID="V:"]LOG]!><time="17:06:54.000+000" date="02-19-2014" component="LTIApply" context="" type="1" thread="" file="LTIApply">
    <![LOG[Ready to Prepare boot partition: V:]LOG]!><time="17:06:54.000+000" date="02-19-2014" component="LTIApply" context="" type="1" thread="" file="LTIApply">
    <![LOG[About to run command: cscript.exe //nologo "\\192.168.36.208\MDT$\Scripts\ztiRunCommandHidden.wsf" ""\\192.168.36.208\MDT$\Tools\X64\BCDBoot.exe" V:\windows /l fr-fr  /s V:"]LOG]!><time="17:06:54.000+000" date="02-19-2014" component="LTIApply"
    context="" type="1" thread="" file="LTIApply">
    <![LOG[Microsoft Deployment Toolkit version: 6.1.2373.0]LOG]!><time="17:06:54.000+000" date="02-19-2014" component="ztiRunCommandHidden" context="" type="1" thread="" file="ztiRunCommandHidden">
    <![LOG[The task sequencer log is located at X:\WINDOWS\TEMP\SMSTSLog\SMSTS.LOG.  For task sequence failures, please consult this log.]LOG]!><time="17:06:54.000+000" date="02-19-2014" component="ztiRunCommandHidden" context="" type="1" thread=""
    file="ztiRunCommandHidden">
    <![LOG[Write all logging text to \\192.168.36.208\Logs$]LOG]!><time="17:06:54.000+000" date="02-19-2014" component="ztiRunCommandHidden" context="" type="1" thread="" file="ztiRunCommandHidden">
    <![LOG[Validating connection to \\192.168.36.208\Logs$]LOG]!><time="17:06:54.000+000" date="02-19-2014" component="ztiRunCommandHidden" context="" type="1" thread="" file="ztiRunCommandHidden">
    <![LOG[Already connected to server 192.168.36.208 as that is where this script is running from.]LOG]!><time="17:06:54.000+000" date="02-19-2014" component="ztiRunCommandHidden" context="" type="1" thread="" file="ztiRunCommandHidden">
    <![LOG[About to run command: \\192.168.36.208\MDT$\Tools\X64\BCDBoot.exe V:\windows /l fr-fr  /s V:]LOG]!><time="17:06:54.000+000" date="02-19-2014" component="ztiRunCommandHidden" context="" type="1" thread="" file="ztiRunCommandHidden">
    <![LOG[Command has been started (process ID 1984)]LOG]!><time="17:06:54.000+000" date="02-19-2014" component="ztiRunCommandHidden" context="" type="1" thread="" file="ztiRunCommandHidden">
    <![LOG[  Console > Boot files successfully created.]LOG]!><time="17:06:55.000+000" date="02-19-2014" component="ztiRunCommandHidden" context="" type="1" thread="" file="ztiRunCommandHidden">
    <![LOG[Return code from command = 0]LOG]!><time="17:06:55.000+000" date="02-19-2014" component="ztiRunCommandHidden" context="" type="1" thread="" file="ztiRunCommandHidden">
    <![LOG[Command has returned: 0]LOG]!><time="17:06:55.000+000" date="02-19-2014" component="LTIApply" context="" type="1" thread="" file="LTIApply">
    <![LOG[Run Command: X:\WINDOWS\SYSTEM32\bcdedit.exe /Store "V:\boot\bcd" /timeout 0]LOG]!><time="17:06:55.000+000" date="02-19-2014" component="LTIApply" context="" type="1" thread="" file="LTIApply">
    <![LOG[BCD> The operation completed successfully.]LOG]!><time="17:06:55.000+000" date="02-19-2014" component="LTIApply" context="" type="1" thread="" file="LTIApply">
    <![LOG[BCDEdit returned ErrorLevel = 0]LOG]!><time="17:06:55.000+000" date="02-19-2014" component="LTIApply" context="" type="1" thread="" file="LTIApply">
    <![LOG[Created scratch folder.]LOG]!><time="17:06:55.000+000" date="02-19-2014" component="LTIApply" context="" type="1" thread="" file="LTIApply">
    <![LOG[Copy File: C:\MININT\unattend.xml to V:\Windows\Panther\Unattend.xml]LOG]!><time="17:06:55.000+000" date="02-19-2014" component="LTIApply" context="" type="1" thread="" file="LTIApply">
    <![LOG[Copied unattend.xml to V:\Windows\Panther for image apply.]LOG]!><time="17:06:55.000+000" date="02-19-2014" component="LTIApply" context="" type="1" thread="" file="LTIApply">
    <![LOG[About to run command: dism.exe /Image:V:\ /Apply-Unattend:V:\Windows\Panther\Unattend.xml /ScratchDir:C:\MININT\Scratch]LOG]!><time="17:06:55.000+000" date="02-19-2014" component="LTIApply" context="" type="1" thread="" file="LTIApply">
    <![LOG[Command has been started (process ID 1516)]LOG]!><time="17:06:55.000+000" date="02-19-2014" component="LTIApply" context="" type="1" thread="" file="LTIApply">
    <![LOG[  Console > Deployment Image Servicing and Management tool]LOG]!><time="17:06:55.000+000" date="02-19-2014" component="LTIApply" context="" type="1" thread="" file="LTIApply">
    <![LOG[  Console > Version: 6.1.7600.16385]LOG]!><time="17:06:55.000+000" date="02-19-2014" component="LTIApply" context="" type="1" thread="" file="LTIApply">
    <![LOG[  Console > Image Version: 6.1.7600.16385]LOG]!><time="17:06:56.000+000" date="02-19-2014" component="LTIApply" context="" type="1" thread="" file="LTIApply">
    <![LOG[  Console > The operation completed successfully.]LOG]!><time="17:06:57.000+000" date="02-19-2014" component="LTIApply" context="" type="1" thread="" file="LTIApply">
    <![LOG[Return code from command = 0]LOG]!><time="17:06:57.000+000" date="02-19-2014" component="LTIApply" context="" type="1" thread="" file="LTIApply">
    <![LOG[LTIApply processing completed successfully.]LOG]!><time="17:06:57.000+000" date="02-19-2014" component="LTIApply" context="" type="1" thread="" file="LTIApply">
    <![LOG[Event 41001 sent: LTIApply processing completed successfully.]LOG]!><time="17:06:57.000+000" date="02-19-2014" component="LTIApply" context="" type="1" thread="" file="LTIApply">
    <![LOG[Command completed, return code = -2147467259]LOG]!><time="17:10:54.000+000" date="02-19-2014" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[Litetouch deployment failed, Return Code = -2147467259  0x80004005]LOG]!><time="17:10:54.000+000" date="02-19-2014" component="LiteTouch" context="" type="3" thread="" file="LiteTouch">
    <![LOG[Event 41014 sent: Litetouch deployment failed, Return Code = -2147467259  0x80004005]LOG]!><time="17:10:54.000+000" date="02-19-2014" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[For more information, consult the task sequencer log ...\SMSTS.LOG.]LOG]!><time="17:10:54.000+000" date="02-19-2014" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[Property RetVal is now = -2147467259]LOG]!><time="17:10:54.000+000" date="02-19-2014" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[Validating connection to \\192.168.36.208\Logs$]LOG]!><time="17:10:54.000+000" date="02-19-2014" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[Already connected to server 192.168.36.208]LOG]!><time="17:10:54.000+000" date="02-19-2014" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[OSDTargetDriveCache was determined earlier : V:]LOG]!><time="17:10:54.000+000" date="02-19-2014" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[Property OSDTargetDriveCache is now = V:]LOG]!><time="17:10:54.000+000" date="02-19-2014" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[Property OSDisk is now = V:]LOG]!><time="17:10:54.000+000" date="02-19-2014" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[Copying C:\MININT\SMSOSD\OSDLOGS\LiteTouch.log to \\192.168.36.208\Logs$\MININT-1H9O4H6\LiteTouch.log]LOG]!><time="17:10:54.000+000" date="02-19-2014" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[Copying C:\MININT\SMSOSD\OSDLOGS\LTIApply.log to \\192.168.36.208\Logs$\MININT-1H9O4H6\LTIApply.log]LOG]!><time="17:10:54.000+000" date="02-19-2014" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[Copying C:\MININT\SMSOSD\OSDLOGS\LTICopyScripts.log to \\192.168.36.208\Logs$\MININT-1H9O4H6\LTICopyScripts.log]LOG]!><time="17:10:54.000+000" date="02-19-2014" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[Copying C:\MININT\SMSOSD\OSDLOGS\PnpEnum.xml to \\192.168.36.208\Logs$\MININT-1H9O4H6\PnpEnum.xml]LOG]!><time="17:10:54.000+000" date="02-19-2014" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[Copying C:\MININT\SMSOSD\OSDLOGS\Wizard.log to \\192.168.36.208\Logs$\MININT-1H9O4H6\Wizard.log]LOG]!><time="17:10:54.000+000" date="02-19-2014" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[Copying C:\MININT\SMSOSD\OSDLOGS\ZTIBDE.log to \\192.168.36.208\Logs$\MININT-1H9O4H6\ZTIBDE.log]LOG]!><time="17:10:54.000+000" date="02-19-2014" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[Copying C:\MININT\SMSOSD\OSDLOGS\ZTIConfigure.log to \\192.168.36.208\Logs$\MININT-1H9O4H6\ZTIConfigure.log]LOG]!><time="17:10:55.000+000" date="02-19-2014" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[Copying C:\MININT\SMSOSD\OSDLOGS\ZTIDiskpart.log to \\192.168.36.208\Logs$\MININT-1H9O4H6\ZTIDiskpart.log]LOG]!><time="17:10:55.000+000" date="02-19-2014" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[Copying C:\MININT\SMSOSD\OSDLOGS\ZTIDrivers.log to \\192.168.36.208\Logs$\MININT-1H9O4H6\ZTIDrivers.log]LOG]!><time="17:10:55.000+000" date="02-19-2014" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[Copying C:\MININT\SMSOSD\OSDLOGS\ZTIGather.log to \\192.168.36.208\Logs$\MININT-1H9O4H6\ZTIGather.log]LOG]!><time="17:10:55.000+000" date="02-19-2014" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[Copying C:\MININT\SMSOSD\OSDLOGS\ZTINextPhase.log to \\192.168.36.208\Logs$\MININT-1H9O4H6\ZTINextPhase.log]LOG]!><time="17:10:55.000+000" date="02-19-2014" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[Copying C:\MININT\SMSOSD\OSDLOGS\ZTIPatches.log to \\192.168.36.208\Logs$\MININT-1H9O4H6\ZTIPatches.log]LOG]!><time="17:10:55.000+000" date="02-19-2014" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[Copying C:\MININT\SMSOSD\OSDLOGS\ztiRunCommandHidden.log to \\192.168.36.208\Logs$\MININT-1H9O4H6\ztiRunCommandHidden.log]LOG]!><time="17:10:55.000+000" date="02-19-2014" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[Copying C:\MININT\SMSOSD\OSDLOGS\ZTIValidate.log to \\192.168.36.208\Logs$\MININT-1H9O4H6\ZTIValidate.log]LOG]!><time="17:10:55.000+000" date="02-19-2014" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[Copying X:\WINDOWS\TEMP\SMSTSLog\SMSTS.LOG to \\192.168.36.208\Logs$\MININT-1H9O4H6\SMSTS.LOG]LOG]!><time="17:10:55.000+000" date="02-19-2014" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[Copying X:\WINDOWS\Debug\Netsetup.log to \\192.168.36.208\Logs$\MININT-1H9O4H6\]LOG]!><time="17:10:55.000+000" date="02-19-2014" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[Copying X:\WINDOWS\System32\wpeinit.log to \\192.168.36.208\Logs$\MININT-1H9O4H6\]LOG]!><time="17:10:55.000+000" date="02-19-2014" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[Copying log C:\MININT\SMSOSD\OSDLOGS\BDD.log contents to \\192.168.36.208\Logs$\MININT-1H9O4H6\BDD.LOG]LOG]!><time="17:10:55.000+000" date="02-19-2014" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">

  • MDT 2012 Litetocuh Deployment Failed, Return Code = -2147467259 0x0004005

    Here is what I have tried. I have tried recreating the DeploymentShare. Moved my Deployment Test Share to the standard 2008 Server running MDT 2012. I have setup a Win7 x64 box as the Deployment Manager. I am still getting the following error:
    Litetouch deployment failed, Return Code = -2147467259  0x80004005
    Failed to run the action: Copy OEM files. 
    Incorrect function, (Error: 00000001; Source: Windows)
    The execution of the group (Install has failed and the execution has been aborted. An action failed. 
    Operation abourted (Error: 80004004; Source Windows)
    Failed to run the last action: Copy OEM files, Execution of task sequence failed. 
    Incorrect funtion. (Error: 00000001; Source: Windows)
    Task Sequence Engine failed! Code: enExecutionFail
    Task sequence execution failed with error code 80004005
    Error Task Sequence Manager failed to execute task sequence. Code 0x80004005
    Recreated the Image, Task Sequences, CS.ini and Boot.ini) Incorporated all OOB Drivers, Packages. Using
    a USB 16Gb flash drive with LiteTouchx86. 
    List last time we tried to create a separate deployment share. Copy all the preexisting data from a working known good deployment share with images, task
    sequence, cs.ini and all image files. Still getting the same issue. 
    Finally checked some of the Google, technet and forums for any assistance but non seem to do the trick. 
    I'm new to the process but have been working with a fellow tech who has been working with MDT for six months and he can not find the issue either. 
    Thanks for all your help up front. 

    Can you post your log files?
    IT Support " Scripting Noob "

  • Deployment Failed

    HI OTN
    I encounter this error message when i try to run my application:
    *** Using port 7101 ***
    C:\Users\shirleen\AppData\Roaming\JDeveloper\system11.1.1.1.33.54.07\DefaultDomain\bin\startWebLogic.cmd
    [waiting for the server to complete its initialization...]
    JAVA Memory arguments: -Xms256m -Xmx512m -XX:CompileThreshold=8000 -XX:PermSize=128m -XX:MaxPermSize=512m
    WLS Start Mode=Development
    CLASSPATH=C:\\patch_wls1031\profiles\default\sys_manifest_classpath\weblogic_patch.jar;C:\\patch_jdev1111\profiles\default\sys_manifest_classpath\weblogic_patch.jar;C:\JDK160~1\lib\tools.jar;C:\\utils\config\10.3.1.0\config-launch.jar;C:\WLSERV~1.3\server\lib\weblogic_sp.jar;C:\WLSERV~1.3\server\lib\weblogic.jar;C:\modules\features\weblogic.server.modules_10.3.1.0.jar;C:\WLSERV~1.3\server\lib\webservices.jar;C:\modules\ORGAPA~1.0/lib/ant-all.jar;C:\modules\NETSFA~1.0_1/lib/ant-contrib.jar;C:\JDEVEL~1\modules\oracle.jrf_11.1.1\jrf.jar;C:\WLSERV~1.3\common\eval\pointbase\lib\pbclient57.jar;C:\WLSERV~1.3\server\lib\xqrl.jar
    PATH=C:\\patch_wls1031\profiles\default\native;C:\\patch_jdev1111\profiles\default\native;C:\WLSERV~1.3\server\native\win\32;C:\WLSERV~1.3\server\bin;C:\modules\ORGAPA~1.0\bin;C:\JDK160~1\jre\bin;C:\JDK160~1\bin;D:\app\shirleen\product\11.1.0\db_2\bin;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Program Files\Microsoft SQL Server\90\Tools\binn\;C:\Program Files\ZipGenius 6\;C:\WLSERV~1.3\server\native\win\32\oci920_8
    * To start WebLogic Server, use a username and *
    * password assigned to an admin-level user. For *
    * server administration, use the WebLogic Server *
    * console at http:\\hostname:port\console *
    starting weblogic with Java version:
    Starting WLS with line:
    C:\JDK160~1\bin\java -client -Xms256m -Xmx512m -XX:CompileThreshold=8000 -XX:PermSize=128m -XX:MaxPermSize=512m -Dweblogic.Name=DefaultServer -Djava.security.policy=C:\WLSERV~1.3\server\lib\weblogic.policy -Xverify:none -da -Dplatform.home=C:\WLSERV~1.3 -Dwls.home=C:\WLSERV~1.3\server -Dweblogic.home=C:\WLSERV~1.3\server -Djps.app.credential.overwrite.allowed=true -Ddomain.home=C:\Users\shirleen\AppData\Roaming\JDEVEL~1\SYSTEM~1.07\DEFAUL~1 -Doracle.home=C:\JDEVEL~1 -Djrf.version=11.1.1 -Dorg.apache.commons.logging.Log=org.apache.commons.logging.impl.Jdk14Logger -Djrockit.optfile=C:\JDEVEL~1\modules\oracle.jrf_11.1.1\jrocket_optfile.txt -Doracle.security.jps.config=C:\Users\shirleen\AppData\Roaming\JDEVEL~1\SYSTEM~1.07\DEFAUL~1\config\fmwconfig\jps-config.xml -Djava.protocol.handler.pkgs=oracle.mds.net.protocol -Dweblogic.alternateTypesDirectory=C:\JDEVEL~1\modules\oracle.ossoiap_11.1.1,C:\JDEVEL~1\modules\oracle.oamprovider_11.1.1 -Dsso.filter.enable=true -Dweblogic.management.discover=true -Dwlw.iterativeDev= -Dwlw.testConsole= -Dwlw.logErrorsToConsole= -Dweblogic.ext.dirs=C:\\patch_wls1031\profiles\default\sysext_manifest_classpath;C:\\patch_jdev1111\profiles\default\sysext_manifest_classpath weblogic.Server
    java version "1.6.0_11"
    Java(TM) SE Runtime Environment (build 1.6.0_11-b03)
    Java HotSpot(TM) Client VM (build 11.0-b16, mixed mode)
    <Aug 12, 2009 3:36:45 PM SGT> <Notice> <WebLogicServer> <BEA-000395> <Following extensions directory contents added to the end of the classpath:
    C:\wlserver_10.3\L10N\beehive_ja.jar;C:\wlserver_10.3\L10N\beehive_ko.jar;C:\wlserver_10.3\L10N\beehive_zh_CN.jar;C:\wlserver_10.3\L10N\beehive_zh_TW.jar;C:\wlserver_10.3\L10N\p13n_wls_ja.jar;C:\wlserver_10.3\L10N\p13n_wls_ko.jar;C:\wlserver_10.3\L10N\p13n_wls_zh_CN.jar;C:\wlserver_10.3\L10N\p13n_wls_zh_TW.jar;C:\wlserver_10.3\L10N\testclient_ja.jar;C:\wlserver_10.3\L10N\testclient_ko.jar;C:\wlserver_10.3\L10N\testclient_zh_CN.jar;C:\wlserver_10.3\L10N\testclient_zh_TW.jar;C:\wlserver_10.3\L10N\tuxedocontrol_ja.jar;C:\wlserver_10.3\L10N\tuxedocontrol_ko.jar;C:\wlserver_10.3\L10N\tuxedocontrol_zh_CN.jar;C:\wlserver_10.3\L10N\tuxedocontrol_zh_TW.jar;C:\wlserver_10.3\L10N\workshop_ja.jar;C:\wlserver_10.3\L10N\workshop_ko.jar;C:\wlserver_10.3\L10N\workshop_zh_CN.jar;C:\wlserver_10.3\L10N\workshop_zh_TW.jar>
    <Aug 12, 2009 3:36:46 PM SGT> <Info> <WebLogicServer> <BEA-000377> <Starting WebLogic Server with Java HotSpot(TM) Client VM Version 11.0-b16 from Sun Microsystems Inc.>
    <Aug 12, 2009 3:36:47 PM SGT> <Info> <Management> <BEA-141107> <Version: WebLogic Server 10.3.1.0 Wed Jun 10 22:24:41 MDT 2009 1227385 >
    <Aug 12, 2009 3:36:51 PM SGT> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STARTING>
    <Aug 12, 2009 3:36:51 PM SGT> <Info> <WorkManager> <BEA-002900> <Initializing self-tuning thread pool>
    <Aug 12, 2009 3:36:52 PM SGT> <Notice> <LoggingService> <BEA-320400> <The log file C:\Users\shirleen\AppData\Roaming\JDeveloper\system11.1.1.1.33.54.07\DefaultDomain\servers\DefaultServer\logs\DefaultServer.log will be rotated. Reopen the log file if tailing has stopped. This can happen on some platforms like Windows.>
    <Aug 12, 2009 3:36:52 PM SGT> <Notice> <LoggingService> <BEA-320401> <The log file has been rotated to C:\Users\shirleen\AppData\Roaming\JDeveloper\system11.1.1.1.33.54.07\DefaultDomain\servers\DefaultServer\logs\DefaultServer.log00010. Log messages will continue to be logged in C:\Users\shirleen\AppData\Roaming\JDeveloper\system11.1.1.1.33.54.07\DefaultDomain\servers\DefaultServer\logs\DefaultServer.log.>
    <Aug 12, 2009 3:36:52 PM SGT> <Notice> <Log Management> <BEA-170019> <The server log file C:\Users\shirleen\AppData\Roaming\JDeveloper\system11.1.1.1.33.54.07\DefaultDomain\servers\DefaultServer\logs\DefaultServer.log is opened. All server side log events will be written to this file.>
    <Aug 12, 2009 3:37:08 PM SGT> <Notice> <Security> <BEA-090082> <Security initializing using security realm myrealm.>
    <Aug 12, 2009 3:37:17 PM SGT> <Notice> <LoggingService> <BEA-320400> <The log file C:\Users\shirleen\AppData\Roaming\JDeveloper\system11.1.1.1.33.54.07\DefaultDomain\servers\DefaultServer\logs\access.log will be rotated. Reopen the log file if tailing has stopped. This can happen on some platforms like Windows.>
    <Aug 12, 2009 3:37:17 PM SGT> <Notice> <LoggingService> <BEA-320401> <The log file has been rotated to C:\Users\shirleen\AppData\Roaming\JDeveloper\system11.1.1.1.33.54.07\DefaultDomain\servers\DefaultServer\logs\access.log00010. Log messages will continue to be logged in C:\Users\shirleen\AppData\Roaming\JDeveloper\system11.1.1.1.33.54.07\DefaultDomain\servers\DefaultServer\logs\access.log.>
    <Aug 12, 2009 3:37:39 PM SGT> <Warning> <Deployer> <BEA-149617> <Non-critical internal application uddi was not deployed. Error: [Deployer:149158]No application files exist at 'C:\WLSERV~1.3\server\lib\uddi.war'.>
    <Aug 12, 2009 3:37:39 PM SGT> <Warning> <Deployer> <BEA-149617> <Non-critical internal application uddiexplorer was not deployed. Error: [Deployer:149158]No application files exist at 'C:\WLSERV~1.3\server\lib\uddiexplorer.war'.>
    <Aug 12, 2009 3:37:43 PM SGT> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STANDBY>
    <Aug 12, 2009 3:37:43 PM SGT> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STARTING>
    Aug 12, 2009 3:37:59 PM oracle.mds.internal.lcm.logging.MDSLCMLogger info
    INFO: Application ID : wsm-pm
    Aug 12, 2009 3:37:59 PM oracle.mds.internal.lcm.logging.MDSLCMLogger info
    INFO: "Metadata Services: Metadata archive (MAR) not found."
    <Aug 12, 2009 3:38:03 PM SGT> <Notice> <LoggingService> <BEA-320400> <The log file C:\Users\shirleen\AppData\Roaming\JDeveloper\system11.1.1.1.33.54.07\DefaultDomain\servers\DefaultServer\logs\DefaultDomain.log will be rotated. Reopen the log file if tailing has stopped. This can happen on some platforms like Windows.>
    <Aug 12, 2009 3:38:03 PM SGT> <Notice> <LoggingService> <BEA-320401> <The log file has been rotated to C:\Users\shirleen\AppData\Roaming\JDeveloper\system11.1.1.1.33.54.07\DefaultDomain\servers\DefaultServer\logs\DefaultDomain.log00010. Log messages will continue to be logged in C:\Users\shirleen\AppData\Roaming\JDeveloper\system11.1.1.1.33.54.07\DefaultDomain\servers\DefaultServer\logs\DefaultDomain.log.>
    <Aug 12, 2009 3:38:03 PM SGT> <Notice> <Log Management> <BEA-170027> <The Server has established connection with the Domain level Diagnostic Service successfully.>
    Aug 12, 2009 3:38:04 PM oracle.wsm.audit.Auditor <init>
    INFO: Created J2EE application auditor for componentType=oracle.security.jps.internal.audit.AuditServiceImpl$Auditor@e6ace7
    Aug 12, 2009 3:38:04 PM oracle.adf.share.config.ADFConfigFactory getInstance
    INFO: ADF Config instance implementation in use is : oracle.adf.share.config.MDSConfigFactory
    Aug 12, 2009 3:38:09 PM oracle.adf.share.config.ADFMDSConfig parseADFConfiguration
    INFO: Configuration file:/META-INF/adf-config.xmlcannot not be read by MDS. Reading directly from the classpath
    <Aug 12, 2009 3:38:09 PM SGT> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to ADMIN>
    <Aug 12, 2009 3:38:09 PM SGT> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to RESUMING>
    <Aug 12, 2009 3:38:09 PM SGT> <Warning> <Server> <BEA-002611> <Hostname "shirleen-PC", maps to multiple IP addresses: 172.26.147.124, 0:0:0:0:0:0:0:1>
    <Aug 12, 2009 3:38:09 PM SGT> <Notice> <Server> <BEA-002613> <Channel "Default[2]" is now listening on 127.0.0.1:7101 for protocols iiop, t3, ldap, snmp, http.>
    <Aug 12, 2009 3:38:09 PM SGT> <Notice> <Server> <BEA-002613> <Channel "Default" is now listening on 172.26.147.124:7101 for protocols iiop, t3, ldap, snmp, http.>
    <Aug 12, 2009 3:38:09 PM SGT> <Notice> <Server> <BEA-002613> <Channel "Default[1]" is now listening on 0:0:0:0:0:0:0:1:7101 for protocols iiop, t3, ldap, snmp, http.>
    <Aug 12, 2009 3:38:09 PM SGT> <Notice> <WebLogicServer> <BEA-000331> <Started WebLogic Admin Server "DefaultServer" for domain "DefaultDomain" running in Development Mode>
    <Aug 12, 2009 3:38:10 PM SGT> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to RUNNING>
    <Aug 12, 2009 3:38:10 PM SGT> <Notice> <WebLogicServer> <BEA-000360> <Server started in RUNNING mode>
    DefaultServer startup time: 99262 ms.
    DefaultServer started.
    [Running application BrowseEditApp on Server Instance DefaultServer...]
    <Aug 12, 2009 3:38:26 PM SGT> <Error> <Deployer> <BEA-149265> <Failure occurred in the execution of deployment request with ID '1250062706034' for task '0'. Error is: 'weblogic.application.ModuleException: Descriptor META-INF/fod-jdbc.xml not found.'
    weblogic.application.ModuleException: Descriptor META-INF/fod-jdbc.xml not found.
         at weblogic.jdbc.module.JDBCModule.init(JDBCModule.java:173)
         at weblogic.application.internal.flow.ModuleListenerInvoker.init(ModuleListenerInvoker.java:77)
         at weblogic.application.internal.flow.InitModulesFlow.initModule(InitModulesFlow.java:285)
         at weblogic.application.internal.flow.InitModulesFlow.initModules(InitModulesFlow.java:298)
         at weblogic.application.internal.flow.InitModulesFlow.prepare(InitModulesFlow.java:330)
         Truncated. see log file for complete stacktrace
    >
    <Aug 12, 2009 3:38:26 PM SGT> <Warning> <Deployer> <BEA-149004> <Failures were detected while initiating deploy task for application 'BrowseEditApp'.>
    <Aug 12, 2009 3:38:26 PM SGT> <Warning> <Deployer> <BEA-149078> <Stack trace for message 149004
    weblogic.application.ModuleException: Descriptor META-INF/fod-jdbc.xml not found.
         at weblogic.jdbc.module.JDBCModule.init(JDBCModule.java:173)
         at weblogic.application.internal.flow.ModuleListenerInvoker.init(ModuleListenerInvoker.java:77)
         at weblogic.application.internal.flow.InitModulesFlow.initModule(InitModulesFlow.java:285)
         at weblogic.application.internal.flow.InitModulesFlow.initModules(InitModulesFlow.java:298)
         at weblogic.application.internal.flow.InitModulesFlow.prepare(InitModulesFlow.java:330)
         Truncated. see log file for complete stacktrace
    >
    [03:38:27 PM] Weblogic Server Exception: weblogic.application.ModuleException: Descriptor META-INF/fod-jdbc.xml not found.
    [03:38:27 PM] See server logs or server console for more details.
    oracle.jdeveloper.deploy.DeployException: oracle.jdeveloper.deploy.DeployException: oracle.jdeveloper.deploy.DeployException: Deployment Failed[03:38:27 PM] #### Deployment incomplete. ####
    oracle.jdeveloper.deploy.DeployException: oracle.jdeveloper.deploy.DeployException: oracle.jdeveloper.deploy.DeployException: Deployment Failed
         at oracle.jdevimpl.deploy.common.Jsr88RemoteDeployer.doDeploymentAction(Jsr88RemoteDeployer.java:341)
         at oracle.jdevimpl.deploy.common.Jsr88RemoteDeployer.deployImpl(Jsr88RemoteDeployer.java:235)
         at oracle.jdeveloper.deploy.common.AbstractDeployer.deploy(AbstractDeployer.java:94)
         at oracle.jdevimpl.deploy.fwk.WrappedDeployer.deployImpl(WrappedDeployer.java:39)
         at oracle.jdeveloper.deploy.common.AbstractDeployer.deploy(AbstractDeployer.java:94)
         at oracle.jdeveloper.deploy.common.BatchDeployer.deployImpl(BatchDeployer.java:82)
         at oracle.jdeveloper.deploy.common.AbstractDeployer.deploy(AbstractDeployer.java:94)
         at oracle.jdevimpl.deploy.fwk.WrappedDeployer.deployImpl(WrappedDeployer.java:39)
         at oracle.jdeveloper.deploy.common.AbstractDeployer.deploy(AbstractDeployer.java:94)
         at oracle.jdevimpl.deploy.fwk.DeploymentManagerImpl.deploy(DeploymentManagerImpl.java:442)
         at oracle.jdeveloper.deploy.DeploymentManager.deploy(DeploymentManager.java:209)
         at oracle.jdevimpl.runner.adrs.AdrsStarter$6$1.run(AdrsStarter.java:1469)
    Caused by: oracle.jdeveloper.deploy.DeployException: oracle.jdeveloper.deploy.DeployException: Deployment Failed
         at oracle.jdevimpl.deploy.common.Jsr88DeploymentHelper.deployApplication(Jsr88DeploymentHelper.java:483)
         at oracle.jdevimpl.deploy.common.Jsr88RemoteDeployer.doDeploymentAction(Jsr88RemoteDeployer.java:332)
         ... 11 more
    Caused by: oracle.jdeveloper.deploy.DeployException: Deployment Failed
         at oracle.jdevimpl.deploy.common.Jsr88DeploymentHelper.deployApplication(Jsr88DeploymentHelper.java:465)
         ... 12 more
    #### Cannot run application BrowseEditApp due to error deploying to DefaultServer.
    [Application BrowseEditApp stopped and undeployed from Server Instance DefaultServer]
    [Server Instance DefaultServer is shutting down.  All applications currently running will be terminated and undeployed.]
    [sending request to shutdown server...]
    C:\Users\shirleen\AppData\Roaming\JDeveloper\system11.1.1.1.33.54.07\DefaultDomain\bin\stopWebLogic.cmd
    Please tell me what is missing and how do i go about solving these errors
    Thanks
    Timmie

    Im trying to deploy my application which i created by following this tutorial link: http://www.oracle.com/technology/obe/obe11jdev/11/dvt/gant_chart_pivot_table.htm to create my graph.
    Its an integrated weblogic server Oracle fusion middleware 11.1.1.1.0

  • DB deployment failed in Plan

    Hi:
    I installed Essbase and configured and tested and everything is ok. I installed Hyperion planning and when I tried to configure the database through configuration utility, I get the following error.
    (Oct 12, 2008, 11:28:55 AM), com.hyperion.cis.config.wizard.ProductTaskSelectionPanel, INFO, Validating dependencies...
    (Oct 12, 2008, 11:28:55 AM), com.hyperion.cis.config.wizard.ProductTaskSelectionPanel$5, DEBUG, Product: Planning; Dependencies: [email protected], com.hyperion.cis.config.dependencies.DirectTaskDependency@df88d2, [email protected]
    (Oct 12, 2008, 11:28:55 AM), com.hyperion.cis.config.wizard.ProductTaskSelectionPanel, DEBUG, task to execute: relationalStorageConfiguration
    (Oct 12, 2008, 11:28:55 AM), com.hyperion.cis.config.wizard.ProductTaskSelectionPanel, DEBUG, task to execute: HspDBPropertyLocation
    (Oct 12, 2008, 11:28:55 AM), com.hyperion.cis.config.wizard.PanelEventDispatcher, DEBUG, constructor
    (Oct 12, 2008, 11:28:56 AM), com.hyperion.cis.config.wizard.DBTypeSelectionPanel, DEBUG, DBTypeSelectionPanel in queryExit
    (Oct 12, 2008, 11:28:56 AM), com.hyperion.cis.config.wizard.PanelEventDispatcher, DEBUG, constructor
    (Oct 12, 2008, 11:28:58 AM), com.hyperion.cis.config.wizard.DBSetupPanel, INFO, Creating new Connecting info: user=admin, password=*****, jdbcUrl=jdbc:hyperion:sqlserver://192.168.1.101:1433;DatabaseName=plandb, DatabaseType=MSSQLServer.
    (Oct 12, 2008, 11:28:58 AM), com.hyperion.cis.config.AbstractProductDBConfigurator, DEBUG, compare driver strings(org.hsqldb.jdbcDriver,hyperion.jdbc.sqlserver.SQLServerDriver)
    (Oct 12, 2008, 11:28:58 AM), com.hyperion.cis.config.AbstractProductDBConfigurator, DEBUG, compare driver strings(hyperion.jdbc.sqlserver.SQLServerDriver,hyperion.jdbc.sqlserver.SQLServerDriver)
    (Oct 12, 2008, 11:28:58 AM), com.hyperion.cis.config.AbstractProductDBConfigurator, DEBUG, driver class is hyperion.jdbc.sqlserver.SQLServerDriver
    (Oct 12, 2008, 11:28:58 AM), com.hyperion.cis.config.AbstractProductDBConfigurator, DEBUG, Make jdbcURL
    (Oct 12, 2008, 11:28:58 AM), com.hyperion.cis.config.AbstractProductDBConfigurator, DEBUG, Make Connection using jdbc:hyperion:sqlserver://192.168.1.101:1433;DatabaseName=plandb;loadLibraryPath=C:\Hyperion\Home/common/JDBC/DataDirect/3.6/lib;AuthenticationMethod=ntlm
    (Oct 12, 2008, 11:28:58 AM), com.hyperion.cis.config.AbstractProductDBConfigurator, DEBUG, validate DB, version
    (Oct 12, 2008, 11:28:58 AM), com.hyperion.cis.config.AbstractProductDBConfigurator, DEBUG, DB Version check
    (Oct 12, 2008, 11:28:58 AM), com.hyperion.cis.config.AbstractProductDBConfigurator, DEBUG, majors(9 vs 8), minors(0 vs 0)
    (Oct 12, 2008, 11:28:58 AM), com.hyperion.cis.config.wizard.DBSetupPanel, INFO, Checking schema for product: Planning and connect info: user=windowsAuthentication, password=*****, jdbcUrl=jdbc:hyperion:sqlserver://192.168.1.101:1433;DatabaseName=plandb;loadLibraryPath=C:\Hyperion\Home/common/JDBC/DataDirect/3.6/lib;AuthenticationMethod=ntlm, DatabaseType=MSSQLServer.
    (Oct 12, 2008, 11:28:58 AM), com.hyperion.planning.HspDBConfigurator, DEBUG, Inside checkSchema()
    (Oct 12, 2008, 11:28:58 AM), com.hyperion.planning.HspDBConfigurator, DEBUG, Query db to see if tables already exist.
    (Oct 12, 2008, 11:28:58 AM), com.hyperion.cis.config.wizard.DBSetupPanel, INFO, SchemaConfigException: 1: HSPSYS_CLUSTER already exists.
    (Oct 12, 2008, 11:29:00 AM), com.hyperion.cis.config.wizard.ProductCustomInputPanel, DEBUG, managerClassName: com.hyperion.planning.HspDBPropertiesLocationPanel
    (Oct 12, 2008, 11:29:00 AM), com.hyperion.planning.HspDBPropertiesLocationPanel, DEBUG, In HspDBPropertiesLocationPanel queryEnter()
    (Oct 12, 2008, 11:29:07 AM), com.hyperion.planning.HspDBConfigurator, DEBUG, Database is: plandb
    (Oct 12, 2008, 11:29:07 AM), com.hyperion.planning.HspDBConfigurator, DEBUG, jdbcUrl is: jdbc:hyperion:sqlserver://192.168.1.101:1433
    (Oct 12, 2008, 11:29:07 AM), com.hyperion.planning.HspDBConfigurator, ERROR, HyperionSQLServer JDBC DriverSQLServerThere is already an object named 'HSPSYS_PI_INFO' in the database.
    (Oct 12, 2008, 11:29:07 AM), com.hyperion.planning.HspDBConfigurator, DEBUG, Full Name of file created C:\Hyperion\Home\Planning/config/PlanningSystemDB.properties
    (Oct 12, 2008, 11:29:07 AM), com.hyperion.planning.HspDBConfigurator, DEBUG, Inside uploadFileToHub()
    (Oct 12, 2008, 11:29:07 AM), com.hyperion.planning.HspDBConfigurator, DEBUG, File C:\Hyperion\Home/common/config/product/planning/9.3.1.0/planningHub.properties doesn't exist
    (Oct 12, 2008, 11:29:07 AM), com.hyperion.planning.HspDBConfigurator, DEBUG, File C:\Hyperion\Home/common/config/product/planning/9.3.1.0/planningHub.properties doesn't exist
    (Oct 12, 2008, 11:29:07 AM), com.hyperion.planning.HspDBConfigurator, DEBUG, File C:\Hyperion\Home/common/config/product/planning/9.3.1.0/planningHub.properties doesn't exist
    (Oct 12, 2008, 11:29:07 AM), com.hyperion.planning.HspDBConfigurator, DEBUG, File C:\Hyperion\Home/common/config/product/planning/9.3.1.0/planningHub.properties doesn't exist
    (Oct 12, 2008, 11:29:07 AM), com.hyperion.planning.HspDBConfigurator, DEBUG, File C:\Hyperion\Home/common/config/product/planning/9.3.1.0/planningHub.properties doesn't exist
    (Oct 12, 2008, 11:29:07 AM), com.hyperion.planning.HspDBConfigurator, DEBUG, Getting CSS instance
    (Oct 12, 2008, 11:29:07 AM), com.hyperion.planning.HspDBConfigurator, ERROR, Exception generated when creating CSS connection: For input string: "null"
    (Oct 12, 2008, 11:29:07 AM), com.hyperion.planning.HspDBConfigurator, DEBUG, For input string: "null"
    (Oct 12, 2008, 11:29:07 AM), com.hyperion.cis.config.wizard.RunAllTasksWizardAction, ERROR, Error:
    com.hyperion.cis.config.ProcessingException
    at com.hyperion.planning.HspDBConfigurator.configure(HspDBConfigurator.java:222)
    at com.hyperion.cis.config.wizard.RunAllTasksWizardAction.executeDBConfigTask(RunAllTasksWizardAction.java:282)
    at com.hyperion.cis.config.wizard.RunAllTasksWizardAction.execute(RunAllTasksWizardAction.java:151)
    at com.installshield.wizard.RunnableWizardBeanContext.run(Unknown Source)
    I am using Windows XP, 4 GB RAM, SQL 2005 server.
    Any ideas?
    Jay

    Hi,
    I have answered this question here :- DB Deployment failed in planning
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • DB Deployment failed in planning

    Hi:
    I installed Essbase and configured and tested and everything is ok. I installed Hyperion planning and when I tried to configure the database through configuration utility, I get the following error.
    (Oct 12, 2008, 11:28:55 AM), com.hyperion.cis.config.wizard.ProductTaskSelectionPanel, INFO, Validating dependencies...
    (Oct 12, 2008, 11:28:55 AM), com.hyperion.cis.config.wizard.ProductTaskSelectionPanel$5, DEBUG, Product: Planning; Dependencies: [email protected], com.hyperion.cis.config.dependencies.DirectTaskDependency@df88d2, [email protected]
    (Oct 12, 2008, 11:28:55 AM), com.hyperion.cis.config.wizard.ProductTaskSelectionPanel, DEBUG, task to execute: relationalStorageConfiguration
    (Oct 12, 2008, 11:28:55 AM), com.hyperion.cis.config.wizard.ProductTaskSelectionPanel, DEBUG, task to execute: HspDBPropertyLocation
    (Oct 12, 2008, 11:28:55 AM), com.hyperion.cis.config.wizard.PanelEventDispatcher, DEBUG, constructor
    (Oct 12, 2008, 11:28:56 AM), com.hyperion.cis.config.wizard.DBTypeSelectionPanel, DEBUG, DBTypeSelectionPanel in queryExit
    (Oct 12, 2008, 11:28:56 AM), com.hyperion.cis.config.wizard.PanelEventDispatcher, DEBUG, constructor
    (Oct 12, 2008, 11:28:58 AM), com.hyperion.cis.config.wizard.DBSetupPanel, INFO, Creating new Connecting info: user=admin, password=*****, jdbcUrl=jdbc:hyperion:sqlserver://192.168.1.101:1433;DatabaseName=plandb, DatabaseType=MSSQLServer.
    (Oct 12, 2008, 11:28:58 AM), com.hyperion.cis.config.AbstractProductDBConfigurator, DEBUG, compare driver strings(org.hsqldb.jdbcDriver,hyperion.jdbc.sqlserver.SQLServerDriver)
    (Oct 12, 2008, 11:28:58 AM), com.hyperion.cis.config.AbstractProductDBConfigurator, DEBUG, compare driver strings(hyperion.jdbc.sqlserver.SQLServerDriver,hyperion.jdbc.sqlserver.SQLServerDriver)
    (Oct 12, 2008, 11:28:58 AM), com.hyperion.cis.config.AbstractProductDBConfigurator, DEBUG, driver class is hyperion.jdbc.sqlserver.SQLServerDriver
    (Oct 12, 2008, 11:28:58 AM), com.hyperion.cis.config.AbstractProductDBConfigurator, DEBUG, Make jdbcURL
    (Oct 12, 2008, 11:28:58 AM), com.hyperion.cis.config.AbstractProductDBConfigurator, DEBUG, Make Connection using jdbc:hyperion:sqlserver://192.168.1.101:1433;DatabaseName=plandb;loadLibraryPath=C:\Hyperion\Home/common/JDBC/DataDirect/3.6/lib;AuthenticationMethod=ntlm
    (Oct 12, 2008, 11:28:58 AM), com.hyperion.cis.config.AbstractProductDBConfigurator, DEBUG, validate DB, version
    (Oct 12, 2008, 11:28:58 AM), com.hyperion.cis.config.AbstractProductDBConfigurator, DEBUG, DB Version check
    (Oct 12, 2008, 11:28:58 AM), com.hyperion.cis.config.AbstractProductDBConfigurator, DEBUG, majors(9 vs 8), minors(0 vs 0)
    (Oct 12, 2008, 11:28:58 AM), com.hyperion.cis.config.wizard.DBSetupPanel, INFO, Checking schema for product: Planning and connect info: user=windowsAuthentication, password=*****, jdbcUrl=jdbc:hyperion:sqlserver://192.168.1.101:1433;DatabaseName=plandb;loadLibraryPath=C:\Hyperion\Home/common/JDBC/DataDirect/3.6/lib;AuthenticationMethod=ntlm, DatabaseType=MSSQLServer.
    (Oct 12, 2008, 11:28:58 AM), com.hyperion.planning.HspDBConfigurator, DEBUG, Inside checkSchema()
    (Oct 12, 2008, 11:28:58 AM), com.hyperion.planning.HspDBConfigurator, DEBUG, Query db to see if tables already exist.
    (Oct 12, 2008, 11:28:58 AM), com.hyperion.cis.config.wizard.DBSetupPanel, INFO, SchemaConfigException: 1: HSPSYS_CLUSTER already exists.
    (Oct 12, 2008, 11:29:00 AM), com.hyperion.cis.config.wizard.ProductCustomInputPanel, DEBUG, managerClassName: com.hyperion.planning.HspDBPropertiesLocationPanel
    (Oct 12, 2008, 11:29:00 AM), com.hyperion.planning.HspDBPropertiesLocationPanel, DEBUG, In HspDBPropertiesLocationPanel queryEnter()
    (Oct 12, 2008, 11:29:07 AM), com.hyperion.planning.HspDBConfigurator, DEBUG, Database is: plandb
    (Oct 12, 2008, 11:29:07 AM), com.hyperion.planning.HspDBConfigurator, DEBUG, jdbcUrl is: jdbc:hyperion:sqlserver://192.168.1.101:1433
    (Oct 12, 2008, 11:29:07 AM), com.hyperion.planning.HspDBConfigurator, ERROR, HyperionSQLServer JDBC DriverSQLServerThere is already an object named 'HSPSYS_PI_INFO' in the database.
    (Oct 12, 2008, 11:29:07 AM), com.hyperion.planning.HspDBConfigurator, DEBUG, Full Name of file created C:\Hyperion\Home\Planning/config/PlanningSystemDB.properties
    (Oct 12, 2008, 11:29:07 AM), com.hyperion.planning.HspDBConfigurator, DEBUG, Inside uploadFileToHub()
    (Oct 12, 2008, 11:29:07 AM), com.hyperion.planning.HspDBConfigurator, DEBUG, File C:\Hyperion\Home/common/config/product/planning/9.3.1.0/planningHub.properties doesn't exist
    (Oct 12, 2008, 11:29:07 AM), com.hyperion.planning.HspDBConfigurator, DEBUG, File C:\Hyperion\Home/common/config/product/planning/9.3.1.0/planningHub.properties doesn't exist
    (Oct 12, 2008, 11:29:07 AM), com.hyperion.planning.HspDBConfigurator, DEBUG, File C:\Hyperion\Home/common/config/product/planning/9.3.1.0/planningHub.properties doesn't exist
    (Oct 12, 2008, 11:29:07 AM), com.hyperion.planning.HspDBConfigurator, DEBUG, File C:\Hyperion\Home/common/config/product/planning/9.3.1.0/planningHub.properties doesn't exist
    (Oct 12, 2008, 11:29:07 AM), com.hyperion.planning.HspDBConfigurator, DEBUG, File C:\Hyperion\Home/common/config/product/planning/9.3.1.0/planningHub.properties doesn't exist
    (Oct 12, 2008, 11:29:07 AM), com.hyperion.planning.HspDBConfigurator, DEBUG, Getting CSS instance
    (Oct 12, 2008, 11:29:07 AM), com.hyperion.planning.HspDBConfigurator, ERROR, Exception generated when creating CSS connection: For input string: "null"
    (Oct 12, 2008, 11:29:07 AM), com.hyperion.planning.HspDBConfigurator, DEBUG, For input string: "null"
    (Oct 12, 2008, 11:29:07 AM), com.hyperion.cis.config.wizard.RunAllTasksWizardAction, ERROR, Error:
    com.hyperion.cis.config.ProcessingException
    at com.hyperion.planning.HspDBConfigurator.configure(HspDBConfigurator.java:222)
    at com.hyperion.cis.config.wizard.RunAllTasksWizardAction.executeDBConfigTask(RunAllTasksWizardAction.java:282)
    at com.hyperion.cis.config.wizard.RunAllTasksWizardAction.execute(RunAllTasksWizardAction.java:151)
    at com.installshield.wizard.RunnableWizardBeanContext.run(Unknown Source)
    I am using Windows XP, 4 GB RAM, SQL 2005 server.
    Any ideas?
    Jay

    Hi
    I'm posting my problem on this thread cos i feel i'm currently having a similar issue and you guys could help me out.
    I installed Planning 9.3.1 and also Shared Services on my machine. Im trying to do 2 things now: 1. Configure Shared Services and 2. Configure Planning
    First, i went ahead to configure Shared Services with the database (i have Oracle 10g) and it failed with error: "DB Deployment Failed!"
    This is from the log file:
    (May 16, 2011, 06:08:59 PM), com.hyperion.hub.CreateHubSchema, DEBUG, Executing Statement CREATE TABLE ces_participant_events(participant_event_id varchar(100) NOT NULL,participant_id varchar(100), objtype smallint NOT NULL,objvalue blob,CONSTRAINT ces_participant_events_pk PRIMARY KEY (participant_event_id),CONSTRAINT fk_participant_id FOREIGN KEY (participant_id) REFERENCES ces_participant(participant_id) ON DELETE CASCADE )
    (May 16, 2011, 06:08:59 PM), com.hyperion.hub.CreateHubSchema, DEBUG, Executing Statement CREATE TABLE ces_tasks_result(task_id varchar(100) NOT NULL,task_result blob, CONSTRAINT ces_tasks_result_pk PRIMARY KEY (task_id))
    (May 16, 2011, 06:08:59 PM), com.hyperion.hub.CreateHubSchema, DEBUG, Executing Statement commit
    (May 16, 2011, 06:08:59 PM), com.hyperion.hub.HubDBConfigurator, DEBUG, Refresh OpenLDAP DB, status will be written to C:\Hyperion\SharedServices\9.3.1\openLDAP/logs/exec.log.
    (May 16, 2011, 06:08:59 PM), com.hyperion.hub.HubDBConfigurator, DEBUG, Execute ldapdelete command to delete all entries.
    (May 16, 2011, 06:08:59 PM), com.hyperion.hub.HubDBConfigurator, DEBUG, Execute command: C:\Hyperion\SharedServices\9.3.1\openLDAP\ldapdelete -r -D "cn=root,dc=css,dc=hyperion,dc=com" -x -w security -h localhost -p 58089 "dc=css,dc=hyperion,dc=com"
    (May 16, 2011, 06:09:00 PM), com.hyperion.hub.HubDBConfigurator, DEBUG, The css file set to use for Open LDAP: C:\Hyperion\SharedServices\9.3.1\openLDAP\css.ldif
    (May 16, 2011, 06:09:00 PM), com.hyperion.hub.HubDBConfigurator, DEBUG, Execute ldapmodify command to seed initial entries.
    (May 16, 2011, 06:09:00 PM), com.hyperion.hub.HubDBConfigurator, DEBUG, Execute command: C:\Hyperion\SharedServices\9.3.1\openLDAP\hssupdate.bat C:\Hyperion\SharedServices\9.3.1\openLDAP
    (May 16, 2011, 06:09:00 PM), com.hyperion.hub.HubDBConfigurator, DEBUG, Execute command: C:\Hyperion\SharedServices\9.3.1\openLDAP\ldapmodify -D "cn=root,dc=css,dc=hyperion,dc=com" -a -c -h localhost -p 58089 -v -x -w security -f "C:\Hyperion\SharedServices\9.3.1\openLDAP\css.ldif"
    (May 16, 2011, 06:09:01 PM), com.hyperion.hub.HubDBConfigurator, DEBUG, Execute command: C:\Hyperion\SharedServices\9.3.1\openLDAP\ldapmodify -D "cn=root,dc=css,dc=hyperion,dc=com" -c -h localhost -p 58089 -v -x -w security -f "C:\Hyperion\SharedServices\9.3.1\openLDAP\css.ldif"
    (May 16, 2011, 06:09:03 PM), com.hyperion.hub.HubDBConfigurator, ERROR, Error:
    java.lang.IndexOutOfBoundsException: Index: 0, Size: 0
         at java.util.ArrayList.RangeCheck(Unknown Source)
         at java.util.ArrayList.get(Unknown Source)
         at com.hyperion.hub.HubDBConfigurator.getDeployLocation(HubDBConfigurator.java:207)
         at com.hyperion.hub.HubDBConfigurator.configure(HubDBConfigurator.java:183)
         at com.hyperion.cis.config.wizard.RunAllTasksWizardAction.executeDBConfigTask(RunAllTasksWizardAction.java:282)
         at com.hyperion.cis.config.wizard.RunAllTasksWizardAction.execute(RunAllTasksWizardAction.java:151)
         at com.installshield.wizard.RunnableWizardBeanContext.run(Unknown Source)
    (May 16, 2011, 06:09:03 PM), com.hyperion.cis.config.wizard.RunAllTasksWizardAction, ERROR, Error:
    com.hyperion.cis.config.ProcessingException
         at com.hyperion.hub.HubDBConfigurator.configure(HubDBConfigurator.java:201)
         at com.hyperion.cis.config.wizard.RunAllTasksWizardAction.executeDBConfigTask(RunAllTasksWizardAction.java:282)
         at com.hyperion.cis.config.wizard.RunAllTasksWizardAction.execute(RunAllTasksWizardAction.java:151)
         at com.installshield.wizard.RunnableWizardBeanContext.run(Unknown Source)
    (May 16, 2011, 06:09:03 PM), com.hyperion.cis.config.ConfigToolPropertiesHelper, DEBUG, Deployment dir: C:\Hyperion\deployments\Tomcat5
    (May 16, 2011, 06:09:03 PM), com.hyperion.cis.config.AppServerDeployer, DEBUG, Starting Tomcat 5 deployment...
    (May 16, 2011, 06:09:03 PM), com.hyperion.hub.HubAppServerDeployer, DEBUG, Copying C:\Hyperion\deployments\Tomcat5\SharedServices9\config\CMS.properties to C:\Hyperion\SharedServices\9.3.1\cssbackup\Tomcat5\CMS.properties
    (May 16, 2011, 06:09:03 PM), com.hyperion.hub.HubAppServerDeployer, DEBUG, Copying C:\Hyperion\deployments\Tomcat5\SharedServices9\config\HSSLogger.properties to C:\Hyperion\SharedServices\9.3.1\cssbackup\Tomcat5\HSSLogger.properties
    (May 16, 2011, 06:09:03 PM), com.hyperion.hub.HubAppServerDeployer, DEBUG, Copying C:\Hyperion\deployments\Tomcat5\SharedServices9\config\Hub.properties to C:\Hyperion\SharedServices\9.3.1\cssbackup\Tomcat5\Hub.properties
    (May 16, 2011, 06:09:03 PM), com.hyperion.hub.HubAppServerDeployer, DEBUG, Copying C:\Hyperion\deployments\Tomcat5\SharedServices9\config\manage_data.properties to C:\Hyperion\SharedServices\9.3.1\cssbackup\Tomcat5\manage_data.properties
    (May 16, 2011, 06:09:03 PM), com.hyperion.hub.HubAppServerDeployer, DEBUG, Copying C:\Hyperion\deployments\Tomcat5\SharedServices9\config\scheduler.properties to C:\Hyperion\SharedServices\9.3.1\cssbackup\Tomcat5\scheduler.properties
    (May 16, 2011, 06:09:03 PM), com.hyperion.hub.HubAppServerDeployer, DEBUG, Copying C:\Hyperion\deployments\Tomcat5\SharedServices9\config\SearchServiceConfig.properties to C:\Hyperion\SharedServices\9.3.1\cssbackup\Tomcat5\SearchServiceConfig.properties
    (May 16, 2011, 06:09:03 PM), com.hyperion.hub.HubAppServerDeployer, DEBUG, Copying C:\Hyperion\deployments\Tomcat5\SharedServices9\config\slide.properties to C:\Hyperion\SharedServices\9.3.1\cssbackup\Tomcat5\slide.properties
    (May 16, 2011, 06:09:03 PM), com.hyperion.hub.HubAppServerDeployer, DEBUG, Copying C:\Hyperion\deployments\Tomcat5\SharedServices9\config\WorkflowEngine.properties to C:\Hyperion\SharedServices\9.3.1\cssbackup\Tomcat5\WorkflowEngine.properties

  • Litetouch deployment failed 0x80004005

    can not deploy win7 with mdt 2012.
    FAILURE ( 5627 ): -1073731515 0xC0000135: Run DISM.exe
    Litetouch deployment failed, Return Code = -2147467259 0x80004005
    Failed to run the action: Install Operating System.
    Unknown error (Error: 000015FB: Source: Unknown)
    The execution of the group (Install) has failed and the execution has been aborted.
    Operation aborted (Error: 80004004: Source: Windows)
    Failed to run the last action: Install Operati ngSystem. Execution of task sequence failed:
    Unknown error (Error: 000015FB; Source: Unknown)
    Task Sequence Engine failed! Code: enExecutionFail
    Task sequence execution failed with error code 80004005
    Error Task Sequence Manager failed to execute task swquence. Code 0x80004005
    I keep getting this error message and not sure what it could be. Any idea????

    The log is very long. Here is the first part of it.
    <![LOG[Property LogPath is now = X:\MININT\SMSOSD\OSDLOGS]LOG]!><time="14:34:23.000+000" date="08-16-2013" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[Microsoft Deployment Toolkit version: 6.1.2373.0]LOG]!><time="14:34:23.000+000" date="08-16-2013" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[Property Debug is now = FALSE]LOG]!><time="14:34:23.000+000" date="08-16-2013" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[ZTIUtility!GetAllFixedDrives (False)]LOG]!><time="14:34:23.000+000" date="08-16-2013" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[New ZTIDiskPartition : \\MININT-N42LK45\root\cimv2:Win32_DiskPartition.DeviceID="Disk #0, Partition #0"    \\MININT-N42LK45\root\cimv2:Win32_LogicalDisk.DeviceID="C:"]LOG]!><time="14:34:23.000+000" date="08-16-2013" component="LiteTouch"
    context="" type="1" thread="" file="LiteTouch">
    <![LOG[New ZTIDisk : \\MININT-N42LK45\root\cimv2:Win32_DiskDrive.DeviceID="\\\\.\\PHYSICALDRIVE0"]LOG]!><time="14:34:23.000+000" date="08-16-2013" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[New ZTIDiskPartition : \\MININT-N42LK45\root\cimv2:Win32_DiskPartition.DeviceID="Disk #0, Partition #1"    \\MININT-N42LK45\root\cimv2:Win32_LogicalDisk.DeviceID="D:"]LOG]!><time="14:34:23.000+000" date="08-16-2013" component="LiteTouch"
    context="" type="1" thread="" file="LiteTouch">
    <![LOG[New ZTIDisk : \\MININT-N42LK45\root\cimv2:Win32_DiskDrive.DeviceID="\\\\.\\PHYSICALDRIVE0"]LOG]!><time="14:34:24.000+000" date="08-16-2013" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[ZTIUtility!GetAllFixedDrives =  C: D:]LOG]!><time="14:34:24.000+000" date="08-16-2013" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[No task sequence is in progress.]LOG]!><time="14:34:24.000+000" date="08-16-2013" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[New ZTIDisk : \\MININT-N42LK45\root\cimv2:Win32_DiskDrive.DeviceID="\\\\.\\PHYSICALDRIVE0"]LOG]!><time="14:34:24.000+000" date="08-16-2013" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[Found Possible OS TargetDisk: \\MININT-N42LK45\root\cimv2:Win32_DiskDrive.DeviceID="\\\\.\\PHYSICALDRIVE0"]LOG]!><time="14:34:24.000+000" date="08-16-2013" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[GetPartitions: 2]LOG]!><time="14:34:24.000+000" date="08-16-2013" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[Found Possible OS Target Partition: \\MININT-N42LK45\root\cimv2:Win32_DiskPartition.DeviceID="Disk #0, Partition #0"]LOG]!><time="14:34:24.000+000" date="08-16-2013" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[New ZTIDiskPartition : \\MININT-N42LK45\root\cimv2:Win32_DiskPartition.DeviceID="Disk #0, Partition #0"    \\MININT-N42LK45\root\cimv2:Win32_LogicalDisk.DeviceID="C:"]LOG]!><time="14:34:24.000+000" date="08-16-2013" component="LiteTouch"
    context="" type="1" thread="" file="LiteTouch">
    <![LOG[Target Partition not big enough: \\MININT-N42LK45\root\cimv2:Win32_DiskPartition.DeviceID="Disk #0, Partition #0"]LOG]!><time="14:34:24.000+000" date="08-16-2013" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[Found Possible OS Target Partition: \\MININT-N42LK45\root\cimv2:Win32_DiskPartition.DeviceID="Disk #0, Partition #1"]LOG]!><time="14:34:24.000+000" date="08-16-2013" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[New ZTIDiskPartition : \\MININT-N42LK45\root\cimv2:Win32_DiskPartition.DeviceID="Disk #0, Partition #1"    \\MININT-N42LK45\root\cimv2:Win32_LogicalDisk.DeviceID="D:"]LOG]!><time="14:34:24.000+000" date="08-16-2013" component="LiteTouch"
    context="" type="1" thread="" file="LiteTouch">
    <![LOG[Found Drive: D:]LOG]!><time="14:34:24.000+000" date="08-16-2013" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[Found FirstPossibleSystemDrive: D:]LOG]!><time="14:34:24.000+000" date="08-16-2013" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[Property SMSTSLocalDataDrive is now = D:]LOG]!><time="14:34:24.000+000" date="08-16-2013" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[Property LogPath is now = D:\MININT\SMSOSD\OSDLOGS]LOG]!><time="14:34:27.000+000" date="08-16-2013" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[Unable to get Current ID.]LOG]!><time="14:34:27.000+000" date="08-16-2013" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[Not running within WinPE or WinRE.]LOG]!><time="14:34:27.000+000" date="08-16-2013" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[Property DeploymentMethod is now = UNC]LOG]!><time="14:34:27.000+000" date="08-16-2013" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[DeploymentMethod = UNC]LOG]!><time="14:34:27.000+000" date="08-16-2013" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[Property DeployRoot is now = X:\Deploy]LOG]!><time="14:34:27.000+000" date="08-16-2013" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[Using a local or mapped drive, no connection is required.]LOG]!><time="14:34:27.000+000" date="08-16-2013" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[DeployRoot = X:\Deploy]LOG]!><time="14:34:27.000+000" date="08-16-2013" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[Property DeployDrive is now = X:]LOG]!><time="14:34:27.000+000" date="08-16-2013" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[DeployDrive = X:]LOG]!><time="14:34:27.000+000" date="08-16-2013" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[Property PHASE is now = PREINSTALL]LOG]!><time="14:34:27.000+000" date="08-16-2013" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[Property DeploymentType is now = NEWCOMPUTER]LOG]!><time="14:34:27.000+000" date="08-16-2013" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[Phase = PREINSTALL]LOG]!><time="14:34:27.000+000" date="08-16-2013" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[About to run command: wscript.exe "X:\Deploy\Scripts\ZTIGather.wsf" /inifile:Bootstrap.ini]LOG]!><time="14:34:27.000+000" date="08-16-2013" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[Property inifile is now = Bootstrap.ini]LOG]!><time="14:34:27.000+000" date="08-16-2013" component="ZTIGather" context="" type="1" thread="" file="ZTIGather">
    <![LOG[Microsoft Deployment Toolkit version: 6.1.2373.0]LOG]!><time="14:34:27.000+000" date="08-16-2013" component="ZTIGather" context="" type="1" thread="" file="ZTIGather">
    <![LOG[------------------------- Object Initialization -------------------------]LOG]!><time="14:34:27.000+000" date="08-16-2013" component="ZTIGather" context="" type="1" thread="" file="ZTIGather">
    <![LOG[------------------------- Initialization ------------

  • Oracle.jdeveloper.deploy.DeployException: Deployment Failed

    Hello,
    W
    I am very new to JDeveloper. I am trying to run a jspx page fron JDeveloper 11, I am getting following errors, while running the page, Can you please help
    *** Using port 7101 ***
    "C:\Documents and Settings\Administrator\Application Data\JDeveloper\system11.1.1.1.33.54.07\DefaultDomain\bin\startWebLogic.cmd"
    [waiting for the server to complete its initialization...]
    JAVA Memory arguments: -Xms256m -Xmx512m -XX:CompileThreshold=8000 -XX:PermSize=128m -XX:MaxPermSize=512m
    WLS Start Mode=Development
    CLASSPATH=C:\Oracle\MIDDLE~1\patch_wls1031\profiles\default\sys_manifest_classpath\weblogic_patch.jar;C:\Oracle\MIDDLE~1\patch_jdev1111\profiles\default\sys_manifest_classpath\weblogic_patch.jar;C:\Oracle\MIDDLE~1\JDK160~1\lib\tools.jar;C:\Oracle\MIDDLE~1\utils\config\10.3.1.0\config-launch.jar;C:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\weblogic_sp.jar;C:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\weblogic.jar;C:\Oracle\MIDDLE~1\modules\features\weblogic.server.modules_10.3.1.0.jar;C:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\webservices.jar;C:\Oracle\MIDDLE~1\modules\ORGAPA~1.0/lib/ant-all.jar;C:\Oracle\MIDDLE~1\modules\NETSFA~1.0_1/lib/ant-contrib.jar;C:\Oracle\Middleware\jdeveloper\webcenter\modules\oracle.portlet.server_11.1.1\oracle-portlet-api.jar;C:\Oracle\MIDDLE~1\JDEVEL~1\modules\oracle.jrf_11.1.1\jrf.jar;C:\Oracle\MIDDLE~1\WLSERV~1.3\common\eval\pointbase\lib\pbclient57.jar;C:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\xqrl.jar;C:\Oracle\product\10.2.0\db_1\LIB;C:\Program Files\Apache Software Foundation\Tomcat 6.0\lib\classes12.zip
    PATH=C:\Oracle\MIDDLE~1\patch_wls1031\profiles\default\native;C:\Oracle\MIDDLE~1\patch_jdev1111\profiles\default\native;C:\Oracle\MIDDLE~1\WLSERV~1.3\server\native\win\32;C:\Oracle\MIDDLE~1\WLSERV~1.3\server\bin;C:\Oracle\MIDDLE~1\modules\ORGAPA~1.0\bin;C:\Oracle\MIDDLE~1\JDK160~1\jre\bin;C:\Oracle\MIDDLE~1\JDK160~1\bin;C:\oracle\product\10.2.0\db_1\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\IBM\Infoprint Select;C:\Notes;C:\Program Files\XLView;C:\lotus\compnent;C:\Utilities;C:\Program Files\IBM\Personal Communications\;C:\Program Files\IBM\Trace Facility\;C:\Program Files\Intel\WiFi\bin\;C:\Program Files\ThinkPad\ConnectUtilities;C:\Program Files\Provision Networks\Virtual Access Client\;C:\Oracle\MIDDLE~1\WLSERV~1.3\server\native\win\32\oci920_8
    * To start WebLogic Server, use a username and *
    * password assigned to an admin-level user. For *
    * server administration, use the WebLogic Server *
    * console at http:\\hostname:port\console *
    starting weblogic with Java version:
    java version "1.6.0_11"
    Java(TM) SE Runtime Environment (build 1.6.0_11-b03)
    Java HotSpot(TM) Client VM (build 11.0-b16, mixed mode)
    Starting WLS with line:
    C:\Oracle\MIDDLE~1\JDK160~1\bin\java -client -Xms256m -Xmx512m -XX:CompileThreshold=8000 -XX:PermSize=128m -XX:MaxPermSize=512m -Dweblogic.Name=DefaultServer -Djava.security.policy=C:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\weblogic.policy -Xverify:none -da -Dplatform.home=C:\Oracle\MIDDLE~1\WLSERV~1.3 -Dwls.home=C:\Oracle\MIDDLE~1\WLSERV~1.3\server -Dweblogic.home=C:\Oracle\MIDDLE~1\WLSERV~1.3\server -Djps.app.credential.overwrite.allowed=true -Ddomain.home=C:\DOCUME~1\ADMINI~1\APPLIC~1\JDEVEL~1\SYSTEM~1.07\DEFAUL~1 -Doracle.home=C:\Oracle\MIDDLE~1\JDEVEL~1 -Djrf.version=11.1.1 -Dorg.apache.commons.logging.Log=org.apache.commons.logging.impl.Jdk14Logger -Djrockit.optfile=C:\Oracle\MIDDLE~1\JDEVEL~1\modules\oracle.jrf_11.1.1\jrocket_optfile.txt -Doracle.security.jps.config=C:\DOCUME~1\ADMINI~1\APPLIC~1\JDEVEL~1\SYSTEM~1.07\DEFAUL~1\config\fmwconfig\jps-config.xml -Djava.protocol.handler.pkgs=oracle.mds.net.protocol -Dweblogic.alternateTypesDirectory=C:\Oracle\MIDDLE~1\JDEVEL~1\modules\oracle.ossoiap_11.1.1,C:\Oracle\MIDDLE~1\JDEVEL~1\modules\oracle.oamprovider_11.1.1 -Dsso.filter.enable=true -DUSE_JAAS=false -Djps.policystore.hybrid.mode=false -Djps.combiner.optimize.lazyeval=true -Djps.combiner.optimize=true -Djps.auth=ACC -noverify -Doracle.core.ojdl.logging.usercontextprovider=oracle.core.ojdl.logging.impl.UserContextImpl -XX:+UseParallelGC -XX:+DisableExplicitGC -Dweblogic.management.discover=true -Dwlw.iterativeDev= -Dwlw.testConsole= -Dwlw.logErrorsToConsole= -Dweblogic.ext.dirs=C:\Oracle\MIDDLE~1\patch_wls1031\profiles\default\sysext_manifest_classpath;C:\Oracle\MIDDLE~1\patch_jdev1111\profiles\default\sysext_manifest_classpath weblogic.Server
    <Nov 18, 2009 12:52:12 AM IST> <Notice> <WebLogicServer> <BEA-000395> <Following extensions directory contents added to the end of the classpath:
    C:\Documents and Settings\Administrator\Application Data\JDeveloper\system11.1.1.1.33.54.07\DefaultDomain\lib\mbeantypes\csp-id-asserter.jar;C:\Oracle\Middleware\wlserver_10.3\L10N\beehive_ja.jar;C:\Oracle\Middleware\wlserver_10.3\L10N\beehive_ko.jar;C:\Oracle\Middleware\wlserver_10.3\L10N\beehive_zh_CN.jar;C:\Oracle\Middleware\wlserver_10.3\L10N\beehive_zh_TW.jar;C:\Oracle\Middleware\wlserver_10.3\L10N\p13n_wls_ja.jar;C:\Oracle\Middleware\wlserver_10.3\L10N\p13n_wls_ko.jar;C:\Oracle\Middleware\wlserver_10.3\L10N\p13n_wls_zh_CN.jar;C:\Oracle\Middleware\wlserver_10.3\L10N\p13n_wls_zh_TW.jar;C:\Oracle\Middleware\wlserver_10.3\L10N\testclient_ja.jar;C:\Oracle\Middleware\wlserver_10.3\L10N\testclient_ko.jar;C:\Oracle\Middleware\wlserver_10.3\L10N\testclient_zh_CN.jar;C:\Oracle\Middleware\wlserver_10.3\L10N\testclient_zh_TW.jar;C:\Oracle\Middleware\wlserver_10.3\L10N\tuxedocontrol_ja.jar;C:\Oracle\Middleware\wlserver_10.3\L10N\tuxedocontrol_ko.jar;C:\Oracle\Middleware\wlserver_10.3\L10N\tuxedocontrol_zh_CN.jar;C:\Oracle\Middleware\wlserver_10.3\L10N\tuxedocontrol_zh_TW.jar;C:\Oracle\Middleware\wlserver_10.3\L10N\workshop_ja.jar;C:\Oracle\Middleware\wlserver_10.3\L10N\workshop_ko.jar;C:\Oracle\Middleware\wlserver_10.3\L10N\workshop_zh_CN.jar;C:\Oracle\Middleware\wlserver_10.3\L10N\workshop_zh_TW.jar>
    <Nov 18, 2009 12:52:13 AM IST> <Info> <WebLogicServer> <BEA-000377> <Starting WebLogic Server with Java HotSpot(TM) Client VM Version 11.0-b16 from Sun Microsystems Inc.>
    <Nov 18, 2009 12:52:14 AM IST> <Info> <Management> <BEA-141107> <Version: WebLogic Server 10.3.1.0 Wed Jun 10 22:24:41 MDT 2009 1227385 >
    <Nov 18, 2009 12:52:16 AM IST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STARTING>
    <Nov 18, 2009 12:52:16 AM IST> <Info> <WorkManager> <BEA-002900> <Initializing self-tuning thread pool>
    <Nov 18, 2009 12:52:16 AM IST> <Notice> <LoggingService> <BEA-320400> <The log file C:\Documents and Settings\Administrator\Application Data\JDeveloper\system11.1.1.1.33.54.07\DefaultDomain\servers\DefaultServer\logs\DefaultServer.log will be rotated. Reopen the log file if tailing has stopped. This can happen on some platforms like Windows.>
    <Nov 18, 2009 12:52:16 AM IST> <Notice> <LoggingService> <BEA-320401> <The log file has been rotated to C:\Documents and Settings\Administrator\Application Data\JDeveloper\system11.1.1.1.33.54.07\DefaultDomain\servers\DefaultServer\logs\DefaultServer.log00049. Log messages will continue to be logged in C:\Documents and Settings\Administrator\Application Data\JDeveloper\system11.1.1.1.33.54.07\DefaultDomain\servers\DefaultServer\logs\DefaultServer.log.>
    <Nov 18, 2009 12:52:16 AM IST> <Notice> <Log Management> <BEA-170019> <The server log file C:\Documents and Settings\Administrator\Application Data\JDeveloper\system11.1.1.1.33.54.07\DefaultDomain\servers\DefaultServer\logs\DefaultServer.log is opened. All server side log events will be written to this file.>
    <Nov 18, 2009 12:52:25 AM IST> <Notice> <Security> <BEA-090082> <Security initializing using security realm myrealm.>
    <Nov 18, 2009 12:52:32 AM IST> <Warning> <Deployer> <BEA-149617> <Non-critical internal application uddi was not deployed. Error: [Deployer:149158]No application files exist at 'C:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\uddi.war'.>
    <Nov 18, 2009 12:52:32 AM IST> <Warning> <Deployer> <BEA-149617> <Non-critical internal application uddiexplorer was not deployed. Error: [Deployer:149158]No application files exist at 'C:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\uddiexplorer.war'.>
    <Nov 18, 2009 12:52:35 AM IST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STANDBY>
    <Nov 18, 2009 12:52:35 AM IST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STARTING>
    <Nov 18, 2009 12:52:45 AM IST> <Warning> <J2EE> <BEA-160195> <The application version lifecycle event listener oracle.security.jps.wls.listeners.JpsAppVersionLifecycleListener is ignored because the application TDM_FusionWeb is not versioned.>
    Nov 18, 2009 12:52:45 AM oracle.mds.internal.lcm.logging.MDSLCMLogger info
    INFO: Application ID : TDM_FusionWeb
    Nov 18, 2009 12:52:46 AM oracle.mds.internal.lcm.logging.MDSLCMLogger info
    INFO: "Metadata Services: Metadata archive (MAR) not found."
    Nov 18, 2009 12:52:46 AM JpsApplicationLifecycleListener Migrate Application Credential Store
    WARNING: Overwriting credentials is allowed in application credential store migration with Weblogic server running in Development Mode and system property 'jps.app.credential.overwrite.allowed' set to true
    <Nov 18, 2009 12:52:57 AM IST> <Warning> <HTTP> <BEA-101299> <The servlet-mapping for servlet-name "jsp" will override the default mapping for *.jsp. This can lead to a show code vulnerability.>
    Nov 18, 2009 12:52:57 AM oracle.mds.internal.lcm.logging.MDSLCMLogger info
    INFO: Application ID : TDM_FusionWeb_ADF
    <Nov 18, 2009 12:53:04 AM IST> <Error> <Deployer> <BEA-149605> <Failed to create App/Comp mbeans for AppDeploymentMBean wsm-pm. Error - weblogic.management.DeploymentException: C:\Oracle\Middleware\user_projects\applications\DefaultDomain\wsm-pm.ear (The system cannot find the file specified) with : C:\Oracle\Middleware\user_projects\applications\DefaultDomain\wsm-pm.ear.
    weblogic.management.DeploymentException: C:\Oracle\Middleware\user_projects\applications\DefaultDomain\wsm-pm.ear (The system cannot find the file specified) with : C:\Oracle\Middleware\user_projects\applications\DefaultDomain\wsm-pm.ear
         at weblogic.application.internal.EarDeploymentFactory.findOrCreateComponentMBeans(EarDeploymentFactory.java:193)
         at weblogic.application.internal.MBeanFactoryImpl.findOrCreateComponentMBeans(MBeanFactoryImpl.java:48)
         at weblogic.application.internal.MBeanFactoryImpl.createComponentMBeans(MBeanFactoryImpl.java:110)
         at weblogic.application.internal.MBeanFactoryImpl.initializeMBeans(MBeanFactoryImpl.java:76)
         at weblogic.management.deploy.internal.MBeanConverter.createApplicationMBean(MBeanConverter.java:88)
         Truncated. see log file for complete stacktrace
    java.io.IOException: C:\Oracle\Middleware\user_projects\applications\DefaultDomain\wsm-pm.ear (The system cannot find the file specified) with : C:\Oracle\Middleware\user_projects\applications\DefaultDomain\wsm-pm.ear
         at java.util.zip.ZipFile.open(Native Method)
         at java.util.zip.ZipFile.<init>(ZipFile.java:114)
         at java.util.jar.JarFile.<init>(JarFile.java:133)
         at java.util.jar.JarFile.<init>(JarFile.java:97)
         at weblogic.utils.jars.JarFileDelegate.<init>(JarFileDelegate.java:32)
         Truncated. see log file for complete stacktrace
    >
    <Nov 18, 2009 12:53:04 AM IST> <Error> <Deployer> <BEA-149205> <Failed to initialize the application 'wsm-pm' due to error weblogic.management.DeploymentException: C:\Oracle\Middleware\user_projects\applications\DefaultDomain\wsm-pm.ear (The system cannot find the file specified) with : C:\Oracle\Middleware\user_projects\applications\DefaultDomain\wsm-pm.ear.
    weblogic.management.DeploymentException: C:\Oracle\Middleware\user_projects\applications\DefaultDomain\wsm-pm.ear (The system cannot find the file specified) with : C:\Oracle\Middleware\user_projects\applications\DefaultDomain\wsm-pm.ear
         at weblogic.application.internal.EarDeploymentFactory.findOrCreateComponentMBeans(EarDeploymentFactory.java:193)
         at weblogic.application.internal.MBeanFactoryImpl.findOrCreateComponentMBeans(MBeanFactoryImpl.java:48)
         at weblogic.application.internal.MBeanFactoryImpl.createComponentMBeans(MBeanFactoryImpl.java:110)
         at weblogic.application.internal.MBeanFactoryImpl.initializeMBeans(MBeanFactoryImpl.java:76)
         at weblogic.management.deploy.internal.MBeanConverter.createApplicationMBean(MBeanConverter.java:88)
         Truncated. see log file for complete stacktrace
    java.io.IOException: C:\Oracle\Middleware\user_projects\applications\DefaultDomain\wsm-pm.ear (The system cannot find the file specified) with : C:\Oracle\Middleware\user_projects\applications\DefaultDomain\wsm-pm.ear
         at java.util.zip.ZipFile.open(Native Method)
         at java.util.zip.ZipFile.<init>(ZipFile.java:114)
         at java.util.jar.JarFile.<init>(JarFile.java:133)
         at java.util.jar.JarFile.<init>(JarFile.java:97)
         at weblogic.utils.jars.JarFileDelegate.<init>(JarFileDelegate.java:32)
         Truncated. see log file for complete stacktrace
    >
    Nov 18, 2009 12:53:16 AM oracle.adf.share.config.ADFConfigFactory getInstance
    INFO: ADF Config instance implementation in use is : oracle.adf.share.config.MDSConfigFactory
    Nov 18, 2009 12:53:21 AM oracle.adf.mbean.share.connection.ConnectionsRuntimeMXBeanImpl getNonCachedConnectionsContext
    INFO: Registering Connection Runtime MBean
    Nov 18, 2009 12:53:21 AM oracle.adf.share.jndi.MDSBackingStore isReadOnlyMDSStore
    INFO: Read only backing store
    Nov 18, 2009 12:53:22 AM oracle.adf.share.jndi.MDSBackingStore isReadOnlyMDSStore
    INFO: Read only backing store
    Nov 18, 2009 12:53:22 AM oracle.adf.share.jndi.MDSBackingStore isReadOnlyMDSStore
    INFO: Read only backing store
    Nov 18, 2009 12:53:32 AM oracle.adf.mbean.share.connection.ConnectionsRuntimeMXBeanImpl getNonCachedConnectionsContext
    INFO: Registering Connection Runtime MBean
    Nov 18, 2009 12:53:32 AM oracle.adf.share.jndi.MDSBackingStore isReadOnlyMDSStore
    INFO: Read only backing store
    Nov 18, 2009 12:53:32 AM oracle.adf.share.jndi.MDSBackingStore documentExists
    INFO: MDS-00013: no metadata found for metadata object "/META-INF/connections.xml"
    Nov 18, 2009 12:53:32 AM oracle.adf.share.jndi.MDSBackingStore isReadOnlyMDSStore
    INFO: Read only backing store
    Nov 18, 2009 12:53:32 AM oracle.adf.share.jndi.MDSBackingStore isReadOnlyMDSStore
    INFO: Read only backing store
    Nov 18, 2009 12:53:32 AM oracle.adf.share.jndi.MDSBackingStore obtainMetadataObject
    SEVERE: Exception while getting mutable object
    oracle.mds.core.MetadataNotFoundException: MDS-00013: no metadata found for metadata object "/META-INF/adf-config.xml"
         at oracle.mds.core.MetadataObject.getBaseMOFromCache(MetadataObject.java:1625)
         at oracle.mds.core.MetadataObject.getBaseMO(MetadataObject.java:927)
         at oracle.mds.core.MDSSession.getBaseMO(MDSSession.java:2627)
         at oracle.mds.core.MDSSession.getMetadataObject(MDSSession.java:1144)
         at oracle.adf.share.jndi.MDSBackingStore.obtainMetadataObject(MDSBackingStore.java:401)
         at oracle.adf.share.jndi.MDSBackingStore.getMOBean(MDSBackingStore.java:462)
         at oracle.adf.mbean.share.config.RuntimeMXBeanImpl.init(RuntimeMXBeanImpl.java:151)
         at oracle.adf.mbean.share.config.RuntimeMXBeanImpl.<init>(RuntimeMXBeanImpl.java:146)
         at oracle.adf.mbean.share.config.RuntimeMXBeanImpl.<init>(RuntimeMXBeanImpl.java:139)
         at oracle.adf.mbean.share.config.ADFConfigLifeCycleCallBack.contextInitialized(ADFConfigLifeCycleCallBack.java:100)
         at weblogic.servlet.internal.EventsManager$FireContextListenerAction.run(EventsManager.java:481)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.servlet.internal.EventsManager.notifyContextCreatedEvent(EventsManager.java:181)
         at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:1799)
         at weblogic.servlet.internal.WebAppServletContext.start(WebAppServletContext.java:3041)
         at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1374)
         at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:452)
         at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:204)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:37)
         at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:60)
         at weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedModuleDriver.java:200)
         at weblogic.application.internal.flow.ModuleListenerInvoker.start(ModuleListenerInvoker.java:117)
         at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:204)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:37)
         at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:60)
         at weblogic.application.internal.flow.StartModulesFlow.activate(StartModulesFlow.java:27)
         at weblogic.application.internal.BaseDeployment$2.next(BaseDeployment.java:629)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:37)
         at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:206)
         at weblogic.application.internal.EarDeployment.activate(EarDeployment.java:53)
         at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:161)
         at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:79)
         at weblogic.deploy.internal.targetserver.BasicDeployment.activate(BasicDeployment.java:184)
         at weblogic.deploy.internal.targetserver.BasicDeployment.activateFromServerLifecycle(BasicDeployment.java:361)
         at weblogic.management.deploy.internal.DeploymentAdapter$1.doActivate(DeploymentAdapter.java:51)
         at weblogic.management.deploy.internal.DeploymentAdapter.activate(DeploymentAdapter.java:196)
         at weblogic.management.deploy.internal.AppTransition$2.transitionApp(AppTransition.java:30)
         at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:233)
         at weblogic.management.deploy.internal.ConfiguredDeployments.activate(ConfiguredDeployments.java:169)
         at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(ConfiguredDeployments.java:123)
         at weblogic.management.deploy.internal.DeploymentServerService.resume(DeploymentServerService.java:173)
         at weblogic.management.deploy.internal.DeploymentServerService.start(DeploymentServerService.java:89)
         at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    Nov 18, 2009 12:53:32 AM oracle.adf.mbean.share.config.ADFConfigLifeCycleCallBack contextInitialized
    SEVERE: Failed to create config mbean.
    java.lang.Exception: oracle.mds.core.MetadataNotFoundException: MDS-00013: no metadata found for metadata object "/META-INF/adf-config.xml"
         at oracle.adf.share.jndi.MDSBackingStore.obtainMetadataObject(MDSBackingStore.java:422)
         at oracle.adf.share.jndi.MDSBackingStore.getMOBean(MDSBackingStore.java:462)
         at oracle.adf.mbean.share.config.RuntimeMXBeanImpl.init(RuntimeMXBeanImpl.java:151)
         at oracle.adf.mbean.share.config.RuntimeMXBeanImpl.<init>(RuntimeMXBeanImpl.java:146)
         at oracle.adf.mbean.share.config.RuntimeMXBeanImpl.<init>(RuntimeMXBeanImpl.java:139)
         at oracle.adf.mbean.share.config.ADFConfigLifeCycleCallBack.contextInitialized(ADFConfigLifeCycleCallBack.java:100)
         at weblogic.servlet.internal.EventsManager$FireContextListenerAction.run(EventsManager.java:481)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.servlet.internal.EventsManager.notifyContextCreatedEvent(EventsManager.java:181)
         at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:1799)
         at weblogic.servlet.internal.WebAppServletContext.start(WebAppServletContext.java:3041)
         at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1374)
         at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:452)
         at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:204)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:37)
         at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:60)
         at weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedModuleDriver.java:200)
         at weblogic.application.internal.flow.ModuleListenerInvoker.start(ModuleListenerInvoker.java:117)
         at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:204)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:37)
         at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:60)
         at weblogic.application.internal.flow.StartModulesFlow.activate(StartModulesFlow.java:27)
         at weblogic.application.internal.BaseDeployment$2.next(BaseDeployment.java:629)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:37)
         at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:206)
         at weblogic.application.internal.EarDeployment.activate(EarDeployment.java:53)
         at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:161)
         at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:79)
         at weblogic.deploy.internal.targetserver.BasicDeployment.activate(BasicDeployment.java:184)
         at weblogic.deploy.internal.targetserver.BasicDeployment.activateFromServerLifecycle(BasicDeployment.java:361)
         at weblogic.management.deploy.internal.DeploymentAdapter$1.doActivate(DeploymentAdapter.java:51)
         at weblogic.management.deploy.internal.DeploymentAdapter.activate(DeploymentAdapter.java:196)
         at weblogic.management.deploy.internal.AppTransition$2.transitionApp(AppTransition.java:30)
         at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:233)
         at weblogic.management.deploy.internal.ConfiguredDeployments.activate(ConfiguredDeployments.java:169)
         at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(ConfiguredDeployments.java:123)
         at weblogic.management.deploy.internal.DeploymentServerService.resume(DeploymentServerService.java:173)
         at weblogic.management.deploy.internal.DeploymentServerService.start(DeploymentServerService.java:89)
         at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    Caused by: oracle.mds.core.MetadataNotFoundException: MDS-00013: no metadata found for metadata object "/META-INF/adf-config.xml"
         at oracle.mds.core.MetadataObject.getBaseMOFromCache(MetadataObject.java:1625)
         at oracle.mds.core.MetadataObject.getBaseMO(MetadataObject.java:927)
         at oracle.mds.core.MDSSession.getBaseMO(MDSSession.java:2627)
         at oracle.mds.core.MDSSession.getMetadataObject(MDSSession.java:1144)
         at oracle.adf.share.jndi.MDSBackingStore.obtainMetadataObject(MDSBackingStore.java:401)
         ... 41 more
    <Nov 18, 2009 12:53:40 AM IST> <Notice> <LoggingService> <BEA-320400> <The log file C:\Documents and Settings\Administrator\Application Data\JDeveloper\system11.1.1.1.33.54.07\DefaultDomain\servers\DefaultServer\logs\DefaultDomain.log will be rotated. Reopen the log file if tailing has stopped. This can happen on some platforms like Windows.>
    <Nov 18, 2009 12:53:40 AM IST> <Notice> <LoggingService> <BEA-320401> <The log file has been rotated to C:\Documents and Settings\Administrator\Application Data\JDeveloper\system11.1.1.1.33.54.07\DefaultDomain\servers\DefaultServer\logs\DefaultDomain.log00058. Log messages will continue to be logged in C:\Documents and Settings\Administrator\Application Data\JDeveloper\system11.1.1.1.33.54.07\DefaultDomain\servers\DefaultServer\logs\DefaultDomain.log.>
    <Nov 18, 2009 12:53:40 AM IST> <Notice> <Log Management> <BEA-170027> <The Server has established connection with the Domain level Diagnostic Service successfully.>
    Nov 18, 2009 12:53:41 AM oracle.wsm.common.logging.WsmMessageLogger logSevere
    SEVERE: Failure in looking up EJB component QueryService#oracle.wsm.policymanager.ejb.IStringQueryServiceRemote.
    <Nov 18, 2009 12:53:41 AM IST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to ADMIN>
    <Nov 18, 2009 12:53:41 AM IST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to RESUMING>
    <Nov 18, 2009 12:53:41 AM IST> <Notice> <Server> <BEA-002613> <Channel "Default" is now listening on 127.0.0.1:7101 for protocols iiop, t3, ldap, snmp, http.>
    <Nov 18, 2009 12:53:41 AM IST> <Notice> <WebLogicServer> <BEA-000331> <Started WebLogic Admin Server "DefaultServer" for domain "DefaultDomain" running in Development Mode>
    <Nov 18, 2009 12:53:41 AM IST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to RUNNING>
    <Nov 18, 2009 12:53:41 AM IST> <Notice> <WebLogicServer> <BEA-000360> <Server started in RUNNING mode>
    DefaultServer startup time: 91718 ms.
    DefaultServer started.
    [Running application Application12 on Server Instance DefaultServer...]
    <Nov 18, 2009 12:53:47 AM IST> <Warning> <Deployer> <BEA-149124> <Failures were detected while initiating deploy task for application 'Application12'. Error is: '[Deployer:149164]The domain edit lock is owned by another session in exclusive mode - hence this deployment operation cannot proceed.'>
    [12:53:47 AM] Weblogic Server Exception: weblogic.management.ManagementException: [Deployer:149164]The domain edit lock is owned by another session in exclusive mode - hence this deployment operation cannot proceed.
    [12:53:47 AM] See server logs or server console for more details.
    oracle.jdeveloper.deploy.DeployException: oracle.jdeveloper.deploy.DeployException: oracle.jdeveloper.deploy.DeployException: Deployment Failed
    [12:53:47 AM] #### Deployment incomplete. ####
    oracle.jdeveloper.deploy.DeployException: oracle.jdeveloper.deploy.DeployException: oracle.jdeveloper.deploy.DeployException: Deployment Failed
         at oracle.jdevimpl.deploy.common.Jsr88RemoteDeployer.doDeploymentAction(Jsr88RemoteDeployer.java:341)
         at oracle.jdevimpl.deploy.common.Jsr88RemoteDeployer.deployImpl(Jsr88RemoteDeployer.java:235)
         at oracle.jdeveloper.deploy.common.AbstractDeployer.deploy(AbstractDeployer.java:94)
         at oracle.jdevimpl.deploy.fwk.WrappedDeployer.deployImpl(WrappedDeployer.java:39)
         at oracle.jdeveloper.deploy.common.AbstractDeployer.deploy(AbstractDeployer.java:94)
         at oracle.jdeveloper.deploy.common.BatchDeployer.deployImpl(BatchDeployer.java:82)
         at oracle.jdeveloper.deploy.common.AbstractDeployer.deploy(AbstractDeployer.java:94)
         at oracle.jdevimpl.deploy.fwk.WrappedDeployer.deployImpl(WrappedDeployer.java:39)
         at oracle.jdeveloper.deploy.common.AbstractDeployer.deploy(AbstractDeployer.java:94)
         at oracle.jdevimpl.deploy.fwk.DeploymentManagerImpl.deploy(DeploymentManagerImpl.java:442)
         at oracle.jdeveloper.deploy.DeploymentManager.deploy(DeploymentManager.java:209)
         at oracle.jdevimpl.runner.adrs.AdrsStarter$6$1.run(AdrsStarter.java:1469)
    Caused by: oracle.jdeveloper.deploy.DeployException: oracle.jdeveloper.deploy.DeployException: Deployment Failed
         at oracle.jdevimpl.deploy.common.Jsr88DeploymentHelper.deployApplication(Jsr88DeploymentHelper.java:483)
         at oracle.jdevimpl.deploy.common.Jsr88RemoteDeployer.doDeploymentAction(Jsr88RemoteDeployer.java:332)
         ... 11 more
    Caused by: oracle.jdeveloper.deploy.DeployException: Deployment Failed
         at oracle.jdevimpl.deploy.common.Jsr88DeploymentHelper.deployApplication(Jsr88DeploymentHelper.java:465)
         ... 12 more
    #### Cannot run application Application12 due to error deploying to DefaultServer.
    [Application Application12 stopped and undeployed from Server Instance DefaultServer]

    Hi,
    Welcome to OTN.
    Check out Re: how to deply ADF application on weblogic 10.3 thread to know how to release the lock.
    -Arun

  • Webservice deployment failed

    Recently I decided to make a webserver along my "currentdensity.vi" design to have access to the data through explorer. I read the instructions for configurations of webserver but I have still problem in correct implementation of it. I am afraid I have left some simple steps or hints to successfully accomplish it. (http://localhost:8080/webservice1)--->but no result displayed
    Please give me your feedback.
    Solved!
    Go to Solution.
    Attachments:
    1-Project explorer.JPG ‏36 KB
    2- webserver configurations.jpg ‏108 KB
    6- webserver deployement failed.jpg ‏134 KB

    Hey Kira,
    we just have one Web Service in place.
    So only this one causes us problems.
    We never have any trouble with the build process. The problems starts when trying to deploy.
    Actually, I mentioned earlier that sometimes a restart of the computer solves the problem but not always.
    Just now it is one of the rare moments that the webservice could be deployed.
    However I think that this does not mean that from now on it will work stably. So right now trouble shooting is compromised as the problem has not occured.
    But what should I do when it will happen next time? Plenty of computer restarts cannot be the solution.
    I followed your advice and took a look under Start»Control Panel»System and Security»Administrative Tools»Services.
    I did not find any service named NI Application Web Server there. In the task manager the is the process "ApplicationWebServer.exe" (while the web service is currently running).
    When the deployment fails the progress bar does not go further than two bars. When to my surprise the deployment just worked I could capture a screen shot from the deployment progress window. I attach it to the post. Maybe this helps to find out why the deployment so often does not work.
    Attachments:
    Deployment successfull.PNG ‏82 KB
    Services after Restart.PNG ‏125 KB

  • Auto Deploy Failed

    I have downloaded J2EE 1.4 installation exe file and installed it to my system. As I followed the first tip to test the installation I tried autodeploying (copying the war file to my autodeploy folder) but it fails. My PC is an AMD64 with windows XP Pro (32-bit) installed.
    The server starts and ends OK.
    Is there a problem with 64bit CPUs?
    I installed and succesfully autodeployed it on my laptop which is Intel P4.

    Thank you for the advice. When I start the app server, I get this log. This is before I try auto deploying my own war file.
    Can it be a problem with my environment variables?
    Thank you.
    [#|2004-06-23T12:44:41.890+0300|INFO|sun-appserver-pe8.0|javax.enterprise.system.core|_ThreadID=10;|CORE5100:Loading system apps|#]
    [#|2004-06-23T12:44:41.906+0300|INFO|sun-appserver-pe8.0|javax.enterprise.system.core|_ThreadID=10;|Selecting file [C:\Sun\AppServer\lib\install\applications\MEjbApp.ear] for autodeployment|#]
    [#|2004-06-23T12:44:41.906+0300|INFO|sun-appserver-pe8.0|javax.enterprise.system.core|_ThreadID=10;|Selecting file [C:\Sun\AppServer\lib\install\applications\__ejb_container_timer_app.ear] for autodeployment|#]
    [#|2004-06-23T12:44:41.906+0300|INFO|sun-appserver-pe8.0|javax.enterprise.system.tools.admin|_ThreadID=10;|[AutoDeploy] Selecting file [ C:\Sun\AppServer\lib\install\applications\MEjbApp.ear ] for autodeployment.|#]
    [#|2004-06-23T12:44:42.015+0300|WARNING|sun-appserver-pe8.0|javax.enterprise.system.tools.admin|_ThreadID=10;|ADM1022:Deployment failed - Detailed Message:
    com.sun.enterprise.admin.common.exception.ServerInstanceException
         at com.sun.enterprise.admin.mbeans.ApplicationsConfigMBean.getVirtualServerHostAndPort(ApplicationsConfigMBean.java:2133)
         at com.sun.enterprise.admin.mbeans.ApplicationsConfigMBean.setHostAndPort(ApplicationsConfigMBean.java:3034)
         at com.sun.enterprise.admin.mbeans.ApplicationsConfigMBean.deploy(ApplicationsConfigMBean.java:274)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at com.sun.enterprise.admin.MBeanHelper.invokeOperationInBean(MBeanHelper.java:287)
         at com.sun.enterprise.admin.config.BaseConfigMBean.invoke(BaseConfigMBean.java:280)
         at com.sun.jmx.mbeanserver.DynamicMetaDataImpl.invoke(DynamicMetaDataImpl.java:221)
         at com.sun.jmx.mbeanserver.MetaDataImpl.invoke(MetaDataImpl.java:228)
         at com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.invoke(DefaultMBeanServerInterceptor.java:823)
         at com.sun.jmx.mbeanserver.JmxMBeanServer.invoke(JmxMBeanServer.java:792)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at com.sun.enterprise.admin.util.proxy.ProxyClass.invoke(ProxyClass.java:54)
         at $Proxy1.invoke(Unknown Source)
         at com.sun.enterprise.admin.server.core.jmx.SunoneInterceptor.invoke(SunoneInterceptor.java:282)
         at com.sun.enterprise.deployment.autodeploy.AutoDeployer.invokeDeploymentService(AutoDeployer.java:471)
         at com.sun.enterprise.deployment.autodeploy.AutoDeployer.deployApplication(AutoDeployer.java:367)
         at com.sun.enterprise.deployment.autodeploy.AutoDeployer.deployApplication(AutoDeployer.java:346)
         at com.sun.enterprise.deployment.autodeploy.AutoDeployer.deployAll(AutoDeployer.java:167)
         at com.sun.enterprise.server.SystemAppLifecycle.deployToTarget(SystemAppLifecycle.java:180)
         at com.sun.enterprise.server.SystemAppLifecycle.deploySystemApps(SystemAppLifecycle.java:155)
         at com.sun.enterprise.server.SystemAppLifecycle.onStartup(SystemAppLifecycle.java:77)
         at com.sun.enterprise.server.ApplicationServer.onStartup(ApplicationServer.java:295)
         at com.sun.enterprise.server.PEMain.run(PEMain.java:220)
         at com.sun.enterprise.server.PEMain.main(PEMain.java:172)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at org.apache.commons.launcher.ChildMain.run(ChildMain.java:269)
    |#]
    [#|2004-06-23T12:44:42.015+0300|INFO|sun-appserver-pe8.0|javax.enterprise.system.tools.admin|_ThreadID=10;|[AutoDeploy] Exception occures while invoking backend deployment service for file : C:\Sun\AppServer\lib\install\applications\MEjbApp.ear. -- null -- null|#]
    [#|2004-06-23T12:44:42.015+0300|INFO|sun-appserver-pe8.0|javax.enterprise.system.tools.admin|_ThreadID=10;|[AutoDeploy] Autodeploy failed : C:\Sun\AppServer\lib\install\applications\MEjbApp.ear.|#]
    [#|2004-06-23T12:44:42.015+0300|INFO|sun-appserver-pe8.0|javax.enterprise.system.tools.admin|_ThreadID=10;|[AutoDeploy] Selecting file [ C:\Sun\AppServer\lib\install\applications\__ejb_container_timer_app.ear ] for autodeployment.|#]
    [#|2004-06-23T12:44:42.031+0300|WARNING|sun-appserver-pe8.0|javax.enterprise.system.tools.admin|_ThreadID=10;|ADM1022:Deployment failed - Detailed Message:
    com.sun.enterprise.admin.common.exception.ServerInstanceException
         at com.sun.enterprise.admin.mbeans.ApplicationsConfigMBean.getVirtualServerHostAndPort(ApplicationsConfigMBean.java:2133)
         at com.sun.enterprise.admin.mbeans.ApplicationsConfigMBean.setHostAndPort(ApplicationsConfigMBean.java:3034)
         at com.sun.enterprise.admin.mbeans.ApplicationsConfigMBean.deploy(ApplicationsConfigMBean.java:274)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at com.sun.enterprise.admin.MBeanHelper.invokeOperationInBean(MBeanHelper.java:287)
         at com.sun.enterprise.admin.config.BaseConfigMBean.invoke(BaseConfigMBean.java:280)
         at com.sun.jmx.mbeanserver.DynamicMetaDataImpl.invoke(DynamicMetaDataImpl.java:221)
         at com.sun.jmx.mbeanserver.MetaDataImpl.invoke(MetaDataImpl.java:228)
         at com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.invoke(DefaultMBeanServerInterceptor.java:823)
         at com.sun.jmx.mbeanserver.JmxMBeanServer.invoke(JmxMBeanServer.java:792)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at com.sun.enterprise.admin.util.proxy.ProxyClass.invoke(ProxyClass.java:54)
         at $Proxy1.invoke(Unknown Source)
         at com.sun.enterprise.admin.server.core.jmx.SunoneInterceptor.invoke(SunoneInterceptor.java:282)
         at com.sun.enterprise.deployment.autodeploy.AutoDeployer.invokeDeploymentService(AutoDeployer.java:471)
         at com.sun.enterprise.deployment.autodeploy.AutoDeployer.deployApplication(AutoDeployer.java:367)
         at com.sun.enterprise.deployment.autodeploy.AutoDeployer.deployApplication(AutoDeployer.java:346)
         at com.sun.enterprise.deployment.autodeploy.AutoDeployer.deployAll(AutoDeployer.java:167)
         at com.sun.enterprise.server.SystemAppLifecycle.deployToTarget(SystemAppLifecycle.java:180)
         at com.sun.enterprise.server.SystemAppLifecycle.deploySystemApps(SystemAppLifecycle.java:155)
         at com.sun.enterprise.server.SystemAppLifecycle.onStartup(SystemAppLifecycle.java:77)
         at com.sun.enterprise.server.ApplicationServer.onStartup(ApplicationServer.java:295)
         at com.sun.enterprise.server.PEMain.run(PEMain.java:220)
         at com.sun.enterprise.server.PEMain.main(PEMain.java:172)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at org.apache.commons.launcher.ChildMain.run(ChildMain.java:269)
    |#]
    [#|2004-06-23T12:44:42.031+0300|INFO|sun-appserver-pe8.0|javax.enterprise.system.tools.admin|_ThreadID=10;|[AutoDeploy] Exception occures while invoking backend deployment service for file : C:\Sun\AppServer\lib\install\applications\__ejb_container_timer_app.ear. -- null -- null|#]
    [#|2004-06-23T12:44:42.031+0300|INFO|sun-appserver-pe8.0|javax.enterprise.system.tools.admin|_ThreadID=10;|[AutoDeploy] Autodeploy failed : C:\Sun\AppServer\lib\install\applications\__ejb_container_timer_app.ear.|#]

  • Windows 8 deployment using Zenworks imaging services

    Hi,
    I would like to find some guidelines or best practices stuff in order to help me with the deployment of Windows 8.1
    For our current method with Windows 7, we used SYSPREP with offline drivers for multiples machines in a local folder ex. C:\Drivers.
    Now it seems that it won't work anymore with Windows 8, and when we ask for help in the Microsoft forums we are pushed to products like MDT,WDS and SCCM.
    Does anyone here had a successful Windows 8 deployment ?
    Thank you in advance for your input

    Originally Posted by anto28
    Yes i have
    I asked this question a multiple forums but i have not received any satisfying answer yet...
    Can you elaborate with the DPinst way ?
    At what point do you use this command to inject drivers ? In the audit mode ?
    I think DPInst require the hardware to be present in order to work, no ?
    What if you want to install drivers for 7-10 different machine type in your image ?
    Thank you Thomas.
    Simply put, you call dpinst on first login after the image is deployed on the workstation by adding the following to sysprep unattend xml:
    <FirstLogonCommands>
    <SynchronousCommand wcm:action="add">
    <CommandLine>c:\drivers\dpinst.exe /path C:\drivers\pnp</CommandLine>
    <Order>1</Order>
    <RequiresUserInput>false</RequiresUserInput>
    </SynchronousCommand>
    and dpinst xml should look something like this:
    <?xml version="1.0" ?>
    <dpinst>
    <search>
    <subDirectory>*</subDirectory>
    </search>
    <legacyMode/>
    <quietInstall/>
    <suppressWizard/>
    <scanHardware/>
    </dpinst>
    You could add all the drivers to the base image or then use addon images for specific workstations models that places the workstation specific driver into: C:\drivers\pnp.
    Thomas

Maybe you are looking for