Deployment plan cookie-name not applying

I have a ear containing multiple wars. The EAR has a weblogic-application.xml containing:
<?xml version="1.0" encoding="UTF-8"?>
<weblogic-application xmlns="http://www.bea.com/ns/weblogic/90" xmlns:j2ee="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.bea.com/ns/weblogic/90 http://www.bea.com/ns/weblogic/920/weblogic-application.xsd">
<application-param>
<param-name>webapp.encoding.default</param-name>
<param-value>UTF-8</param-value>
</application-param>
<session-descriptor id="ID000193">
<cookie-name>ZSESSIONID</cookie-name>
<timeout-secs>900</timeout-secs>
<id-length>14</id-length>
<sharing-enabled>true</sharing-enabled>
<url-rewriting-enabled>false</url-rewriting-enabled>
</session-descriptor>
</weblogic-application>
That is the only place the cookie-name ZSESSIONID is mentioned in any config file in the ear.
I have a deployment plan that has in part:
<deployment-plan xmlns="http://www.bea.com/ns/weblogic/90" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.bea.com/ns/weblogic/90 http://www.bea.com/ns/weblogic/90/weblogic-deployment-plan.xsd" global
-variables="false">
<application-name>myapp.ear</application-name>
<variable-definition>
<variable>
<name>SessionDescriptor_CookieName_125796842519611</name>
<value>XSESSIONID</value>
</variable>
</variable-definition>
<module-override>
<module-name>myapp.ear</module-name>
<module-type>ear</module-type>
<module-descriptor external="false">
<root-element>weblogic-application</root-element>
<uri>META-INF/weblogic-application.xml</uri>
<variable-assignment>
<name>SessionDescriptor_CookieName_125796842519611</name>
<xpath>/weblogic-application/session-descriptor/cookie-name</xpath>
<operation>replace</operation>
</variable-assignment>
</module-descriptor>
<module-descriptor external="false">
<root-element>application</root-element>
<uri>META-INF/application.xml</uri>
</module-descriptor>
</module-override>
The change is not having any effect. I know that the plan is being applied since I see "References were found in deployment plan for module ..." in my startup and if I intentionally syntax error the file it fails to launch. This is Weblogic 10.0 MP1 / java 1.5. Any suggestions on how to troubleshoot this or what might cause it?
Edited by: jhmartin on Dec 4, 2009 11:48 AM

Hi,
I have developed a Simple TestCase with Step By Step Instructions It's Working fine for me in WLS-10.3. Please let me know if you are following any thing else...
http://jaysensharma.wordpress.com/2009/12/16/updating-cookiename-using-plan-xml/
Thanks
Jay SenSharma
http://jaysensharma.wordpress.com (Wonders of WebLogic Are Here)
Edited by: Jay SenSharma on Dec 16, 2009 1:23 PM

