There is an error in XML document (33, 30)

EDN Admin

Well-known member
Joined
Aug 7, 2010
Messages
12,794
Location
In the Machine
Hi all,
I have an SCCM software distribution package that runs a splash screen notifying the user that official software is about to install on there computer, and then, in the background, it install the application, which is this case is a small .msi file
that installs an AT&T web conferencing application called AT&T Connect.
This same procedure works perfectly for all my other software distribution packages, just not this one, and I cant figure out why. Here is the process: A .cmd file is triggered, which runs an executable called runtasks.exe,
which invokes the .xml file that is generating the error. The purpose of the .xml file is to provide the splash screen information and to execute the actual software application installer, which you can see below in the <commandline> section.
I am hoping that one of you can tell me why this installation is failing with thie error message "There is an error in XML document (33, 30)", especially when I can run the exact same msiexec command at the command prompt and the application installs without
error. What am I missing?
Thanks in advance for any assistance provided.
<?xml version="1.0" encoding="utf-8"?>
<Root xmlns:xsi=" http://www.w3.org/2001/XMLSchema-instance http://www.w3.org/2001/XMLSchema-instance " xmlns:xsd=" http://www.w3.org/2001/XMLSchema http://www.w3.org/2001/XMLSchema
<timestarted />
<timecompleted><br/>
</timecompleted>
<images>
<image>IMG_X.png</image><br/>
</images>
<logfile>C:DRVLOGSXIF_PostInstall.LOG</logfile><br/>
<splashforecolor>Silver</splashforecolor><br/>
<splashbackcolor>Black</splashbackcolor><br/>
<BckGrndColor>Black</BckGrndColor><br/>
<TextColor>Silver</TextColor><br/>
<showsplash>true</showsplash>
<customermsg>Installing User-Specific Software Applications...Please wait...</customermsg>
<TaskGroups>
<TaskGroup name="User-based Software Distribution" priority="1" completed="false
<timestarted />
<timecompleted></timecompleted>
<Tasks><br/>
<Task priority="1" name="AT&T Connect Participant 9.3.14" completed="false
<timestarted></timestarted>
<timecompleted></timecompleted>
<commandline>msiexec /i ATT_Connect_Participant.msi /qb!</commandline>
<waitonreturn>true</waitonreturn>
<showconsole>false</showconsole>
<exitoncomplete>false</exitoncomplete>
</Task><br/>
</Tasks>
</TaskGroup>
</TaskGroups>
</Root>
<hr class="sig Best regards, Bryan Byrne, MCSA, MCSE, PMP

View the full article
 
Back
Top