Skip to content

Instantly share code, notes, and snippets.

@RoystonS
Created February 1, 2022 17:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save RoystonS/d2c7b7a2e6082e345841899bcaef12d6 to your computer and use it in GitHub Desktop.
Save RoystonS/d2c7b7a2e6082e345841899bcaef12d6 to your computer and use it in GitHub Desktop.
Better Bravo Lights installation diagnostics script
@echo off
echo START OF BETTER BRAVO LIGHTS INSTALLATION DIAGNOSTICS
echo Microsoft Store location
echo "%LOCALAPPDATA%\Packages\Microsoft.FlightSimulator_8wekyb3d8bbwe\LocalCache"
dir "%LOCALAPPDATA%\Packages\Microsoft.FlightSimulator_8wekyb3d8bbwe\LocalCache"
if EXIST "%LOCALAPPDATA%\Packages\Microsoft.FlightSimulator_8wekyb3d8bbwe\LocalCache" (
echo UserCfg.opt InstalledPackage
find "InstalledPackage" "%LOCALAPPDATA%\Packages\Microsoft.FlightSimulator_8wekyb3d8bbwe\LocalCache\UserCfg.opt"
echo exe.xml
type "%LOCALAPPDATA%\Packages\Microsoft.FlightSimulator_8wekyb3d8bbwe\LocalCache\exe.xml"
)
echo Steam location
echo "%APPDATA%\Microsoft Flight Simulator"
dir "%APPDATA%\Microsoft Flight Simulator"
if EXIST "%APPDATA%\Microsoft Flight Simulator" (
echo UserCfg.opt InstalledPackage
find "InstalledPackage" "%APPDATA%\Microsoft Flight Simulator\UserCfg.opt"
echo exe.xml
type "%APPDATA%\Microsoft Flight Simulator\exe.xml"
)
echo END OF BETTER BRAVO LIGHTS INSTALLATION DIAGNOSTICS
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment