Created
February 1, 2022 17:42
-
-
Save RoystonS/d2c7b7a2e6082e345841899bcaef12d6 to your computer and use it in GitHub Desktop.
Better Bravo Lights installation diagnostics script
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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