Announcement

Collapse
No announcement yet.

Programs and Features no longer contains the size

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Programs and Features no longer contains the size

    The Setup Factory installer stopped writing the application folder size to Program and Features. Not sure when that happened.
    I updated to the latest version of Setup factory but it did not make a difference.

    How can I restore this.

    There was a forum entry a few years ago that showed a script way to add it but that is not working. Uninstall info is in some UUID key and not under the actual ProductName.

  • #2
    Try this approach: https://forums.indigorose.com/forum/...347#post297347

    Ulrich

    Comment


    • #3
      Thanks. Ulrich, you came through again.
      I had tried that but not found quite the correct key. It ended up requiring
      local sKey = SessionVar.Expand("SOFTWARE\\Microsoft\\Windows\\C urrentVersion\\Uninstall\\%ProductName%%shortVersi on%");
      Registry.SetValue(HKEY_LOCAL_MACHINE, SessionVar.Expand(sKey), "EstimatedSize", g_nEstimatedSize, REG_DWORD);

      Not sure, why I had not seen that key in regedit before. But there are a LOT of products on my build system. If all else fails, search! 😀

      Comment

      Working...
      X