Advertisement
Guest User

Untitled

a guest
Mar 7th, 2019
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ; NSIS script NSIS-3
  2. ; Install
  3.  
  4. SetCompressor /SOLID lzma
  5. SetCompressorDictSize 8
  6.  
  7. ; --------------------
  8. ; HEADER SIZE: 2394
  9. ; START HEADER SIZE: 300
  10. ; MAX STRING LENGTH: 1024
  11. ; STRING CHARS: 576
  12.  
  13. OutFile [NSIS].exe
  14. !include WinMessages.nsh
  15.  
  16. SilentInstall silent
  17.  
  18.  
  19. ; --------------------
  20. ; LANG TABLES: 1
  21. ; LANG STRINGS: 38
  22.  
  23. Name Name
  24. BrandingText "Nullsoft Install System v3.01"
  25.  
  26. ; LANG: 1033
  27. LangString LSTR_0 1033 "Nullsoft Install System v3.01"
  28. LangString LSTR_1 1033 "$(LSTR_2) Setup"
  29. LangString LSTR_2 1033 Name
  30. LangString LSTR_5 1033 "Can't write: "
  31. LangString LSTR_13 1033 "Delete file: "
  32. LangString LSTR_14 1033 "Delete on reboot: "
  33. LangString LSTR_17 1033 "Error decompressing data! Corrupted installer?"
  34. LangString LSTR_20 1033 "Execute: "
  35. LangString LSTR_21 1033 "Extract: "
  36. LangString LSTR_22 1033 "Extract: error writing to file "
  37. LangString LSTR_25 1033 "Output folder: "
  38. LangString LSTR_29 1033 "Skipped: "
  39. LangString LSTR_30 1033 "Copy Details To Clipboard"
  40. LangString LSTR_36 1033 "Error opening file for writing: $\r$\n$\r$\n$0$\r$\n$\r$\nClick Abort to stop the installation,$\r$\nRetry to try again, or$\r$\nIgnore to skip this file."
  41. LangString LSTR_37 1033 Custom
  42.  
  43.  
  44. InstType $(LSTR_37)    ;  Custom
  45. ; wininit = $WINDIR\wininit.ini
  46.  
  47.  
  48. ; --------------------
  49. ; SECTIONS: 1
  50. ; COMMANDS: 11
  51.  
  52. Section ; Section_0
  53.   ; AddSize 2049
  54.   SetOutPath $TEMP
  55.   File BASSMOD.dll
  56.   File bgm.xm
  57.   File keygen.exe
  58.   File R2RLIVE.dll
  59.   ExecWait $TEMP\keygen.exe
  60.   Delete $TEMP\BASSMOD.dll
  61.   Delete $TEMP\bgm.xm
  62.   Delete $TEMP\keygen.exe
  63.   Delete $TEMP\R2RLIVE.dll
  64. SectionEnd
  65.  
  66.  
  67.  
  68. ; --------------------
  69. ; UNREFERENCED STRINGS:
  70.  
  71. /*
  72. 1 ProgramFilesDir
  73. 17 CommonFilesDir
  74. 32 "C:\Program Files"
  75. 49 $PROGRAMFILES
  76. 53 "$PROGRAMFILES\Common Files"
  77. 70 $COMMONFILES
  78. */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement