Browse Source
Also added a script to migrate from Squirrel to NSIS to keep the user apps and configuration and prevent remove it.pull/1922/head
9 changed files with 28 additions and 5 deletions
Before Width: | Height: | Size: 461 KiB After Width: | Height: | Size: 432 KiB |
@ -0,0 +1,10 @@
|
||||
!macro customInit |
||||
CreateDirectory $APPDATA\RamboxBK |
||||
CopyFiles $APPDATA\Rambox\*.* $APPDATA\RamboxBK |
||||
nsExec::Exec '"$LOCALAPPDATA\Rambox\Update.exe" --uninstall -s' |
||||
!macroend |
||||
|
||||
!macro customInstall |
||||
CopyFiles $APPDATA\RamboxBK\*.* $APPDATA\Rambox |
||||
RMDir /r $APPDATA\RamboxBK |
||||
!macroend |
After Width: | Height: | Size: 25 KiB |
After Width: | Height: | Size: 151 KiB |
Loading…
Reference in new issue