Skip to content

Commit

Permalink
Always show admin gui
Browse files Browse the repository at this point in the history
  • Loading branch information
uholeschak committed Jan 22, 2025
1 parent 7bad116 commit d59f16a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions EdiabasLib/EdiabasLibConfigTool/Patch.cs
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ public static class Patch
public const string RegKeyRheingoldNameStart = @"BMW.Rheingold.";
public const string RegKeyIstaBinPath = @"BMW.Rheingold.ISTAGUI.BinPathModifications";
public const string RegKeyIstaBinFull = RegKeyReingold + @": " + RegKeyIstaBinPath;
public const string RegKeyShowHiddenAdminGui = @"BMW.Rheingold.ISTAGUI.Dialogs.AdministrationDialog.ShowPTTSelection";
public const string SectionConfig = @"Configuration";
public const string KeyInterface = @"Interface";
public const string VcRedistLink = @"https://learn.microsoft.com/de-de/cpp/windows/latest-supported-vc-redist?view=msvc-170";
Expand Down Expand Up @@ -978,6 +979,7 @@ public static bool PatchIstaReg(RegistryView? registryViewIsta, string ediabasBi
if (!string.IsNullOrEmpty(ediabasBinLocation))
{
key.SetValue(RegKeyIstaBinPath, ediabasBinLocation);
key.SetValue(RegKeyShowHiddenAdminGui, "True"); // show ediabas.ini option in ISTA
}
else
{
Expand Down

0 comments on commit d59f16a

Please sign in to comment.