1.Right click and edit "exe.xml" found in "C:\Users\your user name\AppData\Roaming\Microsoft\FSX"
2.Add this to your exe.xml just above the last entry called </SimBase.Document>
<Launch.Addon>
<Disabled>False</Disabled>
<ManualLoad>False</ManualLoad>
<Name>FSXWX</Name>
<Path>C:\Windows\System32\wscript.exe</Path>
<CommandLine>C:\FSX\Modules\FSXWX\fsxwx-connect.vbs</CommandLine>
</Launch.Addon>
3.Make sure <CommandLine>C:\FSX\Modules\FSXWX\fsxwx-connect.vbs</CommandLine> has the same path as your FSXWX installation folder, "fsxwx-connect.vbs" will be created later.
4.Save and exit
5. Right click and create a new text document in your FSXWX installation folder
6. Copy and paste these commands
Set oShell = CreateObject("WScript.Shell")
WScript.Sleep 10000
oShell.Run("""C:\FSX\Modules\FSXWX\FSXWX.exe""")
WScript.Sleep 3000
oShell.AppActivate "FSXWX 1.5.5"
WScript.Sleep 50
oShell.SendKeys "{ENTER}"
7.WScript.Sleep 10000 is a delay in milliseconds (10 seconds) to allow FSX to startup before FSXWX - increase if it takes longer otherwise it wont connect
8.Make sure oShell.Run("""C:\FSX\Modules\FSXWX\FSXWX.exe""") has the same path as your FSXWX installation folder
9.FSXWX 1.5.5 is the title of the application window - this must be changed for new versions as the script changes focus to this windows name and then hits ENTER for you (Connect)
10.Save, exit and rename as fsxwx-connect.vbs
Start FSX normally and it will load FSXWX and connect automatically
FSX will ask to allow and run wscript.exe, allow it as this runs the vbs script.
2.Add this to your exe.xml just above the last entry called </SimBase.Document>
<Launch.Addon>
<Disabled>False</Disabled>
<ManualLoad>False</ManualLoad>
<Name>FSXWX</Name>
<Path>C:\Windows\System32\wscript.exe</Path>
<CommandLine>C:\FSX\Modules\FSXWX\fsxwx-connect.vbs</CommandLine>
</Launch.Addon>
3.Make sure <CommandLine>C:\FSX\Modules\FSXWX\fsxwx-connect.vbs</CommandLine> has the same path as your FSXWX installation folder, "fsxwx-connect.vbs" will be created later.
4.Save and exit
5. Right click and create a new text document in your FSXWX installation folder
6. Copy and paste these commands
Set oShell = CreateObject("WScript.Shell")
WScript.Sleep 10000
oShell.Run("""C:\FSX\Modules\FSXWX\FSXWX.exe""")
WScript.Sleep 3000
oShell.AppActivate "FSXWX 1.5.5"
WScript.Sleep 50
oShell.SendKeys "{ENTER}"
7.WScript.Sleep 10000 is a delay in milliseconds (10 seconds) to allow FSX to startup before FSXWX - increase if it takes longer otherwise it wont connect
8.Make sure oShell.Run("""C:\FSX\Modules\FSXWX\FSXWX.exe""") has the same path as your FSXWX installation folder
9.FSXWX 1.5.5 is the title of the application window - this must be changed for new versions as the script changes focus to this windows name and then hits ENTER for you (Connect)
10.Save, exit and rename as fsxwx-connect.vbs
Start FSX normally and it will load FSXWX and connect automatically
FSX will ask to allow and run wscript.exe, allow it as this runs the vbs script.