[RESOLVED] 1password package and updates
Published: August 6, 2025 - 3:39 PM
Good morning,
Regarding the existing 1Password package, would it be possible to set the MANAGED_INSTALL option (to remove user-side installations) and the MANAGED_UPDATE option (to disable updates by the application itself) to 1, please? The goal is to prevent 1Password from automatically downloading updates and bothering users with this message: cf: https://support.1password.com/deploy-1password/?windows
I successfully tested the following modification on my end:
to change :
in:
Furthermore, we manually packaged 1Password for Mac, but would it be possible to add it to Luti as well? The update package we created works well, but I imagine it would be useful for others if it were packaged on the Wapt side...
Thank you in advance for your help!
Regarding the existing 1Password package, would it be possible to set the MANAGED_INSTALL option (to remove user-side installations) and the MANAGED_UPDATE option (to disable updates by the application itself) to 1, please? The goal is to prevent 1Password from automatically downloading updates and bothering users with this message: cf: https://support.1password.com/deploy-1password/?windows
I successfully tested the following modification on my end:
to change :
Code: Select all
install_msi_if_needed(glob.glob("*.msi")[0])
Code: Select all
install_msi_if_needed(glob.glob("*.msi")[0],
properties=r'MANAGED_INSTALL=1 MANAGED_UPDATE=1')
Thank you in advance for your help!