Similar Messages

  • How do I change the context-root of a web app with a deployment plan?

    I've been trying to figure this out for several hours.
    I'm deploying a .ear file which sets the context root for the single web application it deploys in its application.xml deployment descriptor:
    <application>
    <display-name>MyApp</display-name>
    <module>
    <web>
    <web-uri>MyAppViewControler.war</web-uri>
    <context-root>MyApp</context-root>
    </web>
    </module>
    </application>
    I want to change the context-root from /MyApp to something else when deploying the ear file. It seemed to me that using a deployment plan was the way to do this. But when I use this plan:
    <deployment-plan>
    <application-name>MyApp<application-name>
    <variable-definition>
    <variable>
    <name>NEWCONTEXTROOT</name>
    <value>foobar</value>
    </variable>
    </variable-definition>
    <module-override>
    <module-name>MyApp</module-name>
    <module-type>ear</module-type>
    <module-descriptor external="false">
    <root-element>application</root-element>
    <uri>META-INF/application.xml</uri>
    <variable-assignment>
    <name>NEWCONTEXTROOT</name>
    <xpath>/application/module/web/context-root</xpath>
    </variable-assignment>
    </module-descriptor>
    </module-override>
    </deployment-plan>
    I get an error:
    weblogic.descriptor.DescriptorException: VALIDATION PROBLEMS WERE FOUND
    /bea/user_projects/domains/devod1/nullplan.xml:0: problem: cvc-complex-type.2.4a: Expected element 'web-uri@http://java.sun.com/xml/ns/javaee' instead of 'context-root@http://java.sun.com/xml/ns/javaee' here in element web@http://java.sun.com/xml/ns/javaee:<nullplan.xml>
    I looked at http://e-docs.bea.com/wls/docs103/pdf/deployment.pdf which says:
    "You cannot use a deployment plan to change the context-root in an application.xml
    file. However, if an application is deployed as a library, you can either change the
    context-root through an weblogic-application.xml file or use the deployment plan
    to change the context-root in an weblogic-application.xml file."
    I don't understand what this means. I'm not deploying my application as a library.
    Does anyone know how to change the context-root for an application?
    Any help would be greatly appreciated!

    Hi James,
    I am quite new to Welogic if i am wrong please correct me.I have re-deployed my application (.war) with this Plan.xml
    &lt;?xml version='1.0' encoding='UTF-8'?&gt;
    &lt;deployment-plan xmlns="http://www.bea.com/ns/weblogic/deployment-plan" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.bea.com/ns/weblogic/deployment-plan http://www.bea.com/ns/weblogic/deployment-plan/1.0/deployment-plan.xsd" global-variables="false"&gt;
    &lt;application-name&gt;BrowserR08.003&lt;/application-name&gt;
    *&lt;variable-definition&gt;*
    * &lt;variable&gt;*
    * &lt;name&gt;CONTEXTROOT&lt;/name&gt;*
    * &lt;value&gt;BrowserWeb/servlet/BrowserServlet&lt;/value&gt;*
    * &lt;/variable&gt;*
    * &lt;/variable-definition&gt;*
    &lt;module-override&gt;
    &lt;module-name&gt;BrowserWeb.war&lt;/module-name&gt;
    &lt;module-type&gt;war&lt;/module-type&gt;
    &lt;module-descriptor external="true"&gt;
    &lt;root-element&gt;weblogic-web-app&lt;/root-element&gt;
    &lt;uri&gt;WEB-INF/weblogic.xml&lt;/uri&gt;
    &lt;hash-code&gt;1231953167814&lt;/hash-code&gt;
    *&lt;variable-assignment&gt;*
    * &lt;name&gt;CONTEXTROOT&lt;/name&gt;*
    * &lt;xpath&gt;/weblogic-web-app/context-root&lt;/xpath&gt;*
    * &lt;operation&gt;add&lt;/operation&gt;*
    * &lt;/variable-assignment&gt;*
    &lt;/module-descriptor&gt;
    &lt;module-descriptor external="false"&gt;
    &lt;root-element&gt;web-app&lt;/root-element&gt;
    &lt;uri&gt;WEB-INF/web.xml&lt;/uri&gt;
    &lt;/module-descriptor&gt;
    &lt;module-descriptor external="true"&gt;
    &lt;root-element&gt;wldf-resource&lt;/root-element&gt;
    &lt;uri&gt;META-INF/weblogic-diagnostics.xml&lt;/uri&gt;
    &lt;/module-descriptor&gt;
    &lt;/module-override&gt;
    &lt;config-root&gt;/export/home1/tecapp/BrowserR08.003/plan&lt;/config-root&gt;
    &lt;/deployment-plan&gt;
    I do not know wether i will require the other module descriptor definition in this Plzn.xml. Now when I go to following link.
    Deployments --&gt; MyApp --&gt; Testing
    It gives me following url as a test page:
    http://localhost:7001/BrowserWeb/servlet/BrowserServlet
    as soon as i click on to the above link it redirects me to following.
    http://localhost:7001/BrowserWeb/servlet/BrowserServlet/servlet/BrowserServlet
    Same if i remove these context-root part my normal Testing menu shows me following link as my webapp access path
    http://localhost:7001/BrowserWeb &lt;-- My war file name is BrowserWeb.war so it is default name of my deployed application if i am not wrong
    and as soon as i click on above link it redirects me to the following one.
    http://localhost:7001/BrowserWeb/servlet/BrowserServlet
    It means application server know that my full web access page is with '*servlet/BrowserServlet*' because its adding it in both the cases.
    What I want is a constant URL whcih does not change?
    Hope this helps :)

  • Weblogic deployment plan will not override variables (Weblogic 10.3.5).

    I am having some trouble trying to adjust the deployment settings of our application in weblogic. I feel what I'm trying to do ought to be quite simple, but it's not working as expected.
    I am just trying to override the context-root in weblogic.xml and the JNDI name for the data source, so these can both be configured at deployment time.
    I have removed the application.xml from the ear file, so that shouldn't be affecting the overrides.
    What I have so far:
    weblogic.xml:
    <?xml version='1.0' encoding='UTF-8'?>
    <weblogic-web-app xmlns="http://xmlns.oracle.com/weblogic/weblogic-web-app" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.oracle.com/weblogic/weblogic-web-app http://xmlns.oracle.com/weblogic/weblogic-web-app/1.2/weblogic-web-app.xsd">
    <context-root>mosaic</context-root>
    <resource-description>
    <res-ref-name>jdbc/LogicalDS</res-ref-name>
    <jndi-name>LogicalDS</jndi-name>
    </resource-description>
    web.xml
    <?xml version='1.0' encoding='UTF-8'?>
    <web-app xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <resource-ref>
    <description>A logical reference to the datasource - mapped in deployment plan</description>
    <res-ref-name>jdbc/LogicalDS</res-ref-name>
    <res-type>javax.sql.DataSource</res-type>
    <res-auth>Container</res-auth>
    </resource-ref>
    plan.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <wls:deployment-plan xmlns:wls="http://xmlns.oracle.com/weblogic/deployment-plan" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.oracle.com/weblogic/deployment-plan http://xmlns.oracle.com/weblogic/deployment-plan/1.0/deployment-plan.xsd http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/j2ee_1_4.xsd" global-variables="true">
    <!--weblogic-version:10.3.5-->
    <wls:application-name>mosaic.ear</wls:application-name>
    <wls:variable-definition>
    <wls:variable>
    <wls:name>datasource_name</wls:name>
    <wls:value xsi:nil="true"></wls:value>
    <wls:description>The name of the datasource to map to the mosaic application</wls:description>
    </wls:variable>
    <wls:variable>
    <wls:name>new_context_root</wls:name>
    <wls:value xsi:nil="true"></wls:value>
    <wls:description>URL to deploy Mosaic at</wls:description>
    </wls:variable>
    </wls:variable-definition>
    <wls:module-override>
    <wls:module-name>mosaic.war</wls:module-name>
    <wls:module-type>war</wls:module-type>
    <wls:module-descriptor>
    <wls:root-element>weblogic-web-app</wls:root-element>
    <wls:uri>WEB-INF/weblogic.xml</wls:uri>
    <wls:variable-assignment>
    <wls:name>new_context_root</wls:name>
    <wls:xpath>/weblogic-web-app/context-root</wls:xpath>
    <wls:operation>replace</wls:operation>
    </wls:variable-assignment>
    <wls:variable-assignment>
    <wls:description>Data source for mosaic application</wls:description>
    <wls:name>datasource_name</wls:name>
    <wls:xpath>/weblogic-web-app/resource-env-description/resource-env-ref-name</wls:xpath>
    <wls:operation>replace</wls:operation>
    </wls:variable-assignment>
    <wls:variable-assignment>
    <wls:name>datasource_name</wls:name>
    <wls:xpath>/weblogic-web-app/resource-description/[res-ref-name="jdbc/LogicalDS"]/jndi-name</wls:xpath>
    <wls:operation>replace</wls:operation>
    </wls:variable-assignment>
    </wls:module-descriptor>
    </wls:module-override>
    </wls:deployment-plan>
    Nothing happens when I use the deployment plan, and neither of the variables appear under the Deployment Plan configuration screens in the admin console. From what I understand, I should at least be asked for these variables, since I have specified that they are null in the deployment plan.
    When I use WLST to browse the tree, I find that the runtime configuration just stays as the values in the deployment descriptors.
    I have verified the deployment plan is being used in the general tab of the admin console.
    Can anyone help me find out what I am doing wrong here? If I don't create a data source called LogicalDS, I get errors about this, suggesting it is not correctly overriding. I am puzzled to why I do not see any variables to specify though..

    The documentation implies that this is not the case - see:
    http://docs.oracle.com/cd/E24329_01/web.1211/e24443/export.htm#autoId13
    'Assigning Null Variables to Require Administrator Input'.
    However, require administrator input where? My thoughts were that this option would appear in the admin console under 'deployment plan'. However, although I have specified resource dependencies in the deployment descriptors, and the plan, nothing appears under 'resource dependencies' for the application.
    Is the only way to change the context-root deployment URL by actually manually editing an XML file?
    To me that seems primitive and will cause us support issues when distributing our application - is there any other way I can enable the ability to specify the data source name and context-root through the web console prior to/during deployment?
    Edited by: user12032953 on 11-Jun-2012 07:20

  • Computer name and OU not applying

    I am not really sure why this no longer is taking effect, but in the past, we start an image, we get the option to Name the computer in the Deployment Wizard. Then it will image the computer, use that name we put in, and also place it in the correct OU.
    My recent images are not taking either of these. They will image, sit at a screen to name the computer again, and place the computer in the Computers OU instead of what I tell it to in Unattend.xml.
    Is there a reason somebody can think of why this would be occuring (both the name not taking, and the OU not being applied)?
    Thanks

    <?xml version="1.0" encoding="utf-8"?>
    <unattend xmlns="urn:schemas-microsoft-com:unattend">
        <servicing>
            <package action="configure">
                <assemblyIdentity name="Microsoft-Windows-Foundation-Package" version="6.1.7601.17514" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language=""
    />
                <selection name="InboxGames" state="true" />
                <selection name="Solitaire" state="true" />
                <selection name="SpiderSolitaire" state="true" />
                <selection name="Minesweeper" state="true" />
                <selection name="FreeCell" state="true" />
                <selection name="Chess" state="true" />
                <selection name="MediaCenter" state="false" />
                <selection name="TelnetClient" state="true" />
            </package>
        </servicing>
        <settings pass="windowsPE">
            <component name="Microsoft-Windows-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State">
                <ImageInstall>
                    <OSImage>
                        <WillShowUI>OnError</WillShowUI>
                        <InstallTo>
                            <DiskID>0</DiskID>
                            <PartitionID>1</PartitionID>
                        </InstallTo>
                        <InstallFrom>
                            <Path>.\Operating Systems\Win7_SP1_x64_May_2014\Win7_SP1_x64_2014.wim</Path>
                            <MetaData>
                                <Key>/image/index</Key>
                                <Value>1</Value>
                            </MetaData>
                        </InstallFrom>
                    </OSImage>
                </ImageInstall>
                <UpgradeData>
                    <Upgrade>false</Upgrade>
                </UpgradeData>
                <Display>
                    <ColorDepth>16</ColorDepth>
                    <HorizontalResolution>1024</HorizontalResolution>
                    <RefreshRate>60</RefreshRate>
                    <VerticalResolution>768</VerticalResolution>
                </Display>
                <ComplianceCheck>
                    <DisplayReport>OnError</DisplayReport>
                </ComplianceCheck>
                <UserData>
                    <AcceptEula>true</AcceptEula>
                    <ProductKey>
                        <Key></Key>
                    </ProductKey>
                </UserData>
            </component>
            <component name="Microsoft-Windows-International-Core-WinPE" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <SetupUILanguage>
                    <UILanguage>en-US</UILanguage>
                </SetupUILanguage>
                <InputLocale>0409:00000409</InputLocale>
                <SystemLocale>en-US</SystemLocale>
                <UILanguage>en-US</UILanguage>
                <UserLocale>en-US</UserLocale>
            </component>
        </settings>
        <settings pass="generalize">
            <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <DoNotCleanTaskBar>true</DoNotCleanTaskBar>
            </component>
        </settings>
        <settings pass="specialize">
            <component name="Microsoft-Windows-UnattendedJoin" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State">
                <Identification>
                    <Credentials>
                        <Username>*****</Username>
                        <Domain>*****</Domain>
                        <Password>*****</Password>
                    </Credentials>
                    <JoinDomain>*****</JoinDomain>
                    <JoinWorkgroup></JoinWorkgroup>
                    <MachineObjectOU>**************>
                </Identification>
            </component>
            <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State">
                <ComputerName></ComputerName>
                <ProductKey></ProductKey>
                <RegisteredOrganization>***************</RegisteredOrganization>
                <RegisteredOwner>***************</RegisteredOwner>
                <TimeZone>Central Standard Time</TimeZone>
                <DoNotCleanTaskBar>true</DoNotCleanTaskBar>
                <DisableAutoDaylightTimeSet>false</DisableAutoDaylightTimeSet>
            </component>
            <component name="Microsoft-Windows-IE-InternetExplorer" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <Home_Page>**********</Home_Page>
                <!-- <IEWelcomeMsg>false</IEWelcomeMsg> -->
                <DisableFirstRunWizard>true</DisableFirstRunWizard>
                <SuggestedSitesEnabled>false</SuggestedSitesEnabled>
            </component>
            <component name="Microsoft-Windows-Deployment" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <RunSynchronous>
                    <RunSynchronousCommand wcm:action="add">
                        <Description>EnableAdmin</Description>
                        <Order>1</Order>
                        <Path>cmd /c net user Administrator /active:yes</Path>
                    </RunSynchronousCommand>
                    <RunSynchronousCommand wcm:action="add">
                        <Description>EnableAdmin_ploc</Description>
                        <Order>2</Order>
                        <Path>cmd /c net user Administrator_ploc /active:yes</Path>
                    </RunSynchronousCommand>
                    <RunSynchronousCommand wcm:action="add">
                        <Description>UnfilterAdministratorToken</Description>
                        <Order>3</Order>
                        <Path>cmd /c reg add HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System /v FilterAdministratorToken /t REG_DWORD /d 0 /f</Path>
                    </RunSynchronousCommand>
                </RunSynchronous>
            </component>
            <component name="Microsoft-Windows-International-Core" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <InputLocale>0409:00000409</InputLocale>
                <SystemLocale>en-US</SystemLocale>
                <UILanguage>en-US</UILanguage>
                <UserLocale>en-US</UserLocale>
            </component>
            <component name="Microsoft-Windows-TapiSetup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <TapiConfigured>0</TapiConfigured>
                <TapiUnattendLocation>
                    <AreaCode>""</AreaCode>
                    <CountryOrRegion>1</CountryOrRegion>
                    <LongDistanceAccess>9</LongDistanceAccess>
                    <OutsideAccess>9</OutsideAccess>
                    <PulseOrToneDialing>1</PulseOrToneDialing>
                    <DisableCallWaiting>""</DisableCallWaiting>
                    <InternationalCarrierCode>""</InternationalCarrierCode>
                    <LongDistanceCarrierCode>""</LongDistanceCarrierCode>
                    <Name>Default</Name>
                </TapiUnattendLocation>
            </component>
            <component name="Microsoft-Windows-SystemRestore-Main" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <DisableSR>1</DisableSR>
            </component>
            <component name="Microsoft-Windows-DNS-Client" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <DNSSuffixSearchOrder>
                    <DomainName wcm:action="add" wcm:keyValue="1">********</DomainName>
                </DNSSuffixSearchOrder>
            </component>
        </settings>
        <settings pass="oobeSystem">
            <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State">
                <UserAccounts>
                    <AdministratorPassword>
                        <Value>MgAwADEAMABEACEAbABsACEAZwBAAGYAQQBkAG0AaQBuAGkAcwB0AHIAYQB0AG8AcgBQAGEAcwBzAHcAbwByAGQA</Value>
                        <PlainText>false</PlainText>
                    </AdministratorPassword>
                    <LocalAccounts>
                        <LocalAccount wcm:action="add">
                            <Password>
                                <Value>QAB0AGgAbABlAHQAIQBjAHMAMgAwADEAMABQAGEAcwBzAHcAbwByAGQA</Value>
                                <PlainText>false</PlainText>
                            </Password>
                            <Description>*******</Description>
                            <DisplayName>*********</DisplayName>
                            <Group>Administrators</Group>
                            <Name>******</Name>
                        </LocalAccount>
                    </LocalAccounts>
                </UserAccounts>
                <AutoLogon>
                    <Enabled>true</Enabled>
                    <Username>Administrator</Username>
                    <Domain>.</Domain>
                    <Password>
                        <Value>MgAwADEAMABEACEAbABsACEAZwBAAGYAUABhAHMAcwB3AG8AcgBkAA==</Value>
                        <PlainText>false</PlainText>
                    </Password>
                    <LogonCount>999</LogonCount>
                </AutoLogon>
                <Display>
                    <ColorDepth>32</ColorDepth>
                    <HorizontalResolution>1280</HorizontalResolution>
                    <RefreshRate>60</RefreshRate>
                    <VerticalResolution>1024</VerticalResolution>
                </Display>
                <FirstLogonCommands>
                    <SynchronousCommand wcm:action="add">
                        <CommandLine>cscript.exe C:\MININT\Scripts\LiteTouch.wsf /start</CommandLine>
                        <Description>Lite Touch new OS</Description>
                        <Order>1</Order>
                    </SynchronousCommand>
                    <SynchronousCommand wcm:action="add">
                        <CommandLine>cscript.exe D:\MININT\Scripts\LiteTouch.wsf /start</CommandLine>
                        <Description>Lite Touch new OS</Description>
                        <Order>2</Order>
                    </SynchronousCommand>
                    <SynchronousCommand wcm:action="add">
                        <CommandLine>cscript.exe E:\MININT\Scripts\LiteTouch.wsf /start</CommandLine>
                        <Description>Lite Touch new OS</Description>
                        <Order>3</Order>
                    </SynchronousCommand>
                    <SynchronousCommand wcm:action="add">
                        <CommandLine>cscript.exe F:\MININT\Scripts\LiteTouch.wsf /start</CommandLine>
                        <Description>Lite Touch new OS</Description>
                        <Order>4</Order>
                    </SynchronousCommand>
                </FirstLogonCommands>
                <OOBE>
                    <HideEULAPage>true</HideEULAPage>
                    <NetworkLocation>Work</NetworkLocation>
                    <ProtectYourPC>1</ProtectYourPC>
                    <SkipUserOOBE>true</SkipUserOOBE>
                </OOBE>
                <RegisteredOrganization>**********</RegisteredOrganization>
                <RegisteredOwner>************</RegisteredOwner>
                <TimeZone>Central Standard Time</TimeZone>
                <DoNotCleanTaskBar>true</DoNotCleanTaskBar>
                <ShowWindowsLive>false</ShowWindowsLive>
                <OEMInformation>
                    <SupportHours>8:00am - 5:00pm</SupportHours>
                    <SupportPhone>5-6146</SupportPhone>
                    <SupportURL>****************</SupportURL>
                </OEMInformation>
                <WindowsFeatures>
                    <ShowInternetExplorer>true</ShowInternetExplorer>
                    <ShowMediaCenter>false</ShowMediaCenter>
                    <ShowWindowsMail>false</ShowWindowsMail>
                    <ShowWindowsMediaPlayer>false</ShowWindowsMediaPlayer>
                </WindowsFeatures>
            </component>
            <component name="Microsoft-Windows-International-Core" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <InputLocale>0409:00000409</InputLocale>
                <SystemLocale>en-US</SystemLocale>
                <UILanguage>en-US</UILanguage>
                <UserLocale>en-US</UserLocale>
            </component>
        </settings>
        <settings pass="offlineServicing">
            <component name="Microsoft-Windows-PnpCustomizationsNonWinPE" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <DriverPaths>
                    <PathAndCredentials wcm:keyValue="1" wcm:action="add">
                        <Path>\Drivers</Path>
                    </PathAndCredentials>
                </DriverPaths>
            </component>
        </settings>
        <cpi:offlineImage cpi:source="catalog://wds/e$/deploymentshare/operating systems/Win7_SP1_x64_May_2014/Win7_SP1_x64_2014_CAP-X64DDrive.clg" xmlns:cpi="urn:schemas-microsoft-com:cpi" />
    </unattend>

  • Weblogic 10.3 - changing jndi-name with deployment plan fails

    I was trying to alter the global jndi name of a stateless ejb by using a deployment plan, but can't get it to work.
    - to be able to replace it later on with a deployment plan, I specify a jndi-name in weblogic-ejb-jar.xml (so I do not use the @mappedName)
    e.g.
    <?xml version="1.0" encoding="UTF-8"?>
    <weblogic-ejb-jar xmlns="http://www.bea.com/ns/weblogic/10.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.bea.com/ns/weblogic/10.0 http://www.bea.com/ns/weblogic/10.0/weblogic-ejb-jar.xsd">
         <weblogic-enterprise-bean>
              <ejb-name>ExampleService</ejb-name>
              <enable-call-by-reference>true</enable-call-by-reference>
              <stateless-session-descriptor>
                   <business-interface-jndi-name-map>
                        <business-remote>com.example.ExampleServiceRemote</business-remote>
                        <jndi-name>com.example.ExampleService#com.example.ExampleServiceRemote</jndi-name>
                   </business-interface-jndi-name-map>
              </stateless-session-descriptor>
         </weblogic-enterprise-bean>
    </weblogic-ejb-jar>
    - during deployment I specify a deploymentPlan with following content:
    <variable-definition>
    <variable>
    <name>ejb_jndiname_ExampleService</name>
    <value>ExampleService</value>
    </variable>
    </variable-definition>
    <module-override>
    <module-name>ExampleService.jar</module-name>
    <module-type>ejb</module-type>
    <module-descriptor external="true">
    <root-element>weblogic-ejb-jar</root-element>
    <uri>meta-inf/weblogic-ejb-jar.xml</uri>
    <variable-assignment>
    <name>ejb_jndiname_ExampleService</name>
    <xpath>/weblogic-ejb-jar/weblogic-enterprise-bean/\[ejb-name="ExampleService"\]/stateless-session-descriptor/business-interface-jndi-name-map/\[business-remote="com.example.ExampleServiceRemote"\]/jndi-name</xpath>
    <operation>replace</operation>
    </variable-assignment>
    </module-descriptor>
    </module-override>
    - after deployment, the original jndi-name ("com.example.ExampleService#com.example.ExampleServiceRemote") is active in the jndi tree instead of "ExampleService"
    p.s. When I specified the jndi-name in weblogic-ejb.jar.xml as
         <weblogic-enterprise-bean>
              <ejb-name>ExampleService</ejb-name>
              <enable-call-by-reference>true</enable-call-by-reference>
              <jndi-name>com.example.ExampleService#com.example.ExampleServiceRemote</jndi-name>
         </weblogic-enterprise-bean>
    and the replace in the deployment plan as
    <variable-assignment>
    <name>ejb_jndiname_SecurityService</name>
    <xpath>/weblogic-ejb-jar/weblogic-enterprise-bean/\[ejb-name="ExampleService"\]/jndi-name</xpath>
    <operation>replace</operation>
    </variable-assignment>
    the replacement does work (checked by verifying the jndi-name within the deployed ear using the console), but the problem then is that the jndi-name does not appear in the jndi tree (that's why I tried the <business-interface-jndi-name-map>)
    Any ideas?
    Kind regards,
    Ben
    Edited by: user11230128 on 4-jun-2009 7:42

    After a Service Request and some trial and error, I got it to work after adding the following part in each 'jar module override' section of the deployment plan:
    <module-descriptor external="false">
    <root-element>ejb-jar</root-element>
    <uri>META-INF/ejb-jar.xml</uri>
    </module-descriptor>
    Apparantly this is needed even though there is no ejb-jar.xml in the jar.
    So the deployment plan has to be something like:
    <variable-definition>
    <variable>
    <name>ejb_jndiname_ExampleService</name>
    <value>ExampleService</value>
    </variable>
    </variable-definition>
    <module-override>
    <module-name>ExampleService.jar</module-name>
    <module-type>ejb</module-type>
    <module-descriptor external="false">
    <root-element>weblogic-ejb-jar</root-element>
    <uri>meta-inf/weblogic-ejb-jar.xml</uri>
    <variable-assignment>
    <name>ejb_jndiname_ExampleService</name>
    <xpath>/weblogic-ejb-jar/weblogic-enterprise-bean/[ejb-name="ExampleService"]/stateless-session-descriptor/business-interface-jndi-name-map/[business-remote="com.example.ExampleServiceRemote"]/jndi-name</xpath>
    <operation>replace</operation>
    </variable-assignment>
    </module-descriptor>
    <module-descriptor external="false">
    <root-element>ejb-jar</root-element>
    <uri>META-INF/ejb-jar.xml</uri>
    </module-descriptor>
    </module-override>
    ...

  • Replacing web.xml values with a deployment plan.  Not working on WL 10.3.2

    Hi All-
    I am trying to replace a value from web.xml with one in a weblogic deployment plan. I deployed the application on WL 10.3.2 and used the deployment plan below. No matter what I do it doesn't seem to want to take the value.
    web.xml:
    <?xml version = '1.0' encoding = 'windows-1252'?>
    <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">
    <web-app>
    <context-param>
    <param-name>TokenGroup</param-name>
    <param-value>oldvalue</param-value>
    </context-param>
    </web-app>
    Deployment Plan:
    <?xml version='1.0' encoding='UTF-8'?>
    <deployment-plan xmlns="http://xmlns.oracle.com/weblogic/deployment-plan"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://xmlns.oracle.com/weblogic/deployment-plan http://xmlns.oracle.com/weblogic/deployment-plan/1.0/deployment-plan.xsd"
    global-variables="false">
    <application-name>APPName</application-name>
    <variable-definition>
    <variable>
    <name>TokenGroup</name>
    <value>Key123456</value>
    </variable>
    </variable-definition>
    <module-override>
    <module-name>APPName.war</module-name>
    <module-type>war</module-type>
    <module-descriptor external="false">
    <root-element>web-app</root-element>
    <uri>WEB-INF/web.xml</uri>
    <variable-assignment>
    <name>TokenGroup</name>
    <xpath>/web-app/context-param/[param-name="TokenGroup"]/param-value</xpath>
    <operation>replace</operation>
    </variable-assignment>
    </module-descriptor>
    </module-override>
    </deployment-plan>
    I've also tried other formats for the xpath such as:
    /web-app/context-param/{param-name="TokenGroup"}/param-value
    /web-app/context-param[param-name="TokenGroup"]/param-value
    Any ideas why this doesnt work?
    Thanks,
    Joe

    "web.xml"
    <?xml version='1.0' encoding='WINDOWS-1252'?>
    <web-app xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <context-param>
    <param-name>name</param-name>
    <param-value>Joe</param-value>
    </context-param>
    <context-param>
    <param-name>password</param-name>
    <param-value>password</param-value>
    </context-param>
    <servlet>
    <servlet-name>ParameterServlet</servlet-name>
    <servlet-class>ParameterServlet</servlet-class>
    </servlet>
    <servlet-mapping>
    <servlet-name>ParameterServlet</servlet-name>
    <url-pattern>/ParameterServlet</url-pattern>
    </servlet-mapping>
    </web-app>
    ParameterServlet
    import java.io.IOException;
    import javax.servlet.ServletConfig;
    import javax.servlet.ServletContext;
    import javax.servlet.ServletException;
    import javax.servlet.ServletOutputStream;
    import javax.servlet.http.HttpServlet;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    public class ParameterServlet extends HttpServlet {
    private String dbName = "";
    private String dbPassword = "";
    public void init(ServletConfig config) throws ServletException {
    super.init(config);
    ServletContext context = getServletContext();
    dbName = context.getInitParameter("name");
    dbPassword = context.getInitParameter("password");
    public void doGet(HttpServletRequest req, HttpServletResponse res)
    throws IOException {
    ServletOutputStream out = res.getOutputStream();
    res.setContentType("text/html");
    out.println("<html><head><title>Basic Servlet</title></head>");
    out.println("<body>Database username is <b>" + dbName);
    out.println("</b><br>Database password is <b>" + dbPassword + "</b>");
    out.println("</body></html>");
    "Plan.xml"
    <?xml version='1.0' encoding='UTF-8'?>
    <deployment-plan xmlns="http://xmlns.oracle.com/weblogic/deployment-plan" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.oracle.com/weblogic/deployment-plan http://xmlns.oracle.com/weblogic/deployment-plan/1.0/deployment-plan.xsd" global-variables="false">
    <application-name>virtual</application-name>
    <variable-definition>
    <variable>
         <name>name</name>
         <value>akshay1</value>
         </variable>
         <variable>
         <name>password</name>
         <value>koul1</value>
         </variable>
    </variable-definition>
    <module-override>
    <module-name>virtual</module-name>
    <module-type>war</module-type>
    <module-descriptor external="false">
    <root-element>web-app</root-element>
    <uri>WEB-INF/web.xml</uri>
         <variable-assignment>
              <name>name</name>
              <xpath>/web-app/context-param/[param-name="name"]/param-value</xpath>
              <operation>replace</operation>
         </variable-assignment>
         <variable-assignment>
              <name>password</name>
              <xpath>/web-app/context-param/[param-name="password"]/param-value</xpath>
              <operation>replace</operation>
         </variable-assignment>
    </module-descriptor>
    </module-override>
    <config-root>C:\DOCUME~1\user\LOCALS~1\Temp\user\.\config\deployments\virtual\plan</config-root>
    </deployment-plan>
    It works for me... I think your "web.xml" is causing the issue.
    Try replacing
    <?xml version = '1.0' encoding = 'windows-1252'?>
    <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">
    <web-app>
    with
    <?xml version='1.0' encoding='WINDOWS-1252'?>
    <web-app xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    Hope this helps.
    -Akshay

  • How can I remove the cookies name from the sqlite file? The cookie names and content are to be out of sync and cookies can not be removed.

    Under Options-Privacy-Show Cookies I have a long list of entries. Remove Cookies or Remove All does not clear any cookie. Under Firefox profiles, I renamed the cookies.sqlite file and restarted Firefox. New cookies.sqlite file was created and the file size was reduced. Cookie content appears to be removed (i.e. site settings/logon info removed) but repeating the Options/Privacy/Show Cookies step still displays the older cookie names. I have tried all the different settings of clearing upon exit, clear recent history , etc but the result is the same.
    The cookie name can not be deleted. Selecting a cookie and trying to Remove Cookie just causes the highlighted selection to move to the next cookie entry. Haven't used a sqlite manager to examine the file content so I'm unsure what is in the sqlite file.

    Unfortunately, the option to remove that feature is not available.  
    IF YOU FOUND OUR POST USEFUL THEN PLEASE GIVE "KUDOS". IF IT HELPED TO FIX YOUR ISSUE PLEASE MARK IT AS A "SOLUTION" TO HELP OTHERS. THANKS!
    ALTERNATIVE SKYPE DOWNLOAD LINKS | HOW TO RECORD SKYPE VIDEO CALLS | HOW TO HANDLE SUSPICIOS CALLS AND MESSAGES
    SEE MORE TIPS, TRICKS, TUTORIALS AND UPDATES in
    | skypefordummies.blogspot.com | 

  • Graph Title not consistent with Planning Book Name

    Hi Gurus,
    We are facing a strange issue in APO DP .
    Whenever we are opening a dataview with graph, graph title is not in synch with the Planning book name.
    This is happening only for certain users(Not all).
    Please advise if we need to adjust any user specific settings.
    Thanks & Regards,
    Rahul

    Hi Rahul,
    Open your planning book, and load the data view
    Once it is done, display the graphic view
    Then click on Switch graphic settings.  Once it is done,
    on the RHS it will display the graphic settings.
    Goto Value axis  >  Title , under caption ---> change
    the title and then press Save Graphic settings
    Regards
    R. Senthil Mareeswaran.

  • Sysprep unattend file not applying when image is captured with wds (no errors)

    So I've been around the block a bit using sysprep and wds.  Recently I've created a reference image with a virtualbox environment using windows 7 x64. I was succesfully able to create a reference image, sysprep it and capture it to the wds server. My
    plan there after was to create driver specific images for each model computer we use here after not having much success using the driver store (another story)
    Any how So I take my reference image and deploy it to a new computer... In this case an HP Probook 5310m.  Install any missing drivers and Sysprep it with the following command.  sysprep /generalize /oobe /unattend:unattend.xml /shutdown
    Below is the sysprep file I have been using
    <?xml version="1.0" encoding="utf-8"?>
    <unattend xmlns="urn:schemas-microsoft-com:unattend">
        <settings pass="generalize">
            <component name="Microsoft-Windows-Security-SPP" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <SkipRearm>0</SkipRearm>
            </component>
            <component name="Microsoft-Windows-PnpSysprep" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <DoNotCleanUpNonPresentDevices>true</DoNotCleanUpNonPresentDevices>
                <PersistAllDeviceInstalls>true</PersistAllDeviceInstalls>
            </component>
        </settings>
        <settings pass="specialize">
            <component name="Microsoft-Windows-Security-SPP-UX" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <SkipAutoActivation>true</SkipAutoActivation>
            </component>
            <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <ShowWindowsLive>false</ShowWindowsLive>
                <TimeZone>Eastern Standard Time</TimeZone>
                <CopyProfile>true</CopyProfile>
                <ProductKey>74fdj-7dtw8-q9mp9-ypth8-qb27y</ProductKey>
            </component>
        </settings>
        <settings pass="oobeSystem">
            <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <OEMInformation>
                    <Logo>c:\windows\system32\oemlogo.bmp</Logo>
                    <SupportHours>Regular Business Hrs (Overnight Support Provided)</SupportHours>
                    <SupportURL>url</SupportURL>
                    <SupportPhone>Phone number</SupportPhone>
                </OEMInformation>
                <OOBE>
                    <HideEULAPage>true</HideEULAPage>
                    <NetworkLocation>Work</NetworkLocation>
                    <ProtectYourPC>1</ProtectYourPC>
                    <HideWirelessSetupInOOBE>false</HideWirelessSetupInOOBE>
                </OOBE>
                <UserAccounts>
                    <LocalAccounts>
                        <LocalAccount wcm:action="add">
                            <Password>
                                <Value>TAAxAEQAMwBzAHQAcgBpACEAUABhAHMAcwB3AG8AcgBkAA==</Value>
                                <PlainText>false</PlainText>
                            </Password>
                            <Description>Local Administrator</Description>
                            <DisplayName>Root</DisplayName>
                            <Group>Administrators</Group>
                            <Name>Root</Name>
                        </LocalAccount>
                    </LocalAccounts>
                </UserAccounts>
                <TimeZone>Eastern Standard Time</TimeZone>
                <ShowWindowsLive>false</ShowWindowsLive>
                <FirstLogonCommands>
                    <SynchronousCommand wcm:action="add">
                        <Order>1</Order>
                        <CommandLine>slmgr.vbs /ipk {serial key}</CommandLine>
                    </SynchronousCommand>
                    <SynchronousCommand wcm:action="add">
                        <Order>2</Order>
                        <CommandLine>slmgr.vbs /ato</CommandLine>
                    </SynchronousCommand>
                </FirstLogonCommands>
            </component>
            <component name="Microsoft-Windows-International-Core" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <InputLocale>en-US</InputLocale>
                <SystemLocale>en-US</SystemLocale>
                <UILanguage>en-US</UILanguage>
                <UILanguageFallback>en-US</UILanguageFallback>
                <UserLocale>en-US</UserLocale>
            </component>
        </settings>
        <cpi:offlineImage cpi:source="catalog:v:/sources/install_windows 7 professional.clg" xmlns:cpi="urn:schemas-microsoft-com:cpi" />
    </unattend>
    The machine succesfully syspreps and shuts down. I restart the computer pxe boot and capture the image succesfully.
    Now here comes my problem...
    Upon deploying the above driver specific image.. my sysprep file is not applied.  Nothing from the OOBE wizard answers to the pc logo , or first logon commands are applied ... nothing.. I have gotten no errors during this whole process.  I have
    started to try to read the logs within the panther folder but havent gotten far.
    What is weird to me is that I have tried recreating this image... deploy the reference image... add drivers ... sysprep ...shutdown.  And if I boot normally (without capturing the image) the computer shows all of the sysprep changes..  Only when
    i capture the image does it not apply the changes....
    I'm stumped...
    Any ides?

    Confirm this scenario: You installed Windows, then ran sysprep and used the /unattend switch. Then you captured the image.
    In this scenario there are 2 deployment methods.
    1. If you deploy the image with DISM, the answer file generated by sysprep is detected on first boot and settings are applied. It is the same function as if you ran sysprep and chose to restart.
    2. If you deploy the image using Setup.exe, it does not use the answer file specified by sysprep prior to capturing. I have not looked into *why* this happens, but I suspect that after the image is applied, it replaces the unattend.xml with the generic one.
    If you are using Setup.exe, you need to use its /unattend switch and point to the answer file location. This location cannot be inside of the image. If you are not using setup.exe in a manual method (using WDS) you will need to apply the answer file to the
    install image in the WDS snap-in.

  • MDT 2013: bootstrap.ini not applying username and password for share access

    I customized my bootstrap.ini file to skip the welcome screen, set keyboard locale, and enter a service account username and password for share access.  The welcome screen skip and keyboard locale work beautifully but it's not applying the share username/password/domain
    at all.  
    bootstrap.ini: 
    [Settings]
    Priority=Default
    [Default]
    DeployRoot=\\mydeploymentserver\DeploymentShare$
    UserID=myuserid
    UserDomain=mydomain.com
    UserPassword=mypassword
    KeyboardLocale=en-US
    SkipBDDWelcome=YES
    I verified that the unattend.xml file on the MININT volume during deployment had all of this information populated correctly:
    <?xml version="1.0" encoding="utf-8"?>
    <unattend xmlns="urn:schemas-microsoft-com:unattend">
    <settings pass="windowsPE">
    <component name="Microsoft-Windows-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State">
    <ImageInstall>
    <OSImage>
    <WillShowUI>OnError</WillShowUI>
    <InstallTo>
    <DiskID>0</DiskID>
    <PartitionID>2</PartitionID>
    </InstallTo>
    <InstallFrom>
    <Path>\\mydeploymentserver\deploymentshare$\Operating Systems\Windows 7 x64 with District Software - 06222014\Windows 7 x64 with District Software - 06222014.wim</Path>
    <MetaData>
    <Key>/IMAGE/INDEX</Key>
    <Value>1</Value>
    </MetaData>
    </InstallFrom>
    </OSImage>
    </ImageInstall>
    <Display>
    <ColorDepth>16</ColorDepth>
    <HorizontalResolution>1024</HorizontalResolution>
    <RefreshRate>60</RefreshRate>
    <VerticalResolution>768</VerticalResolution>
    </Display>
    <ComplianceCheck>
    <DisplayReport>OnError</DisplayReport>
    </ComplianceCheck>
    <UserData>
    <AcceptEula>true</AcceptEula>
    </UserData>
    </component>
    <component name="Microsoft-Windows-International-Core-WinPE" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <SetupUILanguage>
    <UILanguage>en-US</UILanguage>
    </SetupUILanguage>
    <InputLocale>0409:00000409</InputLocale>
    <SystemLocale>en-US</SystemLocale>
    <UILanguage>en-US</UILanguage>
    <UserLocale>en-US</UserLocale>
    </component>
    </settings>
    <settings pass="generalize">
    <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <DoNotCleanTaskBar>true</DoNotCleanTaskBar>
    </component>
    </settings>
    <settings pass="specialize">
    <component name="Microsoft-Windows-UnattendedJoin" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State">
    <Identification>
    <Credentials>
    <Username>myusername</Username>
    <Domain>mydomain.com</Domain>
    <Password>mypassword</Password>
    </Credentials>
    <JoinDomain>mydomain.com</JoinDomain>
    </Identification>
    </component>
    <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State">
    <ComputerName>eos-vm-02</ComputerName>
    <RegisteredOrganization>Regional School District 19</RegisteredOrganization>
    <RegisteredOwner>Information Technology</RegisteredOwner>
    <DoNotCleanTaskBar>true</DoNotCleanTaskBar>
    <TimeZone>Eastern Standard Time</TimeZone>
    </component>
    <component name="Microsoft-Windows-IE-InternetExplorer" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <Home_Page>http://www.eosmith.org</Home_Page>
    <DisableWelcomePage>true</DisableWelcomePage>
    <DisableFirstRunWizard>false</DisableFirstRunWizard>
    </component>
    <component name="Microsoft-Windows-Deployment" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <RunSynchronous>
    <RunSynchronousCommand wcm:action="add">
    <Description>EnableAdmin</Description>
    <Order>1</Order>
    <Path>cmd /c net user Administrator /active:yes</Path>
    </RunSynchronousCommand>
    <RunSynchronousCommand wcm:action="add">
    <Description>UnfilterAdministratorToken</Description>
    <Order>2</Order>
    <Path>cmd /c reg add HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System /v FilterAdministratorToken /t REG_DWORD /d 0 /f</Path>
    </RunSynchronousCommand>
    <RunSynchronousCommand wcm:action="add">
    <Description>disable user account page</Description>
    <Order>3</Order>
    <Path>reg add HKLM\Software\Microsoft\Windows\CurrentVersion\Setup\OOBE /v UnattendCreatedUser /t REG_DWORD /d 1 /f</Path>
    </RunSynchronousCommand>
    </RunSynchronous>
    </component>
    <component name="Microsoft-Windows-International-Core" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <InputLocale>en-US</InputLocale>
    <SystemLocale>en-US</SystemLocale>
    <UILanguage>en-US</UILanguage>
    <UserLocale>en-US</UserLocale>
    </component>
    <component name="Microsoft-Windows-TapiSetup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <TapiConfigured>0</TapiConfigured>
    <TapiUnattendLocation>
    <AreaCode>""</AreaCode>
    <CountryOrRegion>1</CountryOrRegion>
    <LongDistanceAccess>9</LongDistanceAccess>
    <OutsideAccess>9</OutsideAccess>
    <PulseOrToneDialing>1</PulseOrToneDialing>
    <DisableCallWaiting>""</DisableCallWaiting>
    <InternationalCarrierCode>""</InternationalCarrierCode>
    <LongDistanceCarrierCode>""</LongDistanceCarrierCode>
    <Name>Default</Name>
    </TapiUnattendLocation>
    </component>
    <component name="Microsoft-Windows-SystemRestore-Main" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <DisableSR>1</DisableSR>
    </component>
    </settings>
    <settings pass="oobeSystem">
    <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State">
    <UserAccounts>
    <AdministratorPassword>
    <Value>administratorpassword</Value>
    <PlainText>true</PlainText>
    </AdministratorPassword>
    </UserAccounts>
    <AutoLogon>
    <Enabled>true</Enabled>
    <Username>Administrator</Username>
    <Domain>.</Domain>
    <Password>
    <Value>administratorpassword</Value>
    <PlainText>true</PlainText>
    </Password>
    <LogonCount>999</LogonCount>
    </AutoLogon>
    <Display>
    <ColorDepth>32</ColorDepth>
    <HorizontalResolution>1024</HorizontalResolution>
    <RefreshRate>60</RefreshRate>
    <VerticalResolution>768</VerticalResolution>
    </Display>
    <FirstLogonCommands>
    <SynchronousCommand wcm:action="add">
    <CommandLine>wscript.exe %SystemDrive%\LTIBootstrap.vbs</CommandLine>
    <Description>Lite Touch new OS</Description>
    <Order>1</Order>
    </SynchronousCommand>
    </FirstLogonCommands>
    <OOBE>
    <HideEULAPage>true</HideEULAPage>
    <NetworkLocation>Work</NetworkLocation>
    <ProtectYourPC>1</ProtectYourPC>
    </OOBE>
    <RegisteredOrganization>Regional School District 19</RegisteredOrganization>
    <RegisteredOwner>Information Technology</RegisteredOwner>
    <TimeZone>Eastern Standard Time</TimeZone>
    </component>
    <component name="Microsoft-Windows-International-Core" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <InputLocale>en-US</InputLocale>
    <SystemLocale>en-US</SystemLocale>
    <UILanguage>en-US</UILanguage>
    <UserLocale>en-US</UserLocale>
    </component>
    </settings>
    <settings pass="offlineServicing">
    <component name="Microsoft-Windows-PnpCustomizationsNonWinPE" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <DriverPaths>
    <PathAndCredentials wcm:keyValue="1" wcm:action="add">
    <Path>\Drivers</Path>
    </PathAndCredentials>
    </DriverPaths>
    </component>
    </settings>
    </unattend>
    ... and the bdd.log file appeared not to read the username and password at all:
    <![LOG[ZTIUtility!GetAllFixedDrives (False)]LOG]!><time="05:03:38.000+000" date="06-23-2014" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[New ZTIDiskPartition : \\MININT-U1TGFAD\root\cimv2:Win32_DiskPartition.DeviceID="Disk #0, Partition #0" \\MININT-U1TGFAD\root\cimv2:Win32_LogicalDisk.DeviceID="C:"]LOG]!><time="05:03:38.000+000" date="06-23-2014" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[New ZTIDisk : \\MININT-U1TGFAD\root\cimv2:Win32_DiskDrive.DeviceID="\\\\.\\PHYSICALDRIVE0"]LOG]!><time="05:03:38.000+000" date="06-23-2014" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[New ZTIDiskPartition : \\MININT-U1TGFAD\root\cimv2:Win32_DiskPartition.DeviceID="Disk #0, Partition #1" \\MININT-U1TGFAD\root\cimv2:Win32_LogicalDisk.DeviceID="D:"]LOG]!><time="05:03:38.000+000" date="06-23-2014" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[New ZTIDisk : \\MININT-U1TGFAD\root\cimv2:Win32_DiskDrive.DeviceID="\\\\.\\PHYSICALDRIVE0"]LOG]!><time="05:03:38.000+000" date="06-23-2014" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[ZTIUtility!GetAllFixedDrives = C: D:]LOG]!><time="05:03:38.000+000" date="06-23-2014" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[Property LogPath is now = D:\MININT\SMSOSD\OSDLOGS]LOG]!><time="05:03:38.000+000" date="06-23-2014" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[Microsoft Deployment Toolkit version: 6.2.5019.0]LOG]!><time="05:03:38.000+000" date="06-23-2014" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[Property Debug is now = FALSE]LOG]!><time="05:03:38.000+000" date="06-23-2014" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[Cleaned up a dirty deployment.]LOG]!><time="05:03:38.000+000" date="06-23-2014" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[ZTIUtility!GetAllFixedDrives (False)]LOG]!><time="05:03:38.000+000" date="06-23-2014" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[New ZTIDiskPartition : \\MININT-U1TGFAD\root\cimv2:Win32_DiskPartition.DeviceID="Disk #0, Partition #0" \\MININT-U1TGFAD\root\cimv2:Win32_LogicalDisk.DeviceID="C:"]LOG]!><time="05:03:38.000+000" date="06-23-2014" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[New ZTIDisk : \\MININT-U1TGFAD\root\cimv2:Win32_DiskDrive.DeviceID="\\\\.\\PHYSICALDRIVE0"]LOG]!><time="05:03:38.000+000" date="06-23-2014" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[New ZTIDiskPartition : \\MININT-U1TGFAD\root\cimv2:Win32_DiskPartition.DeviceID="Disk #0, Partition #1" \\MININT-U1TGFAD\root\cimv2:Win32_LogicalDisk.DeviceID="D:"]LOG]!><time="05:03:38.000+000" date="06-23-2014" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[New ZTIDisk : \\MININT-U1TGFAD\root\cimv2:Win32_DiskDrive.DeviceID="\\\\.\\PHYSICALDRIVE0"]LOG]!><time="05:03:38.000+000" date="06-23-2014" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[ZTIUtility!GetAllFixedDrives = C: D:]LOG]!><time="05:03:38.000+000" date="06-23-2014" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[No task sequence is in progress.]LOG]!><time="05:03:38.000+000" date="06-23-2014" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[New ZTIDisk : \\MININT-U1TGFAD\root\cimv2:Win32_DiskDrive.DeviceID="\\\\.\\PHYSICALDRIVE0"]LOG]!><time="05:03:38.000+000" date="06-23-2014" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[Found Possible OS TargetDisk: \\MININT-U1TGFAD\root\cimv2:Win32_DiskDrive.DeviceID="\\\\.\\PHYSICALDRIVE0"]LOG]!><time="05:03:38.000+000" date="06-23-2014" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[GetPartitions: 2]LOG]!><time="05:03:38.000+000" date="06-23-2014" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[Found Possible OS Target Partition: \\MININT-U1TGFAD\root\cimv2:Win32_DiskPartition.DeviceID="Disk #0, Partition #0"]LOG]!><time="05:03:38.000+000" date="06-23-2014" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[New ZTIDiskPartition : \\MININT-U1TGFAD\root\cimv2:Win32_DiskPartition.DeviceID="Disk #0, Partition #0" \\MININT-U1TGFAD\root\cimv2:Win32_LogicalDisk.DeviceID="C:"]LOG]!><time="05:03:38.000+000" date="06-23-2014" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[Target Partition not big enough: \\MININT-U1TGFAD\root\cimv2:Win32_DiskPartition.DeviceID="Disk #0, Partition #0"]LOG]!><time="05:03:38.000+000" date="06-23-2014" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[Found Possible OS Target Partition: \\MININT-U1TGFAD\root\cimv2:Win32_DiskPartition.DeviceID="Disk #0, Partition #1"]LOG]!><time="05:03:38.000+000" date="06-23-2014" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[New ZTIDiskPartition : \\MININT-U1TGFAD\root\cimv2:Win32_DiskPartition.DeviceID="Disk #0, Partition #1" \\MININT-U1TGFAD\root\cimv2:Win32_LogicalDisk.DeviceID="D:"]LOG]!><time="05:03:38.000+000" date="06-23-2014" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[Found Drive: D:]LOG]!><time="05:03:38.000+000" date="06-23-2014" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[Found FirstPossibleSystemDrive: D:]LOG]!><time="05:03:38.000+000" date="06-23-2014" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[Property SMSTSLocalDataDrive is now = D:]LOG]!><time="05:03:38.000+000" date="06-23-2014" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[Unable to connect to BCDStore.]LOG]!><time="05:03:43.000+000" date="06-23-2014" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[Not running within WinPE or WinRE.]LOG]!><time="05:03:43.000+000" date="06-23-2014" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[Property DeploymentMethod is now = UNC]LOG]!><time="05:03:44.000+000" date="06-23-2014" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[DeploymentMethod = UNC]LOG]!><time="05:03:44.000+000" date="06-23-2014" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[Property DeployRoot is now = X:\Deploy]LOG]!><time="05:03:44.000+000" date="06-23-2014" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[Using a local or mapped drive, no connection is required.]LOG]!><time="05:03:44.000+000" date="06-23-2014" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[DeployRoot = X:\Deploy]LOG]!><time="05:03:44.000+000" date="06-23-2014" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[Property DeployDrive is now = X:]LOG]!><time="05:03:44.000+000" date="06-23-2014" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[DeployDrive = X:]LOG]!><time="05:03:44.000+000" date="06-23-2014" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[Property PHASE is now = PREINSTALL]LOG]!><time="05:03:44.000+000" date="06-23-2014" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[Property DeploymentType is now = NEWCOMPUTER]LOG]!><time="05:03:44.000+000" date="06-23-2014" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[Phase = PREINSTALL]LOG]!><time="05:03:44.000+000" date="06-23-2014" 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="05:03:44.000+000" date="06-23-2014" component="LiteTouch" context="" type="1" thread="" file="LiteTouch">
    <![LOG[Property inifile is now = Bootstrap.ini]LOG]!><time="05:03:45.000+000" date="06-23-2014" component="ZTIGather" context="" type="1" thread="" file="ZTIGather">
    <![LOG[Microsoft Deployment Toolkit version: 6.2.5019.0]LOG]!><time="05:03:45.000+000" date="06-23-2014" component="ZTIGather" context="" type="1" thread="" file="ZTIGather">
    <![LOG[------------------------- Object Initialization -------------------------]LOG]!><time="05:03:45.000+000" date="06-23-2014" component="ZTIGather" context="" type="1" thread="" file="ZTIGather">
    <![LOG[------------------------- Initialization -------------------------]LOG]!><time="05:03:45.000+000" date="06-23-2014" component="ZTIGather" context="" type="1" thread="" file="ZTIGather">
    <![LOG[Synchronizing the environments.]LOG]!><time="05:03:45.000+000" date="06-23-2014" component="ZTIGather" context="" type="1" thread="" file="ZTIGather">
    <![LOG[Property DeployRoot is now = X:\Deploy]LOG]!><time="05:03:45.000+000" date="06-23-2014" component="ZTIGather" context="" type="1" thread="" file="ZTIGather">
    <![LOG[Property DeployDrive is now = X:]LOG]!><time="05:03:45.000+000" date="06-23-2014" component="ZTIGather" context="" type="1" thread="" file="ZTIGather">
    <![LOG[Finished synchronizing the environments.]LOG]!><time="05:03:45.000+000" date="06-23-2014" component="ZTIGather" context="" type="1" thread="" file="ZTIGather">
    <![LOG[Getting OS info]LOG]!><time="05:03:45.000+000" date="06-23-2014" component="ZTIGather" context="" type="1" thread="" file="ZTIGather">
    <![LOG[Property OSCurrentVersion is now = 6.3.9600]LOG]!><time="05:03:45.000+000" date="06-23-2014" component="ZTIGather" context="" type="1" thread="" file="ZTIGather">
    <![LOG[Property OSCurrentBuild is now = 9600]LOG]!><time="05:03:45.000+000" date="06-23-2014" component="ZTIGather" context="" type="1" thread="" file="ZTIGather">
    <![LOG[Property OSVersion is now = WinPE]LOG]!><time="05:03:45.000+000" date="06-23-2014" component="ZTIGather" context="" type="1" thread="" file="ZTIGather">
    <![LOG[Property IsServerOS is now = False]LOG]!><time="05:03:45.000+000" date="06-23-2014" component="ZTIGather" context="" type="1" thread="" file="ZTIGather">
    <![LOG[Property IsServerCoreOS is now = False]LOG]!><time="05:03:45.000+000" date="06-23-2014" component="ZTIGather" context="" type="1" thread="" file="ZTIGather">
    <![LOG[Finished getting OS info]LOG]!><time="05:03:45.000+000" date="06-23-2014" component="ZTIGather" context="" type="1" thread="" file="ZTIGather">
    <![LOG[Getting HAL information]LOG]!><time="05:03:45.000+000" date="06-23-2014" component="ZTIGather" context="" type="1" thread="" file="ZTIGather">
    <![LOG[Property definition is now = BDD_Welcome_ENU.xml]LOG]!><time="05:03:45.000+000" date="06-23-2014" component="Wizard" context="" type="1" thread="" file="Wizard">
    <![LOG[Microsoft Deployment Toolkit version: 6.2.5019.0]LOG]!><time="05:03:45.000+000" date="06-23-2014" component="Wizard" context="" type="1" thread="" file="Wizard">
    <![LOG[Property HALName is now = acpiapic]LOG]!><time="05:03:45.000+000" date="06-23-2014" component="ZTIGather" context="" type="1" thread="" file="ZTIGather">
    <![LOG[Finished getting HAL information]LOG]!><time="05:03:45.000+000" date="06-23-2014" component="ZTIGather" context="" type="1" thread="" file="ZTIGather">
    <![LOG[Getting network info]LOG]!><time="05:03:45.000+000" date="06-23-2014" component="ZTIGather" context="" type="1" thread="" file="ZTIGather">
    <![LOG[Checking network adapter: [00000001] Intel(R) PRO/1000 MT Network Connection]LOG]!><time="05:03:45.000+000" date="06-23-2014" component="ZTIGather" context="" type="1" thread="" file="ZTIGather">
    <![LOG[MAC address = 00:50:56:85:38:B4]LOG]!><time="05:03:45.000+000" date="06-23-2014" component="ZTIGather" context="" type="1" thread="" file="ZTIGather">
    <![LOG[IP Address = 172.16.4.182]LOG]!><time="05:03:45.000+000" date="06-23-2014" component="ZTIGather" context="" type="1" thread="" file="ZTIGather">
    <![LOG[IP Address = fe80::c98:9fef:4305:51f0]LOG]!><time="05:03:45.000+000" date="06-23-2014" component="ZTIGather" context="" type="1" thread="" file="ZTIGather">
    <![LOG[Default Gateway = 172.16.4.1]LOG]!><time="05:03:45.000+000" date="06-23-2014" component="ZTIGather" context="" type="1" thread="" file="ZTIGather">
    <![LOG[Property IPAddress001 is now = 172.16.4.182]LOG]!><time="05:03:45.000+000" date="06-23-2014" component="ZTIGather" context="" type="1" thread="" file="ZTIGather">
    <![LOG[Property IPAddress002 is now = fe80::c98:9fef:4305:51f0]LOG]!><time="05:03:45.000+000" date="06-23-2014" component="ZTIGather" context="" type="1" thread="" file="ZTIGather">
    <![LOG[Property MacAddress001 is now = 00:50:56:85:38:B4]LOG]!><time="05:03:45.000+000" date="06-23-2014" component="ZTIGather" context="" type="1" thread="" file="ZTIGather">
    <![LOG[Property DefaultGateway001 is now = 172.16.4.1]LOG]!><time="05:03:45.000+000" date="06-23-2014" component="ZTIGather" context="" type="1" thread="" file="ZTIGather">
    <![LOG[Finished getting network info]LOG]!><time="05:03:45.000+000" date="06-23-2014" component="ZTIGather" context="" type="1" thread="" file="ZTIGather">
    <![LOG[Getting DP info]LOG]!><time="05:03:45.000+000" date="06-23-2014" component="ZTIGather" context="" type="1" thread="" file="ZTIGather">
    <![LOG[Unable to determine ConfigMgr distribution point]LOG]!><time="05:03:45.000+000" date="06-23-2014" component="ZTIGather" context="" type="1" thread="" file="ZTIGather">
    <![LOG[Finished getting DP info]LOG]!><time="05:03:45.000+000" date="06-23-2014" component="ZTIGather" context="" type="1" thread="" file="ZTIGather">
    <![LOG[Getting WDS server info]LOG]!><time="05:03:45.000+000" date="06-23-2014" component="ZTIGather" context="" type="1" thread="" file="ZTIGather">
    <![LOG[Not Wizard = False]LOG]!><time="05:03:45.000+000" date="06-23-2014" component="Wizard" context="" type="1" thread="" file="Wizard">
    <![LOG[Property WizardComplete is now = N]LOG]!><time="05:03:45.000+000" date="06-23-2014" component="Wizard" context="" type="1" thread="" file="Wizard">
    <![LOG[Property WDSServer is now = mydeploymentserver.mydomain.com]LOG]!><time="05:03:45.000+000" date="06-23-2014" component="ZTIGather" context="" type="1" thread="" file="ZTIGather">
    <![LOG[Finished getting WDS server info]LOG]!><time="05:03:45.000+000" date="06-23-2014" component="ZTIGather" context="" type="1" thread="" file="ZTIGather">
    <![LOG[Property HostName is now = MININT-U1TGFAD]LOG]!><time="05:03:45.000+000" date="06-23-2014" component="ZTIGather" context="" type="1" thread="" file="ZTIGather">
    <![LOG[Getting asset info]LOG]!><time="05:03:45.000+000" date="06-23-2014" component="ZTIGather" context="" type="1" thread="" file="ZTIGather">
    <![LOG[FindFile: The file x86\Microsoft.BDD.Utility.dll could not be found in any standard locations.]LOG]!><time="05:03:47.000+000" date="06-23-2014" component="ZTIGather" context="" type="1" thread="" file="ZTIGather">
    <![LOG[FindFile(...\Microsoft.BDD.Utility.dll) Result : 1]LOG]!><time="05:03:47.000+000" date="06-23-2014" component="ZTIGather" context="" type="1" thread="" file="ZTIGather">
    <![LOG[RUN: regsvr32.exe /s ""]LOG]!><time="05:03:47.000+000" date="06-23-2014" component="ZTIGather" context="" type="1" thread="" file="ZTIGather">
    <![LOG[FindFile(...\Microsoft.BDD.Utility.dll) Result : 0]LOG]!><time="05:03:47.000+000" date="06-23-2014" component="ZTIGather" context="" type="1" thread="" file="ZTIGather">
    <![LOG[RUN: regsvr32.exe /s "X:\Deploy\Tools\x64\Microsoft.BDD.Utility.dll"]LOG]!><time="05:03:47.000+000" date="06-23-2014" component="ZTIGather" context="" type="1" thread="" file="ZTIGather">
    <![LOG[Property AssetTag is now = No Asset Tag]LOG]!><time="05:03:47.000+000" date="06-23-2014" component="ZTIGather" context="" type="1" thread="" file="ZTIGather">
    <![LOG[Property SerialNumber is now = VMware-42 05 2b f7 cd 5b 63 fd-83 8a 77 84 7c ed 79 05]LOG]!><time="05:03:47.000+000" date="06-23-2014" component="ZTIGather" context="" type="1" thread="" file="ZTIGather">
    <![LOG[Property Make is now = VMware, Inc.]LOG]!><time="05:03:47.000+000" date="06-23-2014" component="ZTIGather" context="" type="1" thread="" file="ZTIGather">
    <![LOG[Property Model is now = VMware Virtual Platform]LOG]!><time="05:03:47.000+000" date="06-23-2014" component="ZTIGather" context="" type="1" thread="" file="ZTIGather">
    <![LOG[Property Product is now = 440BX Desktop Reference Platform]LOG]!><time="05:03:47.000+000" date="06-23-2014" component="ZTIGather" context="" type="1" thread="" file="ZTIGather">
    <![LOG[Property UUID is now = F72B0542-5BCD-FD63-838A-77847CED7905]LOG]!><time="05:03:47.000+000" date="06-23-2014" component="ZTIGather" context="" type="1" thread="" file="ZTIGather">
    <![LOG[Property Memory is now = 2047]LOG]!><time="05:03:47.000+000" date="06-23-2014" component="ZTIGather" context="" type="1" thread="" file="ZTIGather">
    <![LOG[Property Architecture is now = X64]LOG]!><time="05:03:47.000+000" date="06-23-2014" component="ZTIGather" context="" type="1" thread="" file="ZTIGather">
    <![LOG[Property ProcessorSpeed is now = 2800]LOG]!><time="05:03:47.000+000" date="06-23-2014" component="ZTIGather" context="" type="1" thread="" file="ZTIGather">
    <![LOG[Property CapableArchitecture is now = AMD64 X64 X86]LOG]!><time="05:03:47.000+000" date="06-23-2014" component="ZTIGather" context="" type="1" thread="" file="ZTIGather">
    <![LOG[Property IsLaptop is now = False]LOG]!><time="05:03:47.000+000" date="06-23-2014" component="ZTIGather" context="" type="1" thread="" file="ZTIGather">
    <![LOG[Property IsDesktop is now = False]LOG]!><time="05:03:47.000+000" date="06-23-2014" component="ZTIGather" context="" type="1" thread="" file="ZTIGather">
    <![LOG[Property IsServer is now = False]LOG]!><time="05:03:47.000+000" date="06-23-2014" component="ZTIGather" context="" type="1" thread="" file="ZTIGather">
    <![LOG[Property IsUEFI is now = False]LOG]!><time="05:03:47.000+000" date="06-23-2014" component="ZTIGather" context="" type="1" thread="" file="ZTIGather">
    <![LOG[Property IsOnBattery is now = False]LOG]!><time="05:03:47.000+000" date="06-23-2014" component="ZTIGather" context="" type="1" thread="" file="ZTIGather">
    <![LOG[Property SupportsX86 is now = True]LOG]!><time="05:03:47.000+000" date="06-23-2014" component="ZTIGather" context="" type="1" thread="" file="ZTIGather">
    <![LOG[Property SupportsX64 is now = True]LOG]!><time="05:03:47.000+000" date="06-23-2014" component="ZTIGather" context="" type="1" thread="" file="ZTIGather">
    <![LOG[Property SupportsSLAT is now = False]LOG]!><time="05:03:47.000+000" date="06-23-2014" component="ZTIGather" context="" type="1" thread="" file="ZTIGather">
    <![LOG[Finished getting asset info]LOG]!><time="05:03:47.000+000" date="06-23-2014" component="ZTIGather" context="" type="1" thread="" file="ZTIGather">
    <![LOG[Getting OS SKU info]LOG]!><time="05:03:47.000+000" date="06-23-2014" component="ZTIGather" context="" type="1" thread="" file="ZTIGather">
    <![LOG[Unable to determine Windows SKU while in Windows PE.]LOG]!><time="05:03:47.000+000" date="06-23-2014" component="ZTIGather" context="" type="1" thread="" file="ZTIGather">
    <![LOG[Determining the Disk and Partition Number from the Logical Drive X:\WINDOWS]LOG]!><time="05:03:47.000+000" date="06-23-2014" component="ZTIGather" context="" type="1" thread="" file="ZTIGather">
    <![LOG[Property OriginalArchitecture is now = ]LOG]!><time="05:03:47.000+000" date="06-23-2014" component="ZTIGather" context="" type="1" thread="" file="ZTIGather">
    <![LOG[Property OriginalArchitecture is now = ]LOG]!><time="05:03:47.000+000" date="06-23-2014" component="ZTIGather" context="" type="1" thread="" file="ZTIGather">
    <![LOG[Property OriginalArchitecture is now = ]LOG]!><time="05:03:47.000+000" date="06-23-2014" component="ZTIGather" context="" type="1" thread="" file="ZTIGather">
    <![LOG[Getting virtualization info]LOG]!><time="05:03:47.000+000" date="06-23-2014" component="ZTIGather" context="" type="1" thread="" file="ZTIGather">
    <![LOG[Property IsHypervisorRunning is now = True]LOG]!><time="05:03:47.000+000" date="06-23-2014" component="ZTIGather" context="" type="1" thread="" file="ZTIGather">
    <![LOG[Property SupportsVT is now = False]LOG]!><time="05:03:47.000+000" date="06-23-2014" component="ZTIGather" context="" type="1" thread="" file="ZTIGather">
    <![LOG[Property SupportsNX is now = True]LOG]!><time="05:03:47.000+000" date="06-23-2014" component="ZTIGather" context="" type="1" thread="" file="ZTIGather">
    <![LOG[Property Supports64Bit is now = True]LOG]!><time="05:03:47.000+000" date="06-23-2014" component="ZTIGather" context="" type="1" thread="" file="ZTIGather">
    <![LOG[Property SupportsHyperVRole is now = False]LOG]!><time="05:03:47.000+000" date="06-23-2014" component="ZTIGather" context="" type="1" thread="" file="ZTIGather">
    <![LOG[Property IsVM is now = True]LOG]!><time="05:03:47.000+000" date="06-23-2014" component="ZTIGather" context="" type="1" thread="" file="ZTIGather">
    <![LOG[Property VMPlatform is now = VMware]LOG]!><time="05:03:47.000+000" date="06-23-2014" component="ZTIGather" context="" type="1" thread="" file="ZTIGather">
    <![LOG[Finished getting virtualization info]LOG]!><time="05:03:47.000+000" date="06-23-2014" component="ZTIGather" context="" type="1" thread="" file="ZTIGather">
    <![LOG[Connection succeeded to MicrosoftVolumeEncryption]LOG]!><time="05:03:47.000+000" date="06-23-2014" component="ZTIGather" context="" type="1" thread="" file="ZTIGather">
    <![LOG[There are no encrypted drives]LOG]!><time="05:03:47.000+000" date="06-23-2014" component="ZTIGather" context="" type="1" thread="" file="ZTIGather">
    <![LOG[Property IsBDE is now = False]LOG]!><time="05:03:47.000+000" date="06-23-2014" component="ZTIGather" context="" type="1" thread="" file="ZTIGather">
    <![LOG[Processing the PREINSTALL phase.]LOG]!><time="05:03:47.000+000" date="06-23-2014" component="ZTIGather" context="" type="1" thread="" file="ZTIGather">
    <![LOG[Determining the INI file to use.]LOG]!><time="05:03:47.000+000" date="06-23-2014" component="ZTIGather" context="" type="1" thread="" file="ZTIGather">
    <![LOG[Finished determining the INI file to use.]LOG]!><time="05:03:47.000+000" date="06-23-2014" component="ZTIGather" context="" type="1" thread="" file="ZTIGather">
    <![LOG[Using from [Settings]: Rule Priority = DEFAULT]LOG]!><time="05:03:47.000+000" date="06-23-2014" component="ZTIGather" context="" type="1" thread="" file="ZTIGather">
    <![LOG[------ Processing the [DEFAULT] section ------]LOG]!><time="05:03:47.000+000" date="06-23-2014" component="ZTIGather" context="" type="1" thread="" file="ZTIGather">
    <![LOG[Property DEPLOYROOT is now = \\mydeploymentserver\DeploymentShare$]LOG]!><time="05:03:47.000+000" date="06-23-2014" component="ZTIGather" context="" type="1" thread="" file="ZTIGather">
    <![LOG[Using from [DEFAULT]: DEPLOYROOT = \\mydeploymentserver\DeploymentShare$]LOG]!><time="05:03:47.000+000" date="06-23-2014" component="ZTIGather" context="" type="1" thread="" file="ZTIGather">
    <![LOG[------ Done processing X:\Deploy\Scripts\Bootstrap.ini ------]LOG]!>

    Basics - Server 2008 R2 - SP1, WDS,  MDT 2013
    Well all, I've done this at least 20 times today and the deployment share info is still wrong...
    Someone else built and messed with this thing so i'm trying to fix it.  We have 2 MDT servers and 1 WDS that is on the Production MDT.  I've turned the test MDT off.
    It was working fine, until I updated the deployment share ... after adding some drivers for the surface pro 3 for the pxe boot
    Very Simple bootstrap.ini
    [Settings]
    Priority=Default
    [Default]
    DeployRoot=\\MMPDEPLOY02\DeploymentShare$
    UserID=xxx
    UserDomain=xxx
    UserPassword=xxx
    KeyboardLocale=en-US
    SkipBDDWelcome=YES
    It continues to show up on the client as ||mdt901w8|deploymentshare$  (test server) (pipes for \ since it makes it a link and i'm new)
    I've deleted all the .wim and associated files from all locations from the deployment share\boot folder and from the wds remote install\boot\x64\images folder where they are instead of the remote install\boot\images folder that everyone refers to.
    I really can't figure this one out... I know it's something simple I'm over looking but I can't see it..
    Any ideas..

  • UDI wizard is not applying TimeZone setting (MDT2013)

    Hi All,
    I am working on MDT2013 to create Windows7-64bit Image for OEM vendor. Note:- I am not using any SQL database.
    I have customized the UDIWizard_Config.xml where it should ask for UIlanguage, Inputlocale and Timezone. I am calling this UDI wizard xml in Tasksequence after gathering locally here the problem is after completing the build its not applying the Timezone
    setting in image.
    Any one aware about this issue? why UDI wizard is not applying the Timezone setting in image? 
    I have attached the below UDI wizard XML. please answer and ask if you require any more details..
    <?xml version="1.0" encoding="UTF-8"?>
    -<Wizard>
    -<DLLs>
    <DLL Name="OSDRefreshWizard.dll"/>
    <DLL Name="SharedPages.dll"/>
    </DLLs>
    -<Style>
    <Setter Property="bannerFilename">UDI_Wizard_Banner.bmp</Setter>
    <Setter Property="title">Operating System Deployment (OSD) Wizard</Setter>
    </Style>
    -<Pages>
    -<Page Name="WelcomePage" Type="Microsoft.SharedPages.WelcomePage" DisplayName="Welcome">
    -<Fields>
    -<Field Name="WelcomeText" Summary="" Enabled="true">
    <Default> Welcome to the Deployment Wizard. This wizard will walk you through a series of screens that will allow you to choose Language type. Click on the 'Next' button to start your selected language pack installalation. Please allow 1 hours for installation. If you need support during this process, please e-mail your system administrator. </Default>
    </Field>
    </Fields>
    </Page>
    -<Page Name="ConfigScanPage" Type="Microsoft.OSDRefresh.ConfigScanPage" DisplayName="Deployment Readiness">
    -<Tasks StatusTitle="Status" NameTitle="Configuration Check Name">
    -<Task Type="Microsoft.Wizard.ShellExecuteTask" DisplayName="Check Windows Scripting Host">
    <Setter Property="filename">%windir%\system32\cscript.exe</Setter>
    <Setter Property="parameters">Preflight\OSDCheckWSH.vbs</Setter>
    <Setter Property="BitmapFilename">images\WinScriptHost.bmp</Setter>
    -<ExitCodes>
    <ExitCode Type="0" Text="" Value="0" State="Success"/>
    <ExitCode Type="-1" Text="Windows Scripting Host not installed." Value="*" State="Error"/>
    </ExitCodes>
    </Task>
    -<Task Type="Microsoft.SharedPages.WiredNetworkTask" DisplayName="Wired Network Check">
    <Setter Property="BitmapFilename">images\WiredNetwork.ico</Setter>
    -<ExitCodes>
    <ExitCode Type="0" Text="" Value="0" State="Success"/>
    <ExitCode Type="-1" Text="No Wired connection found. Please plug in to a network cable." Value="*" State="Error"/>
    </ExitCodes>
    </Task>
    -<Task Type="Microsoft.OSDRefresh.AppDiscoveryTask" DisplayName="Application Discovery">
    <Setter Property="readcfg">$LogPath$\OSDSetupWizard.xml.app</Setter>
    <Setter Property="writecfg">%temp%\AppDiscoveryresult.xml.app</Setter>
    <Setter Property="log">$LogPath$\AppDiscovery.log</Setter>
    <Setter Property="BitmapFilename">images\AppDiscovery.ico</Setter>
    -<ExitCodes>
    <ExitCode Type="0" Text="Successfully scanned applications." Value="0" State="Success"/>
    <ExitCode Type="1" Text="Could not run application discovery engine (reason unknown). The appropriate applications may not be selected." Value="*" State="Warning"/>
    <ExitCode Type="1" Text="One or more warnings were encountered (nonfatal) while running App Discovery. The appropriate applications may not be selected." Value="1" State="Warning"/>
    <ExitCode Type="1" Text="Critical problems were encountered while initializing App Discovery. The appropriate applications may not be selected." Value="16777216" State="Warning"/>
    <ExitCode Type="1" Text="Critical problems were encountered while processing the Application Master List. The appropriate applications may not be selected." Value="33554432" State="Warning"/>
    </ExitCodes>
    </Task>
    -<Task Type="Microsoft.Wizard.ShellExecuteTask" DisplayName="Get Printers">
    <Setter Property="filename">%windir%\system32\cscript.exe</Setter>
    <Setter Property="parameters">Preflight\OSD_GetPrinters.vbs /xmlout:%temp%\PrinterList.xml;$LogPath$\PrinterList.xml</Setter>
    <Setter Property="BitmapFilename">images\Printers.ico</Setter>
    -<ExitCodes>
    <ExitCode Type="0" Text="" Value="0" State="Success"/>
    <ExitCode Type="1" Text="Output filename not specified correctly." Value="10" State="Warning"/>
    <ExitCode Type="1" Text="Unable to create output file." Value="20" State="Warning"/>
    <ExitCode Type="1" Text="An unknown error has occurred." Value="*" State="Warning"/>
    </ExitCodes>
    </Task>
    -<Task Type="Microsoft.Wizard.ShellExecuteTask" DisplayName="CheckSMSFolderOnUSB">
    <Setter Property="filename">%windir%\system32\cscript.exe</Setter>
    <Setter Property="parameters">Preflight\CheckSMSFolderOnUSB.vbs</Setter>
    <Setter Property="BitmapFilename">images\USB.bmp</Setter>
    -<ExitCodes>
    <ExitCode Type="0" Text="" Value="0" State="Success"/>
    <ExitCode Type="-1" Text="Please disconnect any USB Drives at this time, cancel the wizard, and start the task sequence over." Value="*" State="Error"/>
    <Error Type="-1" Text="The path not found" Value="2" State="Error"/>
    <Error Type="-1" Text="The file not found" Value="3" State="Error"/>
    </ExitCodes>
    </Task>
    -<Task Type="Microsoft.OSDRefresh.ACPowerTask" DisplayName="AC Power Check">
    <Setter Property="BitmapFilename">images\ACPower.bmp</Setter>
    -<ExitCodes>
    <ExitCode Type="0" Text="" Value="0" State="Success"/>
    <ExitCode Type="-1" Text="No AC power detected. Please plug in to power." Value="*" State="Error"/>
    </ExitCodes>
    </Task>
    -<Task Type="Microsoft.Wizard.ShellExecuteTask" DisplayName="Check Drive Encryption">
    <Setter Property="filename">%windir%\system32\cscript.exe</Setter>
    <Setter Property="parameters">Preflight\OSDBitlockerState.vbs %systemdrive%</Setter>
    <Setter Property="BitmapFilename">images\bitlocker.ico</Setter>
    -<ExitCodes>
    <ExitCode Type="0" Text="" Value="0" State="Success"/>
    <ExitCode Type="1" Text="Drive is fully encrypted. Encryption will be paused during deployment and resumed." Value="1" State="Warning"/>
    <ExitCode Type="1" Text="Drive encryption is paused. Encryption will resume after deployment has completed." Value="4" State="Warning"/>
    <ExitCode Type="1" Text="Drive encryption is paused. Encryption will resume after deployment has completed." Value="5" State="Warning"/>
    <ExitCode Type="-1" Text="Drive is currently encrypting. Please fully encrypt or pause encryption to continue." Value="2" State="Error"/>
    <ExitCode Type="-1" Text="Drive is currently decrypting. Please fully decrypt or pause decryption to continue." Value="3" State="Error"/>
    <ExitCode Type="-1" Text="A script error was detected. Please contact support to continue." Value="*" State="Error"/>
    </ExitCodes>
    </Task>
    </Tasks>
    </Page>
    -<Page Name="ConfigScanBareMetal" Type="Microsoft.OSDRefresh.ConfigScanPage" DisplayName="Deployment Readiness">
    -<Tasks StatusTitle="Status" NameTitle="Configuration Check Name">
    -<Task Type="Microsoft.Wizard.ShellExecuteTask" DisplayName="Check Windows Scripting Host">
    <Setter Property="filename">%windir%\system32\cscript.exe</Setter>
    <Setter Property="parameters">Preflight\OSDCheckWSH.vbs</Setter>
    <Setter Property="BitmapFilename">images\WinScriptHost.bmp</Setter>
    -<ExitCodes>
    <ExitCode Type="0" Text="" Value="0" State="Success"/>
    <ExitCode Type="-1" Text="Windows Scripting Host not installed." Value="*" State="Error"/>
    </ExitCodes>
    </Task>
    -<Task Type="Microsoft.SharedPages.WiredNetworkTask" DisplayName="Wired Network Check">
    <Setter Property="BitmapFilename">images\WiredNetwork.ico</Setter>
    -<ExitCodes>
    <ExitCode Type="0" Text="" Value="0" State="Success"/>
    <ExitCode Type="-1" Text="No Wired connection found. Please plug in to a network cable." Value="*" State="Error"/>
    </ExitCodes>
    </Task>
    -<Task Type="Microsoft.OSDRefresh.ACPowerTask" DisplayName="AC Power Check">
    <Setter Property="BitmapFilename">images\ACPower.bmp</Setter>
    -<ExitCodes>
    <ExitCode Type="0" Text="" Value="0" State="Success"/>
    <ExitCode Type="-1" Text="No AC power detected. Please plug in to power." Value="*" State="Error"/>
    </ExitCodes>
    </Task>
    -<Task Type="Microsoft.OSDRefresh.PrestageDriveLookupTask" DisplayName="OEMMedia Lookup">
    <Setter Property="BitmapFilename"/>
    -<ExitCodes>
    <ExitCode Type="0" Text="Success" Value="0" State="Success"/>
    <ExitCode Type="-1" Text="Error" Value="*" State="Error"/>
    </ExitCodes>
    </Task>
    -<Task Type="Microsoft.OSDRefresh.AppDiscoveryTask" DisplayName="Application Discovery">
    <Setter Property="readcfg">%OSDDataSourceDrive%\%OSDDataSourceDirectory%\AppDiscoveryresult.xml.app</Setter>
    <Setter Property="writecfg">%temp%\AppDiscoveryresult.xml.app</Setter>
    <Setter Property="log">$LogPath$\AppDiscovery.log</Setter>
    <Setter Property="BitmapFilename">images\AppDiscovery.ico</Setter>
    -<ExitCodes>
    <ExitCode Type="0" Text="Successfully scanned applications." Value="0" State="Success"/>
    <ExitCode Type="1" Text="Could not run application discovery engine (reason unknown). The appropriate applications may not be selected." Value="*" State="Warning"/>
    <ExitCode Type="0" Text="AppDiscovery exited with success as Application matching information is not available in Windows PE." Value="1" State="Success"/>
    <ExitCode Type="1" Text="Critical problems were encountered while initializing App Discovery. The appropriate applications may not be selected." Value="16777216" State="Warning"/>
    <ExitCode Type="1" Text="Critical problems were encountered while processing the Application Master List. The appropriate applications may not be selected." Value="33554432" State="Warning"/>
    </ExitCodes>
    </Task>
    </Tasks>
    </Page>
    -<Page Name="RebootPage" Type="Microsoft.OSDRefresh.RebootPage" DisplayName="Reboot">
    -<Fields>
    -<Field Name="RebootText" Summary="" Enabled="true">
    <Default> Your machine will now be rebooted. Click on the 'Finish' button to reboot. </Default>
    </Field>
    </Fields>
    </Page>
    -<Page Name="WelcomePageReplace" Type="Microsoft.SharedPages.WelcomePage" DisplayName="Welcome">
    -<Fields>
    -<Field Name="WelcomeText" Summary="" Enabled="true">
    <Default> Welcome to the Replace Wizard. This wizard will walk you through a series of screens that will allow you to customize your data and settings for USMT. After you have entered the information, the wizard will begin USMT. Click on the 'Next' button to start. Please allow 2 hours for USMT. If you need support during this process, please e-mail your system administrator. </Default>
    </Field>
    </Fields>
    </Page>
    -<Page Name="VolumePage" Type="Microsoft.OSDRefresh.VolumePage" DisplayName="Volume">
    -<Fields>
    <Field Name="Image" Summary="Image Selection:" Enabled="true" VarName="OSDImageIndex"/>
    -<Field Name="Volume" Summary="Volume:" Enabled="true">
    -<Validator Type="Microsoft.Wizard.Validation.NonEmpty">
    <Setter Property="Message">There are no volumes available for installing the OS.</Setter>
    </Validator>
    </Field>
    <Field Name="Directory" Summary="Windows Directory:" Enabled="true"/>
    <Field Name="Format" Summary="Format:" Enabled="true" VarName="OSDDiskPart"/>
    </Fields>
    <Setter Property="MinimumVolumeSize">10</Setter>
    <Setter Property="FormatWinPE">Partition and &format disk 0.</Setter>
    <Setter Property="FormatFullOS">&Clean the selected volume.</Setter>
    <Setter Property="FormatWinPEWarning">WARNING: Choosing this option will repartition and format disk 0!</Setter>
    <Setter Property="FormatFullOSWarning">WARNING: Choosing this option will delete all data on the target volume!</Setter>
    -<Data Name="ImageSelection">
    -<DataItem>
    <Setter Property="DisplayName">Windows 7 RTM (x86)</Setter>
    <Setter Property="Index">1</Setter>
    <Setter Property="Architecture">x86</Setter>
    <Setter Property="ImageName">Windows 7 RTM Images</Setter>
    </DataItem>
    </Data>
    </Page>
    -<Page Name="UserRestorePage" Type="Microsoft.OSDRefresh.UserStatePage" DisplayName="Select Target">
    -<Fields>
    <RadioGroup Name="LocationGroup" Locked="false"/>
    -<Field Name="TargetDrive" Enabled="true" VarName="">
    -<Validator Type="Microsoft.Wizard.Validation.NonEmpty">
    <Setter Property="Message">No target drive found. Please insert a valid USB drive and click the Refresh button.</Setter>
    </Validator>
    </Field>
    -<Field Name="NetworkLocation" Enabled="true" VarName="SMSConnectNetworkFolderPath">
    -<Validator Type="Microsoft.Wizard.Validation.NonEmpty">
    <Setter Property="Message">No valid network share.</Setter>
    </Validator>
    </Field>
    -<Field Name="Username" Summary="User:" Enabled="true" VarName="OSDUserStateKey">
    -<Validator Type="Microsoft.Wizard.Validation.NonEmpty">
    <Setter Property="Message">You have to input user name. Example is domain\user.</Setter>
    </Validator>
    -<Validator Type="Microsoft.Wizard.Validation.RegEx">
    <Setter Property="Message">User name format is invalid. Example is domain\user.</Setter>
    <Setter Property="Pattern">^([A-Za-z0-9-\.]+)\\([^+#,*"<>;=\[\]:?/|']+)$</Setter>
    </Validator>
    </Field>
    -<Field Name="Password" Summary="" Enabled="true" VarName="OSDUserStateKeyPassword">
    -<Validator Type="Microsoft.Wizard.Validation.NonEmpty">
    <Setter Property="Message">Password is required. Please enter the password.</Setter>
    </Validator>
    </Field>
    <Field Name="NoDataRadio" Enabled="true" VarName=""/>
    <Field Name="LocalRadio" Enabled="true" VarName=""/>
    <Field Name="USBRadio" Enabled="true" VarName=""/>
    <Field Name="NetworkRadio" Enabled="true" VarName=""/>
    </Fields>
    <Setter Property="NetworkPassword"/>
    <Setter Property="NetworkUsername"/>
    <Setter Property="DataSourceText">Please select a location where user data will be captured and/or restored.</Setter>
    <Setter Property="Format">disable</Setter>
    <Setter Property="FormatPrompt">disable</Setter>
    <Setter Property="MinimumDriveSize">10</Setter>
    <Setter Property="State">Restore</Setter>
    <Setter Property="NetworkDrive">n:</Setter>
    <Data Name="Network"/>
    </Page>
    -<Page Name="ComputerPage" Type="Microsoft.OSDRefresh.ComputerPage" DisplayName="New Computer Details">
    -<Fields>
    -<RadioGroup Name="DomainGroup" Locked="false">
    <Default>Workgroup</Default>
    </RadioGroup>
    -<Field Name="ComputerName" Summary="Computer Name:" Enabled="true" VarName="OSDComputerName">
    -<Validator Type="Microsoft.Wizard.Validation.NonEmpty">
    <Setter Property="Message">The computer name is required. Please enter a computer name.</Setter>
    </Validator>
    -<Validator Type="Microsoft.Wizard.Validation.RegEx">
    <Setter Property="Message">The computer name is not valid. It either contains a character that isn't allowed, or is longer than 15 characters.</Setter>
    <Setter Property="NamedPattern">ComputerName</Setter>
    </Validator>
    -<Validator Type="Microsoft.Wizard.Validation.InvalidChars">
    <Setter Property="Message">One of the characters in the computer name is not valid.</Setter>
    <Setter Property="InvalidChars"/>
    </Validator>
    </Field>
    -<Field Name="DomainCombo" Enabled="true" VarName="OSDDomainName">
    -<Validator Type="Microsoft.Wizard.Validation.NonEmpty">
    <Setter Property="Message">You must select a domain.</Setter>
    </Validator>
    </Field>
    <Field Name="DomainOUCombo" Enabled="true" VarName="OSDDomainOUName"/>
    -<Field Name="WorkgroupName" Summary="Workgroup:" Enabled="true" VarName="OSDWorkgroupName">
    -<Validator Type="Microsoft.Wizard.Validation.NonEmpty">
    <Setter Property="Message">The workgroup name must be between 1 and 15 characters long, and cannot contain any of these characters: " : ; | = + * ? < ></Setter>
    </Validator>
    -<Validator Type="Microsoft.Wizard.Validation.RegEx">
    <Setter Property="Message">The workgroup name must be between 1 and 15 characters long, and cannot contain any of these characters: " : ; | = + * ? < ></Setter>
    <Setter Property="NamedPattern">Workgroup</Setter>
    </Validator>
    </Field>
    -<Field Name="Username" Summary="Join Domain Account:" Enabled="true" VarName="OSDJoinAccount">
    -<Validator Type="Microsoft.Wizard.Validation.NonEmpty">
    <Setter Property="Message">You have to input user name. Example is domain\user.</Setter>
    </Validator>
    -<Validator Type="Microsoft.Wizard.Validation.RegEx">
    <Setter Property="Message">User name format is invalid. Example is domain\user.</Setter>
    <Setter Property="Pattern">^([A-Za-z0-9-\.]+)\\([^+#,*"<>;=\[\]:?/|']+)$</Setter>
    </Validator>
    </Field>
    -<Field Name="Password" Summary="" Enabled="true" VarName="OSDJoinPassword">
    -<Validator Type="Microsoft.Wizard.Validation.NonEmpty">
    <Setter Property="Message">Password is required. Please enter the password.</Setter>
    </Validator>
    </Field>
    </Fields>
    <Setter Property="ADCredentialCheck" Type="boolean">true</Setter>
    <Setter Property="ADComputerObjectCheck" Type="boolean">true</Setter>
    <Setter Property="UseExistingComputerName" Type="boolean">false</Setter>
    <Data Name="Domain"/>
    </Page>
    -<Page Name="AdminAccounts" Type="Microsoft.SharedPages.AdminAccountsPage" DisplayName="Administrator Password">
    -<Fields>
    -<Field Name="Username" Summary="Add as Administrator:" Enabled="true" VarName="OSDAddAdmin">
    <Default>%OSDJoinAccount%</Default>
    -<Validator Type="Microsoft.Wizard.Validation.InvalidChars">
    <Setter Property="Message">One of the characters in the Account Name(s) field is not valid.</Setter>
    <Setter Property="InvalidChars">/[]:|=,+*<>?"</Setter>
    </Validator>
    </Field>
    -<Field Name="Password" Summary="" Enabled="true" VarName="OSDLocalAdminPassword">
    <Default/>
    -<Validator Type="Microsoft.Wizard.Validation.NonEmpty">
    <Setter Property="Message">Password is required. Please enter the password.</Setter>
    </Validator>
    </Field>
    </Fields>
    </Page>
    -<Page Name="UDAPage" Type="Microsoft.OSDRefresh.UDAPage" DisplayName="User Device Affinity">
    -<Fields>
    -<Field Name="DeviceAfinity" Summary="" Enabled="true">
    <Default>false</Default>
    </Field>
    -<Field Name="Username" Summary="User Device Affinity Account:" Enabled="true" VarName="SMSTSUdaUsers">
    <Default>%OSDJoinAccount%</Default>
    -<Validator Type="Microsoft.Wizard.Validation.NonEmpty">
    <Setter Property="Message">You have to input user name. Example is domain\user.</Setter>
    </Validator>
    -<Validator Type="Microsoft.Wizard.Validation.RegEx">
    <Setter Property="Message">User name format is invalid. Example is domain\user.</Setter>
    <Setter Property="Pattern">^([A-Za-z0-9-]+)\\([^+#,*"<>;=\[\]:?/|']+)$</Setter>
    </Validator>
    </Field>
    <Field Name="Password" Enabled="true"/>
    </Fields>
    </Page>
    -<Page Name="LanguagePage" Type="Microsoft.OSDRefresh.LanguagePage" DisplayName="Language">
    -<Fields>
    -<Field Name="LanguagePack" Summary="Language Pack:" Enabled="true" VarName="UILanguage">
    <Default>DE-DE</Default>
    </Field>
    -<Field Name="InputLocale" Summary="Locale:" Enabled="true" VarName="UserLocale">
    <Default>en-US</Default>
    </Field>
    -<Field Name="KeyboardLocale" Summary="Keyboard Locale:" Enabled="true" VarName="KeyboardLocale">
    <Default>00000409</Default>
    </Field>
    -<Field Name="TimeZone" Summary="Time Zone:" Enabled="true" VarName="OSDTimeZone">
    <Default>Pacific Standard Time</Default>
    </Field>
    </Fields>
    -<Data Name="LanguagePacks">
    -<DataItem>
    <Setter Property="DisplayName">English (United States)</Setter>
    <Setter Property="Language">EN-US</Setter>
    </DataItem>
    -<DataItem>
    <Setter Property="DisplayName">Chinese (Hong Kong S.A.R.)</Setter>
    <Setter Property="Language">ZH-HK</Setter>
    </DataItem>
    -<DataItem>
    <Setter Property="DisplayName">German (Germany)</Setter>
    <Setter Property="Language">DE-DE</Setter>
    </DataItem>
    -<DataItem>
    <Setter Property="DisplayName">Japanese (Japan)</Setter>
    <Setter Property="Language">JA-JP</Setter>
    </DataItem>
    -<DataItem>
    <Setter Property="DisplayName">Polish (Poland)</Setter>
    <Setter Property="Language">PL-PL</Setter>
    </DataItem>
    -<DataItem>
    <Setter Property="DisplayName">Romanian (Romania)</Setter>
    <Setter Property="Language">RO-RO</Setter>
    </DataItem>
    </Data>
    </Page>
    -<Page Name="ApplicationPage" Type="Microsoft.OSDRefresh.ApplicationPage" DisplayName="Install Programs">
    <Setter Property="Link.Uri">%temp%\AppDiscoveryresult.xml.app</Setter>
    <Setter Property="TsAppBaseVariable">PACKAGES</Setter>
    <Setter Property="TsApplicationBaseVariable">APPLICATIONS</Setter>
    <Setter Property="TsWindowsAppPackageAppBaseVariable">WINDOWSAPPPACKAGEAPPS</Setter>
    <Setter Property="TsAppInstall">AppInstall</Setter>
    </Page>
    <Page Name="SummaryPage" Type="Microsoft.Shared.SummaryPage" DisplayName="Summary"/>
    -<Page Name="UserCapturePageOldPC" Type="Microsoft.OSDRefresh.UserStatePage" DisplayName="Select Target">
    -<Fields>
    <RadioGroup Name="LocationGroup" Locked="false"/>
    -<Field Name="TargetDrive" Enabled="true" VarName="">
    -<Validator Type="Microsoft.Wizard.Validation.NonEmpty">
    <Setter Property="Message">No target drive found. Please insert a valid USB drive and click the Refresh button.</Setter>
    </Validator>
    </Field>
    -<Field Name="NetworkLocation" Enabled="true" VarName="SMSConnectNetworkFolderPath">
    -<Validator Type="Microsoft.Wizard.Validation.NonEmpty">
    <Setter Property="Message">No valid network share.</Setter>
    </Validator>
    </Field>
    -<Field Name="Username" Summary="User:" Enabled="true" VarName="OSDUserStateKey">
    -<Validator Type="Microsoft.Wizard.Validation.NonEmpty">
    <Setter Property="Message">You have to input user name. Example is domain\user.</Setter>
    </Validator>
    -<Validator Type="Microsoft.Wizard.Validation.RegEx">
    <Setter Property="Message">User name format is invalid. Example is domain\user.</Setter>
    <Setter Property="Pattern">^([A-Za-z0-9-\.]+)\\([^+#,*"<>;=\[\]:?/|']+)$</Setter>
    </Validator>
    </Field>
    -<Field Name="Password" Summary="" Enabled="true" VarName="OSDUserStateKeyPassword">
    -<Validator Type="Microsoft.Wizard.Validation.NonEmpty">
    <Setter Property="Message">Password is required. Please enter the password.</Setter>
    </Validator>
    </Field>
    <Field Name="NoDataRadio" Enabled="false" VarName=""/>
    <Field Name="LocalRadio" Enabled="false" VarName=""/>
    <Field Name="USBRadio" Enabled="true" VarName=""/>
    <Field Name="NetworkRadio" Enabled="true" VarName=""/>
    </Fields>
    <Setter Property="NetworkPassword"/>
    <Setter Property="NetworkUsername"/>
    <Setter Property="DataSourceText">Please select a location where user data will be captured.</Setter>
    <Setter Property="Format">disable</Setter>
    <Setter Property="FormatPrompt">disable</Setter>
    <Setter Property="MinimumDriveSize">10</Setter>
    <Setter Property="State">Capture</Setter>
    <Setter Property="NetworkDrive">n:</Setter>
    <Data Name="Network"/>
    </Page>
    -<Page Name="ProgressPage" Type="Microsoft.OSDRefresh.ProgressPage" DisplayName="Capture Data">
    <Setter Property="LogFilename">$LogPath$\USMTcapture.prg</Setter>
    -<Tasks StatusTitle="Status" NameTitle="Task Name">
    -<Task Type="Microsoft.Wizard.CopyFilesTask" DisplayName="Copy AppDiscovery XML">
    <File Dest="$DriveLetter$\%OSDDataSourceDirectory%" Source="%temp%\AppDiscoveryresult.xml.app"/>
    <Setter Property="BitmapFilename">images\copy.bmp</Setter>
    -<ExitCodes>
    <ExitCode Type="0" Text="" Value="0" State="Success"/>
    <ExitCode Type="-1" Text="Copy failed." Value="*" State="Error"/>
    <Error Type="-1" Text="Copy failed. Please check the OSD Wizard log file for details." Value="*" State="Error"/>
    </ExitCodes>
    </Task>
    -<Task Type="Microsoft.Wizard.CopyFilesTask" DisplayName="Copy Printers XML">
    <File Dest="$DriveLetter$\%OSDDataSourceDirectory%" Source="%temp%\PrinterList.xml"/>
    <Setter Property="BitmapFilename">images\Printers.ico</Setter>
    -<ExitCodes>
    <ExitCode Type="0" Text="" Value="0" State="Success"/>
    <ExitCode Type="-1" Text="Copy failed. Please check the OSD Wizard log file for details." Value="*" State="Error"/>
    </ExitCodes>
    </Task>
    -<Task Type="Microsoft.Wizard.CopyFilesTask" DisplayName="Copy ProductsList">
    <File Dest="$DriveLetter$\%OSDDataSourceDirectory%" Source="%temp%\ProductsInstalled.txt"/>
    <Setter Property="BitmapFilename">images\copy.bmp</Setter>
    -<ExitCodes>
    <ExitCode Type="0" Text="" Value="0" State="Success"/>
    <ExitCode Type="-1" Text="Copy failed." Value="*" State="Error"/>
    <Error Type="-1" Text="Copy failed. Please check the OSD Wizard log file for details." Value="*" State="Error"/>
    </ExitCodes>
    </Task>
    -<Task Type="Microsoft.Wizard.ShellExecuteTask" DisplayName="Run USMT">
    <Setter Property="BitmapFilename">images\usmt.bmp</Setter>
    <Setter Property="filename">%windir%\system32\wscript.exe</Setter>
    <Setter Property="parameters">//B %ScriptRoot%\ZTIUserState.wsf /capture /OSDStateStorePath:$DriveLetter$\%OSDDataSourceDirectory% /UserDataKey:%OSDUserStateKeyPassword%</Setter>
    -<ExitCodes>
    <ExitCode Type="0" Text="" Value="0" State="Success"/>
    <ExitCode Type="-1" Text="USMT scan state failed." Value="*" State="Error"/>
    </ExitCodes>
    </Task>
    </Tasks>
    </Page>
    -<Page Name="RebootAfterCapture" Type="Microsoft.OSDRefresh.RebootPage" DisplayName="Reboot">
    -<Fields>
    -<Field Name="RebootText" Summary="" Enabled="true">
    <Default> Your machine will now be rebooted. Click on the 'Finish' button to reboot. </Default>
    </Field>
    </Fields>
    </Page>
    -<Page Name="BitLocker" Type="Microsoft.OSDRefresh.BitLockerPage" DisplayName="BitLocker">
    -<Fields>
    <!-- Valid values: TPM,TPMPIN,TPMKey and ExternalKey-->
    -<RadioGroup Name="BitLockerRadioGroup" Locked="false">
    <Default>TPMPIN</Default>
    </RadioGroup>
    -<RadioGroup Name="LocationGroup" Locked="false">
    <Default>AD</Default>
    </RadioGroup>
    -<Field Name="BitLocker" Summary="" Enabled="true" VarName="BDEInstallSuppress">
    <Default>True</Default>
    </Field>
    -<Field Name="PIN" Summary="" Enabled="true" VarName="BDEPIN">
    -<Validator Type="Microsoft.Wizard.Validation.NonEmpty">
    <Setter Property="Message">The PIN must not be emtpy</Setter>
    </Validator>
    -<Validator Type="Microsoft.Wizard.Validation.RegEx">
    <Setter Property="Message">PIN should be a number between 4-20 digits</Setter>
    <Setter Property="Pattern">^[0-9-]{4,20}$</Setter>
    </Validator>
    </Field>
    -<Field Name="WaitForEncryption" Summary="" Enabled="true" VarName="OSDBitlockerWaitForEncryption">
    <Default>True</Default>
    </Field>
    </Fields>
    <Setter Property="KeyLocation"/>
    </Page>
    -<Page Name="Build Type" Type="Microsoft.Wizard.CustomPage" DisplayName="Build Type">
    -<Fields>
    -<Field Name="label3" Summary="" Enabled="true" VarName="">
    <Default>Choose Language Type</Default>
    </Field>
    -<RadioGroup Name="Group1" Summary="ABBLan" Enabled="true" VarName="ABBLang" Locked="false">
    <Default>radiobutton1</Default>
    </RadioGroup>
    -<Field Name="combo5" Summary="ABBLang" Enabled="true" VarName="ABBLang">
    <Default>English</Default>
    </Field>
    </Fields>
    -<Data Name="CustomFields">
    -<DataItem>
    <Setter Property="ControlType">label</Setter>
    <Setter Property="ID">3</Setter>
    <Setter Property="X">37.27</Setter>
    <Setter Property="Y">3.67</Setter>
    <Setter Property="Width">100</Setter>
    <Setter Property="Height">12</Setter>
    <Setter Property="Name">label3</Setter>
    <Setter Property="Label">Choose Language Type</Setter>
    </DataItem>
    -<DataItem>
    <Setter Property="ControlType">combo</Setter>
    <Setter Property="ID">5</Setter>
    <Setter Property="X">36.87</Setter>
    <Setter Property="Y">21.25</Setter>
    <Setter Property="Width">100</Setter>
    <Setter Property="Height">12</Setter>
    <Setter Property="Name">combo5</Setter>
    </DataItem>
    </Data>
    -<Data Name="combo5">
    -<DataItem>
    <Setter Property="DisplayName">English</Setter>
    <Setter Property="Value">0</Setter>
    </DataItem>
    -<DataItem>
    <Setter Property="DisplayName">Chinese</Setter>
    <Setter Property="Value">1</Setter>
    </DataItem>
    -<DataItem>
    <Setter Property="DisplayName">Japanese</Setter>
    <Setter Property="Value">2</Setter>
    </DataItem>
    -<DataItem>
    <Setter Property="DisplayName">German</Setter>
    <Setter Property="Value">3</Setter>
    </DataItem>
    -<DataItem>
    <Setter Property="DisplayName">Lang-2</Setter>
    <Setter Property="Value">4</Setter>
    </DataItem>
    -<DataItem>
    <Setter Property="DisplayName">Lang-3</Setter>
    <Setter Property="Value">5</Setter>
    </DataItem>
    -<DataItem>
    <Setter Property="DisplayName">Lang-4</Setter>
    <Setter Property="Value">6</Setter>
    </DataItem>
    -<DataItem>
    <Setter Property="DisplayName">Lang-5</Setter>
    <Setter Property="Value">7</Setter>
    </DataItem>
    -<DataItem>
    <Setter Property="DisplayName">Lang-6</Setter>
    <Setter Property="Value">8</Setter>
    </DataItem>
    -<DataItem>
    <Setter Property="DisplayName">Lang-7</Setter>
    <Setter Property="Value">9</Setter>
    </DataItem>
    </Data>
    </Page>
    </Pages>
    -<StageGroups>
    -<StageGroup DisplayName="New Computer">
    -<Stage Name="NEWCOMPUTER" DisplayName="New Computer">
    <PageRef Page="WelcomePage"/>
    <PageRef Page="LanguagePage"/>
    <PageRef Page="SummaryPage"/>
    </Stage>
    -<Stage Name="NEWCOMPUTER.Prestaged" DisplayName="New Computer (prestaged media)">
    <PageRef Page="WelcomePage"/>
    <PageRef Page="BitLocker"/>
    <PageRef Page="UserRestorePage"/>
    <PageRef Page="ConfigScanBareMetal"/>
    <PageRef Page="ComputerPage"/>
    <PageRef Page="AdminAccounts"/>
    <PageRef Page="UDAPage"/>
    <PageRef Page="LanguagePage"/>
    <PageRef Page="ApplicationPage"/>
    <PageRef Page="SummaryPage"/>
    </Stage>
    </StageGroup>
    -<StageGroup DisplayName="Refresh">
    -<Stage Name="REFRESH" DisplayName="Refresh">
    <PageRef Page="WelcomePage"/>
    <PageRef Page="VolumePage"/>
    <PageRef Page="UserRestorePage"/>
    <PageRef Page="ConfigScanPage"/>
    <PageRef Page="ComputerPage"/>
    <PageRef Page="AdminAccounts"/>
    <PageRef Page="LanguagePage"/>
    <PageRef Page="ApplicationPage"/>
    <PageRef Page="SummaryPage"/>
    </Stage>
    </StageGroup>
    -<StageGroup DisplayName="Replace">
    -<Stage Name="REPLACE" DisplayName="Replace, in full OS">
    <PageRef Page="WelcomePageReplace"/>
    <PageRef Page="ConfigScanPage"/>
    <PageRef Page="RebootPage"/>
    </Stage>
    -<Stage Name="REPLACE.WinPE" DisplayName="Replace, in WinPE">
    <PageRef Page="UserCapturePageOldPC"/>
    <PageRef Page="ProgressPage"/>
    <PageRef Page="RebootAfterCapture"/>
    </Stage>
    </StageGroup>
    </StageGroups>
    </Wizard>

    I don't know much about the UDI but I think the FieldName should be TimeZoneName and not just TimeZone.

  • Obiee 11g and custom j2ee app using the same cookie name

    Hi,
    I wrote a same j2ee web application. i'am using authentification through a realm configured in the web.xml.
    This web app is deployed in the same weblogic than obiee 11g. What i want to do is to embed my application in a dashboard using an iframe tag, and use the same login from analytics to my custom web app.
    In this article http://docs.oracle.com/cd/E11035_01/wls100/security/thin_client.html#wp1039551, it is said that by default, all web apps in the sames weblogic server are using the same cookie name so that they share authentification between them. However, i have read in the web that analytics in obiee 11g is using a cookie with the name "ORA_BIPS_NQID".
    In the weblogic.xml of my custom application, i set the cookie-name parameter to ORA_BIPS_NQID. However, in the dashbord, it still prompt for authentification to my custom web app.
    How can we share authentification between analytics and a custom web app in the same weblogic ?
    NB : I dont want to pass the username et password through the url.
    Thanks.

    By default, if you don't specify a cookie-name in the weblogic.xml configuration file, the weblogic server create a cookie named JSESSIONID for your application. For exemple, if two applications use the default configuration, both of them will use the same cookie name which is JSESSIONID. In this case, when you log in the first application, your are automaticaly logged in the second application with the same credentials. I have already test this kind of integration and it works perfectly. You only need that the two applications are deployed in the same weblogic server.
    Now, i want to have the same behaviour between obiee 11g and my custom application deployed in the same weblogic server. I read somewhere in the web that obiee 11g presentation service (analytics) is configured with a cookie-name value = "ORA_BIPS_NQID". So in the weblogic.xml configuration file of my web app, i specify a cookie-name value = "ORA_BIPS_NQID" to have the same cookie-name between the two application. But, it still not work. It prompt for authentification in the dashboards.
    I now, that such an integration is possible, because the other bi applications (mapviewer, bipublisher,...) are actually other web applications. However when using, for exemple, maps in dashbords, the mapviwer application automaticaly user the credentials of the user connected in analytics.

  • How to map a resource-ref in Jdev11 deployment plan editor

    Hi all,
    I have a ADF/BC web application where the BC4J application module does connect to a JNDI data source.
    The ViewController project does declare the Datasource as needed resource in its web.xml:
    <resource-ref>
    <res-ref-name>jdbc/wlogDS</res-ref-name>
    <res-type>javax.sql.DataSource</res-type>
    <res-auth>Container</res-auth>
    </resource-ref>
    Now i need to map that resouurce-ref to an actual data source that exist in the application container at deploy time.
    As already in JDev 10.1.3 the deployment-plan editor provided during deployment from JDeveloper does not provide any means to enter the deployment mapping for that resourc-ref (When clicking on the node (which is named resouce-ref - that becomes very confusing in case you have defined three resource-refs in your web.xml) the right pane shows a gray pane without any edit controls) So I cannot enter the resource-ref-mapping unsing the Jdev UI.
    My workaround in 10.1.3 was to save the deployment plan to disk and manually edit it, adding
    <resource-ref-mapping name="jdbc/wlogDS" location="jdbc/wlogTestEnvDS">
    </resource-ref-mapping>
    to the orion-web-app document for that webapp
    But in Jdev 11 the deployment plan file format changed (including some binary inline checksums???)and when doing exactly the same thing, the loading of the manually edited file into Jdev Deployment plan editor fails with
    oracle.oc4j.admin.deploy.spi.exceptions.ExtendedConfigurationException: invalid entry size (expected 1886413103 but got 846 bytes)
         at oracle.oc4j.admin.deploy.spi.DeplConfiguration.restore(DeplConfiguration.java:1002)
         at oracle.oc4j.admin.deploy.spi.DeplConfiguration.restore(DeplConfiguration.java:738)
         at oracle.jdevimpl.deploy.jsr88.ConfigModel.loadConfig(ConfigModel.java:201)
         at oracle.jdevimpl.deploy.jsr88.Jsr88ConfigurationPanel.actionPerformed(Jsr88ConfigurationPanel.java:212)
         at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1849)
         at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2169)
         at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:420)
         at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:258)
         at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:234)
         at java.awt.Component.processMouseEvent(Component.java:5488)
         at javax.swing.JComponent.processMouseEvent(JComponent.java:3126)
         at java.awt.Component.processEvent(Component.java:5253)
         at java.awt.Container.processEvent(Container.java:1966)
         at java.awt.Component.dispatchEventImpl(Component.java:3955)
         at java.awt.Container.dispatchEventImpl(Container.java:2024)
         at java.awt.Component.dispatchEvent(Component.java:3803)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4212)
         at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3892)
         at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3822)
         at java.awt.Container.dispatchEventImpl(Container.java:2010)
         at java.awt.Window.dispatchEventImpl(Window.java:1774)
         at java.awt.Component.dispatchEvent(Component.java:3803)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:463)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:242)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:163)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:153)
         at java.awt.Dialog$1.run(Dialog.java:515)
         at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:209)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:461)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:242)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:163)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:157)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:149)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:110)
    Caused by: oracle.oc4j.admin.jmx.shared.exceptions.JMXRuntimeException: invalid entry size (expected 1886413103 but got 846 bytes)
         at oracle.oc4j.admin.jmx.shared.util.JarTool.readJar(JarTool.java:240)
         at oracle.oc4j.admin.deploy.spi.DeplConfiguration.parseDeploymentPlan(DeplConfiguration.java:1464)
         at oracle.oc4j.admin.deploy.spi.DeplConfiguration.restore(DeplConfiguration.java:761)
         ... 33 more
    Caused by: java.util.zip.ZipException: invalid entry size (expected 1886413103 but got 846 bytes)
         at java.util.zip.ZipInputStream.readEnd(ZipInputStream.java:368)
         at java.util.zip.ZipInputStream.read(ZipInputStream.java:141)
         at java.util.jar.JarInputStream.read(JarInputStream.java:171)
         at java.io.FilterInputStream.read(FilterInputStream.java:90)
         at oracle.oc4j.admin.jmx.shared.util.JarTool.copy(JarTool.java:1343)
         at oracle.oc4j.admin.jmx.shared.util.JarTool.readEntry(JarTool.java:255)
         at oracle.oc4j.admin.jmx.shared.util.JarTool.readJar(JarTool.java:232)
         ... 35 more
    oracle.oc4j.admin.jmx.shared.exceptions.JMXRuntimeException: invalid entry size (expected 1886413103 but got 846 bytes)
         at oracle.oc4j.admin.jmx.shared.util.JarTool.readJar(JarTool.java:240)
         at oracle.oc4j.admin.deploy.spi.DeplConfiguration.parseDeploymentPlan(DeplConfiguration.java:1464)
         at oracle.oc4j.admin.deploy.spi.DeplConfiguration.restore(DeplConfiguration.java:761)
         at oracle.oc4j.admin.deploy.spi.DeplConfiguration.restore(DeplConfiguration.java:738)
         at oracle.jdevimpl.deploy.jsr88.ConfigModel.loadConfig(ConfigModel.java:201)
         at oracle.jdevimpl.deploy.jsr88.Jsr88ConfigurationPanel.actionPerformed(Jsr88ConfigurationPanel.java:212)
         at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1849)
         at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2169)
         at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:420)
         at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:258)
         at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:234)
         at java.awt.Component.processMouseEvent(Component.java:5488)
         at javax.swing.JComponent.processMouseEvent(JComponent.java:3126)
         at java.awt.Component.processEvent(Component.java:5253)
         at java.awt.Container.processEvent(Container.java:1966)
         at java.awt.Component.dispatchEventImpl(Component.java:3955)
         at java.awt.Container.dispatchEventImpl(Container.java:2024)
         at java.awt.Component.dispatchEvent(Component.java:3803)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4212)
         at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3892)
         at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3822)
         at java.awt.Container.dispatchEventImpl(Container.java:2010)
         at java.awt.Window.dispatchEventImpl(Window.java:1774)
         at java.awt.Component.dispatchEvent(Component.java:3803)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:463)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:242)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:163)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:153)
         at java.awt.Dialog$1.run(Dialog.java:515)
         at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:209)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:461)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:242)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:163)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:157)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:149)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:110)
    Caused by: java.util.zip.ZipException: invalid entry size (expected 1886413103 but got 846 bytes)
         at java.util.zip.ZipInputStream.readEnd(ZipInputStream.java:368)
         at java.util.zip.ZipInputStream.read(ZipInputStream.java:141)
         at java.util.jar.JarInputStream.read(JarInputStream.java:171)
         at java.io.FilterInputStream.read(FilterInputStream.java:90)
         at oracle.oc4j.admin.jmx.shared.util.JarTool.copy(JarTool.java:1343)
         at oracle.oc4j.admin.jmx.shared.util.JarTool.readEntry(JarTool.java:255)
         at oracle.oc4j.admin.jmx.shared.util.JarTool.readJar(JarTool.java:232)
         ... 35 more
    ---- Embedded exception
    java.util.zip.ZipException: invalid entry size (expected 1886413103 but got 846 bytes)
         at java.util.zip.ZipInputStream.readEnd(ZipInputStream.java:368)
         at java.util.zip.ZipInputStream.read(ZipInputStream.java:141)
         at java.util.jar.JarInputStream.read(JarInputStream.java:171)
         at java.io.FilterInputStream.read(FilterInputStream.java:90)
         at oracle.oc4j.admin.jmx.shared.util.JarTool.copy(JarTool.java:1343)
         at oracle.oc4j.admin.jmx.shared.util.JarTool.readEntry(JarTool.java:255)
         at oracle.oc4j.admin.jmx.shared.util.JarTool.readJar(JarTool.java:232)
         at oracle.oc4j.admin.deploy.spi.DeplConfiguration.parseDeploymentPlan(DeplConfiguration.java:1464)
         at oracle.oc4j.admin.deploy.spi.DeplConfiguration.restore(DeplConfiguration.java:761)
         at oracle.oc4j.admin.deploy.spi.DeplConfiguration.restore(DeplConfiguration.java:738)
         at oracle.jdevimpl.deploy.jsr88.ConfigModel.loadConfig(ConfigModel.java:201)
         at oracle.jdevimpl.deploy.jsr88.Jsr88ConfigurationPanel.actionPerformed(Jsr88ConfigurationPanel.java:212)
         at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1849)
         at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2169)
         at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:420)
         at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:258)
         at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:234)
         at java.awt.Component.processMouseEvent(Component.java:5488)
         at javax.swing.JComponent.processMouseEvent(JComponent.java:3126)
         at java.awt.Component.processEvent(Component.java:5253)
         at java.awt.Container.processEvent(Container.java:1966)
         at java.awt.Component.dispatchEventImpl(Component.java:3955)
         at java.awt.Container.dispatchEventImpl(Container.java:2024)
         at java.awt.Component.dispatchEvent(Component.java:3803)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4212)
         at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3892)
         at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3822)
         at java.awt.Container.dispatchEventImpl(Container.java:2010)
         at java.awt.Window.dispatchEventImpl(Window.java:1774)
         at java.awt.Component.dispatchEvent(Component.java:3803)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:463)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:242)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:163)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:153)
         at java.awt.Dialog$1.run(Dialog.java:515)
         at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:209)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:461)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:242)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:163)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:157)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:149)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:110)
    So no chance here to add a resource-ref-mapping. The alternative way of specifying a resource-ref-mapping using the web-based deployment proces of the Enterprise manager is impossible because the 11g preview OC4j does not include an enterprise manger web-application.
    So how do I deploy the application correctly other that manually modifying the deployed orion-web-app.xml file in j2ee/home/application-deployments/earName/warName/orion-web-app.xml after deploying the app without a resource-ref-mapping? Because doing that step manually each time is quite annoying.
    Greetings,
    Thomas

    Seems i'm slowly answering my own questions :-) I finally got my RMI service, even using several methods. But ...
    It doesnt help me as the lookups are not done on the context classloader it seems. That means i need to add all my service jars to the global class path causing massive sealing issues with the war contained jars. Pretty useless. All the needed stubs etc are in the war.
    But as it seems that the web app needs to contain deployment site info (sun-web.xml) anyway, i could just as easy read my own web xml from the context and resolve the services myself. But i do wonder how this is supposed to work with EJB and CORBA stuff. The samples actually also needed to add stuff to the global class path.
    I'm probably not the easiest customer as i write this kind of middle ware for a living but i really like sjsws. It makes my own one partly obsolete as it is almost as fast and has all the fancy deployment stuff (in my case i use an in-house mobile agent frame work and agents that travel the various networks ) and infinitely easier to learn to work with and understand In case anyone is wondering i wrote Uhura because 1. i needed speed so it is a servlet based webserver and not a web server with a servlet module. 2. could not wait on ibm to fix bugs in webspere and we only used the servlet bit. 2. i needed full J2EE security and 3. i needed it to run on many OS'es
    That is why i still need the same war files to be able to be deployed in both systems as i still need my systems going on IBM iservers etc.
    Again i would welcome some feed back on such and related issues
    Cheers,
    Peter

  • The user '*' preference item in the 'User - 6th Form Students Policy {E03166E7-A848-48B5-AA93-97B848AA9C13}' Group Policy object did not apply because it failed with error code '0x80070003 The system cannot find the path specified.' This error was suppres

    I am looking at an issue with users not getting specific group policies. 
    After searching a number of client computers I found that the following error
    The user '*' preference item in the 'User - 6th Form Students Policy {E03166E7-A848-48B5-AA93-97B848AA9C13}' Group Policy object did not apply because it failed with error code '0x80070003 The system cannot find the path specified.' This error was suppressed.
    I can find the folder in the Sysvol folder on all of the domain controllers. 
    The issue with end users seems to be that the proxy settings for internet explorer is not being applied. 
    Potential problems?
    one folder in sysvol entry is empty 
    \\<server>\SYSVOL\<domain.name>\Policies\{E03166E7-A848-48B5-AA93-97B848AA9C13}\User\microsoft\IEAK\LOCK
    or is this our issue
    The old method of configuring proxy settings  to Internet Explorer 9 has changed?
    https://support2.microsoft.com/kb/2530309?wa=wsignin1.0 
    http://thommck.wordpress.com/2013/11/08/the-new-way-to-configure-internet-explorer-proxy-settings-with-group-policy/

    Hi all 
    In administering this policy I am a little confused. 
    We have a policy that distributes proxy settings in the internet explorer maintenance settings section - however when opening this policy up in GPO editor the internet explorer maintenance section is not present.
    I plan to apply the settings via User/preferences/control panel settings/ internet settings (or registry settings from article) however I am unable to edit the settings for internet explorer maintenance and these will persist. Ideas????

  • War file deployment to Test env not working

    Hi All,
    i am using war file as scheduler for calling bpel process. Now i need to move the same war to test environment. For this i followed this site http://biemond.blogspot.ca/2009/04/using-weblogic-deployment-plan-to.html. But it is not working.
    even i update the generated deployment plan to weblogic console, but still this is not working.
    here is the my web.xml file
    <?xml version = '1.0' encoding = 'windows-1252'?>
    <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
             xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
             version="2.5" xmlns="http://java.sun.com/xml/ns/javaee">
      <description>Empty web.xml file for Web Application</description>
        <context-param> 
            <param-name>wsdlUrl</param-name> 
            <param-value>http://sasoah91.corp.gdglobal.ca:8001/soa-infra/services/TarakTest/TSStoRMSScheduler/tsstormsschedulerproject_client_ep?WSDL</param-value> 
         </context-param>
      <servlet>
        <servlet-name>SOASchedulerServlet</servlet-name>
        <servlet-class>sample.oracle.otn.soascheduler.SOASchedulerServlet</servlet-class>
         <init-param>
          <param-name>cronExpr</param-name>
          <param-value>0 0,5,10,15,20,25,30,35,40,45,50,55 * * * ?</param-value>
        </init-param>
      </servlet>
      <servlet-mapping>
        <servlet-name>SOASchedulerServlet</servlet-name>
        <url-pattern>/soaschedulerservlet</url-pattern>
      </servlet-mapping>
      <welcome-file-list>
        <welcome-file>/soaschedulerservlet</welcome-file>
      </welcome-file-list>
    </web-app>My deployment plan is
    <?xml version='1.0' encoding='UTF-8'?>
    <deployment-plan xmlns="http://xmlns.oracle.com/weblogic/deployment-plan" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.oracle.com/weblogic/deployment-plan http://xmlns.oracle.com/weblogic/deployment-plan/1.0/deployment-plan.xsd" global-variables="false">
      <application-name>TSSScheduler.war</application-name>
      <variable-definition>
      <!--  add the wsdl var   -->
        <variable>
            <name>wsdlUrl</name>
            <value>http://sasoah81.corp.gdglobal.ca:8001/soa-infra/services/TSStoRMS/TSStoRMSScheduler/tsstormsschedulerproject_client_ep?WSDL/</value>
         </variable>
        </variable-definition>
      <module-override>
        <module-name>TSSScheduler.war</module-name>
        <module-type>war</module-type>
        <module-descriptor external="false">
          <root-element>weblogic-web-app</root-element>
          <uri>WEB-INF/web.xml</uri>
              <variable-assignment>
             <name>wsdlUrl</name>
             <xpath>/web-app/context-param/[param-name="wsdlUrl"]/param-value</xpath>
             <operation>replace</operation>
           </variable-assignment>
          </module-descriptor>
      </module-override>
      <!--<config-root>/u01/textdata/SOATST/Tarak/TsstoRmsSchedulerProject/deploy</config-root>-->
    <config-root>/u01/textdata/SOATST/Tarak/deploymentplan</config-root>
    </deployment-plan>I ran below code
    export ORACLE_HOME="/u01/app/soadev/product/fmw11/middleware"
    echo "ORACLE_HOME=$ORACLE_HOME"
    ls -l $MW_HOME/wlserver_10.3/server/bin/setWLSEnv.sh
    . $MW_HOME/wlserver_10.3/server/bin/setWLSEnv.sh
    export JAVA_HOME="/usr/java/jdk1.6.0_24"
    export planname="TSSScheduler.xml"
    export warfile="/u01/textdata/SOATST/Tarak/TsstoRmsSchedulerProject/deploy/TSSScheduler.war"
    echo "---------------------------------------"
    echo "THE CLASSPATH=$CLASSPATH"
    echo "---------------------------------------"
    java weblogic.Deployer -adminurl t3://sasoah81.corp.gdglobal.ca:7001 -username weblogic -password Soatst_s132 -deploy -name TsstoRmsSchedulerProject -source $warfile -targets AdminServer -stage -plan $plannameCan some one please let me know where i am going...
    Also can some one tell me any other way to change the endpoint in war file. this is very urgent so kindly request all to let me know how to go with it.
    Regards,
    Tarak.

    Hi,
    Here is what the parameter says
    <servlet>
    <servlet-name>SOASchedulerServlet</servlet-name>===================My Serverlet name
    <servlet-class>sample.oracle.otn.soascheduler.SOASchedulerServlet</servlet-class>======Server class
    <init-param>
    <param-name>cronExpr</param-name>=======this is cron job
    <param-value>0 0,5,10,15,20,25,30,35,40,45,50,55 * * * ?</param-value>===this invoke my bpel process in every 5 mins.
    </init-param>
    </servlet>
    Please see the side line comments
    Sure i will open the ticket,
    Regards,
    Tarak.

