This repository has been archived on 2025-03-16. You can view files and clone it, but cannot push or open issues or pull requests.
project-client/build/installer.nsh

9 lines
419 B
Text
Raw Normal View History

2023-04-03 12:44:17 +09:00
!macro preInit
SetRegView 64
2024-01-07 10:44:14 +09:00
WriteRegExpandStr HKLM "${INSTALL_REGISTRY_KEY}" InstallLocation "$LocalAppData\vesktop"
WriteRegExpandStr HKCU "${INSTALL_REGISTRY_KEY}" InstallLocation "$LocalAppData\vesktop"
2023-04-03 12:44:17 +09:00
SetRegView 32
2024-01-07 10:44:14 +09:00
WriteRegExpandStr HKLM "${INSTALL_REGISTRY_KEY}" InstallLocation "$LocalAppData\vesktop"
WriteRegExpandStr HKCU "${INSTALL_REGISTRY_KEY}" InstallLocation "$LocalAppData\vesktop"
2023-04-03 12:44:17 +09:00
!macroend