RoystonS / BetterBravoLights

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

Can you help fix my corrupt exe.xml file? #50

Open ronprice46 opened 2 years ago

ronprice46 commented 2 years ago

Software version

0.8.2

Location of my exe.xml file

C:\Users\RONPR\AppData\Local\Packages\Microsoft.FlightSimulator_8wekyb3d8bbwe\LocalCache\exe.xml

Contents of my exe.xml file

<?xml version="1.0" encoding="windows-1252"?>
<SimBase.Document Type="Launch" version="1,0">
    <Descr>Launch</Descr>
    <Filename>EXE.xml</Filename>
    <Disabled>False</Disabled>
    <Launch.ManualLoad>False</Launch.ManualLoad>
  <Launch.Addon>
    <Disabled>False</Disabled>
    <ManualLoad>False</ManualLoad>
    <Name>FSUIPC7</Name>
    <Path>C:\FSUIPC7\FSUIPC7.exe</Path>
    <CommandLine>-auto</CommandLine>
    <NewConsole>False</NewConsole>
  </Launch.Addon>
  <Launch.Addon>
    <Name>BravoLights</Name>
    <Disabled>False</Disabled>
    <ManualLoad>False</ManualLoad>
    <Path>C:\Users\RONPR\Desktop\BetterBravoLights_JRpUI\Program\BetterBravoLights.exe</Path>
    <CommandLine>/startedbysimulator</CommandLine>
    <NewConsole>False</NewConsole>
  </Launch.Addon>
    <Name>FenixA320</Name>
    <Disabled>False</Disabled>
    <Path>C:\Program Files\FenixSim A320\deps\FenixBootstrapper.exe</Path>
  </Launch.Addon>
</SimBase.Document>

The installation error

The 'SimBase.Document' start tag on line 2 position 2 does not match the end tag of 'Launch.Addon'. Line 26, position 5.
RoystonS commented 2 years ago

Hi @ronprice46

I've not seen that particular fault before. Thankfully it's fairly easy to fix.

Just before the 'FenixA320' section there seems to be a missing start <Launch.Addon> tag. That's very interesting, and suggests there's a problem with the Fenix A320 code which modifies this file. I'll keep an eye on that.

(The technical detail: your file basically contains 3 addons, FSUIPC7, BBL and A320. Each addon should start with <Launch.Addon> and end with </Launch.Addon>. The start <Launch.Addon> for the Fenix section is missing.)

So, your whole file should look like this:

<?xml version="1.0" encoding="windows-1252"?>
<SimBase.Document Type="Launch" version="1,0">
    <Descr>Launch</Descr>
    <Filename>EXE.xml</Filename>
    <Disabled>False</Disabled>
    <Launch.ManualLoad>False</Launch.ManualLoad>
  <Launch.Addon>
    <Disabled>False</Disabled>
    <ManualLoad>False</ManualLoad>
    <Name>FSUIPC7</Name>
    <Path>C:\FSUIPC7\FSUIPC7.exe</Path>
    <CommandLine>-auto</CommandLine>
    <NewConsole>False</NewConsole>
  </Launch.Addon>
  <Launch.Addon>
    <Name>BravoLights</Name>
    <Disabled>False</Disabled>
    <ManualLoad>False</ManualLoad>
    <Path>C:\Users\RONPR\Desktop\BetterBravoLights_JRpUI\Program\BetterBravoLights.exe</Path>
    <CommandLine>/startedbysimulator</CommandLine>
    <NewConsole>False</NewConsole>
  </Launch.Addon>
  <Launch.Addon>
    <Name>FenixA320</Name>
    <Disabled>False</Disabled>
    <Path>C:\Program Files\FenixSim A320\deps\FenixBootstrapper.exe</Path>
  </Launch.Addon>
</SimBase.Document>

Try that, and let me know how you get on?

ronprice46 commented 2 years ago

So i have the issue again after installing GSX Pro so can i send my EXE to you again to see and help me figure out what is causing things to not start

RoystonS commented 2 years ago

So i have the issue again after installing GSX Pro so can i send my EXE to you again to see and help me figure out what is causing things to not start

Of course.

ronprice46 commented 2 years ago

Attached is the EXE and nothing starts with the sim and i have to manually do it. tried via what you told me and nothing changed

On Sun, Sep 11, 2022 at 1:21 PM Royston Shufflebotham < @.***> wrote:

So i have the issue again after installing GSX Pro so can i send my EXE to you again to see and help me figure out what is causing things to not start