Maybe you are looking for

  • How to add data in User Defined table

    Hello Experts, I have design form in screen painter , 3 text boxes and labels, 2 add buttons with uid 1 and 2 , and i have created tables and fields maually and registered new object i have also mentioned table name and alias in property box with fie

  • Problems with form created in muse to use in business catalyst ecommerce checkout

    I am trying to create a form to use with my BC hosted site for the commerce module checkout I have created a sample form - but every time I update the site it overwrites the form that I have modified in BC I have checked the option to not export the

  • Aperture 3 and Photoshop workflow

    I have recently been opening a lot of my RAW files in Photoshop (via external editor). However when I do so Aperture comes becomes quite sluggish when viewing the newly saved 256MB PSD with the context of Aperture. I am just wondering what people use

  • IOS 8 Shared Photos Stored Twice on Devices?

    I have an iPhone 5 and an iPad Air, both with iOS 8.1.2 installed, and both using the iCloud Photo Library Beta feature. I've been taking photos on my phone as I normally would, and I love that they're all automatically on the iPad. I've also been sh

  • How does interfaces overcome the problem of single inheritance?

    1) How does interfaces overcome the problem of single inheritance? Can anyone give an example of how it works? 2) In a Java book, I read: "Interfaces are implemented and used throughout the Java class library when behavior is expected to be implement