prepar3d DLL Question

By Default you will have an exe.xml and a dll.xml file at the location below, If you ever Delete these files, Prepar3D will Generate them again as Default when launched

Local Disk (C:) ► ProgramData ► Lockheed Martin ► Prepar3D v3 dll.xml exe.xml.

The Header Code in your exe.xml file in AppData\Roaming is always the same and its the first 6 lines.

Below is just the Header code (No Add On's)

<?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>


Below is your Header Code with 1 Add On, You will have to Entry your own Driver letter, Name Application, Path and Add On.exe into it

<?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>Addon Application</Name>
<Path>C:\MyPath\Addon.exe</Path>
<NewConsole>True</NewConsole>
</Launch.Addon>

</SimBase.Document>



The </SimBase.Document> line will always be at the bottom of ever dll.xml and exe.xml file, These files will not work without the </SimBase.Document>


Hope that helps.
 
Back
Top