Hello,
I'm facing a problem deploying applications with UI++ and don't know how to solve it.
I choose the application I need during imaging (pre-Task Sequence), the problem is that some application succeed to install but one doesn't.
The application is a C2R OFFICE 2016, I can deploy this application without problem through software center, then I would say that the application is well configured.
But if I select it with the UI++ interface during pre-task sequence, the OSD fails when it runs the UI++ software installation for OFFICE 2016with the error code 0X8007005
Here is the XML file:
Thanks.
I'm facing a problem deploying applications with UI++ and don't know how to solve it.
I choose the application I need during imaging (pre-Task Sequence), the problem is that some application succeed to install but one doesn't.
The application is a C2R OFFICE 2016, I can deploy this application without problem through software center, then I would say that the application is well configured.
But if I select it with the UI++ interface during pre-task sequence, the OSD fails when it runs the UI++ software installation for OFFICE 2016with the error code 0X8007005
Here is the XML file:
How can I troubleshoot this problem ?<?xml version="1.0" encoding="utf-8"?>
<UIpp Title="MyCompany" Icon="MyCompany.ico" Color="#433834" Flat="True">
<Software>
<Application Id="00000001" Label="Microsoft Office 2016" Name="Office 2016"/>
<Application Id="00000002" Label="Microsoft Office 365 V1" Name="Office 365 V1"/>
</Software>
<Actions>
<Action Type="UserAuth" Title="User Authentication" Domain="domgrosfillex.com" MaxRetryCount="5" Group="GRP_OSD_Allowed" GetGroups="True"/>
<Action Type="DefaultValues" />
<Action Type="WMIRead" Variable="ComputerName" Namespace="root\cimv2" Class="Win32_ComputerSystem" Property="Name"/>
<Action Type="WMIRead" Variable="CurrentTier" Namespace="root\ITLocal" Class="Local_Config" Property="Tier"/>
<Action Type="RegRead" Hive="HKLM" Key="SOFTWARE\Microsoft\Windows NT\CurrentVersion" Value="CurrentVersion" Variable="CurrentVersion" />
<Action Type="Info" Name="myInfo" Title="Welcome %XAuthenticatedUserDisplayName%" ShowCancel="True" ShowBack="True">
<![CDATA[ <b>Manufacturer:</b> %XHWManufacturer% <br><b>Model:</b> %XHWModel% <br><b>Type:</b> %XHWChassisType%<br><b>Serial Number:</b> %XHWSerialNumber% <br><b>Mac Address:</b> %XMACAddress% <br><b>IP Address:</b> %XIPAddress% <br>]]>
</Action>
<Action Type="AppTree" Size="Regular" Title="Choose Software" ShowBack="True" ApplicationVariableBase="APP">
<SoftwareSets>
<Set Name="IT">
<SoftwareGroup Id="0000000F" Label="Version OFFICE" >
<SoftwareRef Id="00000001" />
<SoftwareRef Id="00000002" />
</SoftwareGroup>
</Set>
</SoftwareSets>
</Action>
<Action Type="Input" Name="LocationChoice" Title="System Location" ShowBack="True">
<TextInput Prompt="System Name" Hint="Enter the name for this system" RegEx="[/w/d-]{3-15}" Variable="SystemName" Question="System Name" Required="True" ADValidate="ComputerWarning"/>
<ChoiceInput Variable="Languages" Question="Choose the country" Required="True" Default="FR" >
<Choice Option="France" Value="FR"/>
<Choice Option="Suisse" Value="CH"/>
<Choice Option="Espagne" Value="ES"/>
<Choice Option="Royaume-Uni" Value="EN"/>
<Choice Option="Allemagne" Value="DE" />
<Choice Option="Pays-Bas" Value="NL" />
<Choice Option="Italie" Value="IT" />
</ChoiceInput>
</Action>
<Action Type="TSVar" Name="OSDComputerName" >"%SystemName%"</Action>
<Action Type="TSVar" Name="Location" >"%Languages%"</Action>
</Actions>
<Messages>
<Message Id="COMPUTEREXISTS">Sorry, a computer already exists with that name. Please try another name WWWW.</Message>
<Message Id="COMPUTEREXISTSWARNING">Warning,!!!!! a computer with this name already exists but you may continue if desired.</Message>
<Message Id="AUTHENTICATING">Now authenticating user ...</Message>
</Messages>
</UIpp>
Thanks.