RoystonS / BetterBravoLights

Utility for controlling lights on a Honeycomb Bravo Throttle from Microsoft Flight Simulator
MIT License
43 stars 8 forks source link

Corrupt exe.xml file. Please, help. Thank so much. #72

Open joseluisortegac opened 6 months ago

joseluisortegac commented 6 months ago

Software version

0.8.2.

Location of my exe.xml file

C:\Users\orteg\AppData\Local\Packages\Microsoft.FlightSimulator_8wekyb3d8bbwe\LocalCache

Contents of my exe.xml file

<?xml version="1.0" encoding="Windows-1252" ?>
        <Name>IVAO Pilot Client</Name>
        <Disabled>False</Disabled>        <Path>C:\Users\orteg\AppData\Local\Packages\Microsoft.FlightSimulator_8wekyb3d8bbwe\LocalCache\Packages\IVAO\PilotCore\pilot_core_fs2020.exe</Path>
        <Commandline />
    </Launch.Addon>
    <Launch.Addon>
        <Name>IVAO Pilot Client</Name>
        <Disabled>False</Disabled>        <Path>C:\Users\orteg\AppData\Local\Packages\Microsoft.FlightSimulator_8wekyb3d8bbwe\LocalCache\Packages\IVAO\PilotCore\pilot_core_fs2020.exe</Path>
        <Commandline />
    </Launch.Addon>
    <Launch.Addon>
        <Name>IVAO Pilot Client</Name>
        <Disabled>False</Disabled>        <Path>C:\Users\orteg\AppData\Local\Packages\Microsoft.FlightSimulator_8wekyb3d8bbwe\LocalCache\Packages\IVAO\PilotCore\pilot_core_fs2020.exe</Path>
        <Commandline />
    </Launch.Addon>
</Launch.Addon>
  <Launch.Addon>
    <Name>AFCBridge</Name>
    <Disabled>False</Disabled>    <Path>C:\Users\orteg\AppData\Local\Packages\Microsoft.FlightSimulator_8wekyb3d8bbwe\LocalCache\Packages\community\AFC_Bridge\bin\AFC_Bridge.exe</Path>
   </Launch.Addon>
</SimBase.Document>

The installation error

There is not a specific error. It only says that the exe.xml file is corrupted and shows the folder where the file is.
RoystonS commented 5 months ago

Hey @joseluisortegac

Yep, your exe.xml file is corrupt. There are several issues:

  1. The initial <SimBase.Document> line is missing.
  2. It's missing a <Launch.Addon> line for the first addon entry.
  3. There is a stray extra </Launch.Addon> closing line after the IVAO entries.

So you'll want to replace it with:

<?xml version="1.0" encoding="Windows-1252" ?>
<SimBase.Document>
  <Launch.Addon>
        <Name>IVAO Pilot Client</Name>
        <Disabled>False</Disabled>        <Path>C:\Users\orteg\AppData\Local\Packages\Microsoft.FlightSimulator_8wekyb3d8bbwe\LocalCache\Packages\IVAO\PilotCore\pilot_core_fs2020.exe</Path>
        <Commandline />
    </Launch.Addon>
    <Launch.Addon>
        <Name>IVAO Pilot Client</Name>
        <Disabled>False</Disabled>        <Path>C:\Users\orteg\AppData\Local\Packages\Microsoft.FlightSimulator_8wekyb3d8bbwe\LocalCache\Packages\IVAO\PilotCore\pilot_core_fs2020.exe</Path>
        <Commandline />
    </Launch.Addon>
    <Launch.Addon>
        <Name>IVAO Pilot Client</Name>
        <Disabled>False</Disabled>        <Path>C:\Users\orteg\AppData\Local\Packages\Microsoft.FlightSimulator_8wekyb3d8bbwe\LocalCache\Packages\IVAO\PilotCore\pilot_core_fs2020.exe</Path>
        <Commandline />
    </Launch.Addon>
  <Launch.Addon>
    <Name>AFCBridge</Name>
    <Disabled>False</Disabled>    <Path>C:\Users\orteg\AppData\Local\Packages\Microsoft.FlightSimulator_8wekyb3d8bbwe\LocalCache\Packages\community\AFC_Bridge\bin\AFC_Bridge.exe</Path>
   </Launch.Addon>
