Saving install path to registry

You have trouble using InstallForge? Then this is the right place for you.
Post Reply
bryan
Posts: 2
Joined: 30 Apr 2025, 13:26

Is it possible to save the install path of my app to the registry during the install?

If so, how? Explain it like I'm five years old ;-)
tutosrive
Posts: 3
Joined: 21 Jul 2025, 06:57

También tengo este problema, ya logré añadirlo al PATH del sistema (Si a eso se refiere con "registry"), pero, elimina todo lo que haya antes de (elimina el PATH y solo queda la ruta de instalacion del programa :? )

Image
tutosrive
Posts: 3
Joined: 21 Jul 2025, 06:57

Por cierto, justo solucioné una parte de esto, lo pude agregar al PATH sin ELIMINAR EL PATH anterior, es decir, es un "append" como debería ser, sin embargo, requiere que el usuario escriba "si" cuando salga un mensaje en consola: "El valor ya existe (PATH) desea sobreescribirlo? (escriba si o no)".

Lo logré con este comando de shell:

Code: Select all

reg add "HKCU\Environment"  /v Path /t REG_EXPAND_SZ /d "%Path%;<InstallPath>
Si logro hacer que se agregue sin intervencion del usuario, lo menconaré :geek:
tutosrive
Posts: 3
Joined: 21 Jul 2025, 06:57

Finalmente encontré el comando:

Solo se añade este comando en la sección de "comandos", ejecutar comando. No requiere nada más!

Code: Select all

reg add "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" /t REG_SZ /v Path /d "%path%;<InstallPath>" /f
A mí me funciona 100%
Post Reply