Just about to try and make an install package for an app for that first time with visual studio. I have a registry value that needs to be changed when the program is installed I
It depends the tool you used to create the install package, generally you need to add a String Value under
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run or HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Run
like "AppName" : "AppPath" You also can achieve this by add the regstry in your code.