</SimBase.Document>

However, it looks like 'IVAO Pilot Client' has put itself in that file three times (and may have caused the corruption) so you might want to reduce some of those duplicate entries down to just:

<?xml version="1.0" encoding="Windows-1252" ?>
<SimBase.Document>
    <Launch.Addon>
        <Name>IVAO Pilot Client</Name>
        <Disabled>False</Disabled>        <Path>C:\Users\orteg\AppData\Local\Packages\Microsoft.FlightSimulator_8wekyb3d8bbwe\LocalCache\Packages\IVAO\PilotCore\pilot_core_fs2020.exe</Path>
        <Commandline />
    </Launch.Addon>
  <Launch.Addon>
    <Name>AFCBridge</Name>
    <Disabled>False</Disabled>    <Path>C:\Users\orteg\AppData\Local\Packages\Microsoft.FlightSimulator_8wekyb3d8bbwe\LocalCache\Packages\community\AFC_Bridge\bin\AFC_Bridge.exe</Path>
   </Launch.Addon>
</SimBase.Document>

So you can see there that we have a <SimBase.Document> at the start, and a closing </SimBase.Document> at the end, and each addon entry has a <Launch.Addon> at the start, and a closing </Launch.Addon> at its end.

Hope that helps?

joseluisortegac commented 5 months ago

Hi Royston,

I do really appreciate your support. I tried to do it by myself but without success. I hope I can install now the addon to use the Bravo Throttle Quadrant lights.

Kindest regards,

José Luis Ortega

El mar, 23 abr 2024 a las 13:24, Royston Shufflebotham (< @.***>) escribió:

Hey @joseluisortegac https://github.com/joseluisortegac

Yep, your exe.xml file is corrupt. There are several issues:

  1. The initial line is missing.
  2. It's missing a line for the first addon entry.
  3. There is a stray extra </Launch.Addon> closing line after the IVAO entries.

So you'll want to replace it with:

<?xml version="1.0" encoding="Windows-1252" ?>

IVAO Pilot Client False C:\Users\orteg\AppData\Local\Packages\Microsoft.FlightSimulator_8wekyb3d8bbwe\LocalCache\Packages\IVAO\PilotCore\pilot_core_fs2020.exe IVAO Pilot Client False C:\Users\orteg\AppData\Local\Packages\Microsoft.FlightSimulator_8wekyb3d8bbwe\LocalCache\Packages\IVAO\PilotCore\pilot_core_fs2020.exe IVAO Pilot Client False C:\Users\orteg\AppData\Local\Packages\Microsoft.FlightSimulator_8wekyb3d8bbwe\LocalCache\Packages\IVAO\PilotCore\pilot_core_fs2020.exe AFCBridge False C:\Users\orteg\AppData\Local\Packages\Microsoft.FlightSimulator_8wekyb3d8bbwe\LocalCache\Packages\community\AFC_Bridge\bin\AFC_Bridge.exe However, it looks like 'IVAO Pilot Client' has put itself in that file three times (and may have caused the corruption) so you might want to reduce some of those duplicate entries down to just: IVAO Pilot Client False C:\Users\orteg\AppData\Local\Packages\Microsoft.FlightSimulator_8wekyb3d8bbwe\LocalCache\Packages\IVAO\PilotCore\pilot_core_fs2020.exe AFCBridge False C:\Users\orteg\AppData\Local\Packages\Microsoft.FlightSimulator_8wekyb3d8bbwe\LocalCache\Packages\community\AFC_Bridge\bin\AFC_Bridge.exe So you can see there that we have a at the start, and a closing at the end, and each addon entry has a at the start, and a closing at its end. Hope that helps? — Reply to this email directly, view it on GitHub , or unsubscribe . You are receiving this because you were mentioned.Message ID: ***@***.***>