-2

I'm currently working on a program written in Microsoft Visual Basic. I made a custom installer for it, however, it does not add anything to the Programs and Features list.

I'm trying to figure out what keys I need to manually edit using regedit, so that way I know what I need to add to the code.

  • Are you asking for what keys to create, or are you asking how to create the keys? – Hursey Oct 26 '21 at 19:20
  • @Hursey I'm asking what keys I need to create. – EthanBAlarms Oct 26 '21 at 21:16
  • 2
    Well, MHO is why bother with all the different deployment tools already available, however if you're committed to this, you could always use one of these deployment tools and see what keys it makes – Hursey Oct 26 '21 at 21:43

1 Answers1

1

You need to write values under Software\Microsoft\Windows\CurrentVersion\Uninstall\YourAppnameOrGuid

DisplayName and UninstallString are required, the others are optional.

Anders
  • 97,548
  • 12
  • 110
  • 164