Of course.

— Reply to this email directly, view it on GitHub https://github.com/RoystonS/BetterBravoLights/issues/50#issuecomment-1243016764, or unsubscribe https://github.com/notifications/unsubscribe-auth/AITC4UPCD3RDWGCA7AUGRPLV5YPK5ANCNFSM57CQFCNA . You are receiving this because you were mentioned.Message ID: @.***>

-- Ronald Price

ronprice46 commented 2 years ago

I also am pasting the contents here to also help

<?xml version="1.0" encoding="UTF-8"?>
<SimBase.Document Type="Launch" version="1,0">
  <Descr>Launch</Descr>
  <Filename>EXE.xml</Filename>
  <Disabled>False</Disabled>
  <Launch.ManualLoad>False</Launch.ManualLoad>
  <Launch.Addon>
    <Disabled>False</Disabled>
    <ManualLoad>False</ManualLoad>
    <Name>FSUIPC7</Name>
    <Path>C:\FSUIPC7\FSUIPC7.exe</Path>
    <CommandLine>-auto</CommandLine>
    <NewConsole>False</NewConsole>
  </Launch.Addon>
  <Launch.Addon>
    <Name>BravoLights</Name>
    <Disabled>False</Disabled>
    <ManualLoad>False</ManualLoad>
    <Path>C:\Users\RONPR\Desktop\BetterBravoLights_JRpUI\Program\BetterBravoLights.exe</Path>
    <CommandLine>/startedbysimulator</CommandLine>
    <NewConsole>False</NewConsole>
  </Launch.Addon>
  <Launch.Addon>
    <Name>FenixA320</Name>
    <Disabled>False</Disabled>
    <Path>C:\Program Files\FenixSim A320\deps\FenixBootstrapper.exe</Path>
  </Launch.Addon>
  <Launch.Addon>
    <Name>Couatl</Name>
    <Disabled>False</Disabled>
    <Path>C:\Program Files (x86)\Addon Manager\couatl64\couatl64_MSFS.exe</Path>
  </Launch.Addon>
</SimBase.Document>
RoystonS commented 2 years ago

Did it work after you applied my previous suggested content? (Before you installed Couatl?)

The content you've posted looks fine, but I've seen other situations where somebody's exe.xml file looks fine but none of the programs start up.

So, do any of the programs start up with MSFS? This can sometimes be difficult to detect: if programs are still running in the background since the last launch of MSFS, they won't start up with MSFS because they're already running.

ronprice46 commented 2 years ago

none start up

On Sun, Sep 11, 2022 at 1:47 PM Royston Shufflebotham < @.***> wrote:

Did it work after you applied my previous suggested content? (Before you installed Couatl?)

The content you've posted looks fine, but I've seen other situations where somebody's exe.xml file looks fine but none of the programs start up.

So, do any of the programs start up with MSFS? This can sometimes be difficult to detect: if programs are still running in the background since the last launch of MSFS, they won't start up with MSFS because they're already running.

— Reply to this email directly, view it on GitHub https://github.com/RoystonS/BetterBravoLights/issues/50#issuecomment-1243020870, or unsubscribe https://github.com/notifications/unsubscribe-auth/AITC4UOHHXRF5ACO5KORMDTV5YSNTANCNFSM57CQFCNA . You are receiving this because you were mentioned.Message ID: @.***>

-- Ronald Price

ronprice46 commented 2 years ago

unless i open them myself would the reshade program that was released for fs2020 do it

On Sun, Sep 11, 2022 at 1:51 PM Ronald Price @.***> wrote:

none start up

On Sun, Sep 11, 2022 at 1:47 PM Royston Shufflebotham < @.***> wrote:

Did it work after you applied my previous suggested content? (Before you installed Couatl?)

The content you've posted looks fine, but I've seen other situations where somebody's exe.xml file looks fine but none of the programs start up.

So, do any of the programs start up with MSFS? This can sometimes be difficult to detect: if programs are still running in the background since the last launch of MSFS, they won't start up with MSFS because they're already running.

— Reply to this email directly, view it on GitHub https://github.com/RoystonS/BetterBravoLights/issues/50#issuecomment-1243020870, or unsubscribe https://github.com/notifications/unsubscribe-auth/AITC4UOHHXRF5ACO5KORMDTV5YSNTANCNFSM57CQFCNA . You are receiving this because you were mentioned.Message ID: @.***>

-- Ronald Price

-- Ronald Price