Support Forum: Get Support for Patch My PC Products and Services

Home Updater: Our Free Product for Consumers => Home Updater: Report Bugs and Issues Not Related to Installing Apps => Topic started by: Xolem on March 18, 2018, 10:21:57 AM

Title: Registry bug in HKEY_LOCAL_MACHINE\SOFTWARE\Patch My PC\Options
Post by: Xolem on March 18, 2018, 10:21:57 AM
I have been creating a script to modify the registry entries, setting my own paths for the app downloads and portable apps etc...

The problem is that there is 3 values that always default back to false when I launch the program, even if I set them to true in the registry.

These problematic values that seems to be hardcoded and always rewrite themselves to false in the registry at program launch are :

- Visible_Panel_MiscellaneousApps (Always default back to false at program launch)
- Visible_Panel_MediaToolsApps (Same)
- Visible_Panel_GraphicsApps (Same)

Don't know if it is a bug or intended, but as the others panels are taking my own values, it looks like a bug to me.


Title: Re: Registry bug in HKEY_LOCAL_MACHINE\SOFTWARE\Patch My PC\Options
Post by: Support Team (Patch My PC) on March 18, 2018, 03:28:57 PM
Under visual options if you check "Disable Auto-Collapsing Of Groups With No Application Installed" does it not change?
Title: Re: Registry bug in HKEY_LOCAL_MACHINE\SOFTWARE\Patch My PC\Options
Post by: Xolem on March 20, 2018, 05:09:28 AM
You were right, I just added this line to my script and now it works :

reg add "HKLM\SOFTWARE\Patch My PC\Options" /v "DisableAutoCollapsingOfGroups" /t "REG_SZ" /d "1" /f

I didn't saw that option, as the default windows was truncating the whole text without resizing.

Thanks  :)