⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 installer.nsi

📁 linux下的一款播放器
💻 NSI
字号:
; NSIS installer script for helix plugins!define VERSION "0.5"!define BASE_REG_KEY "Software\Microsoft\Windows\CurrentVersion\Uninstall\Helix Xiph Plugins ${VERSION}"OutFile "xiph_player_plugins_${VERSION}.exe"Name "Helix Xiph Plugins ${VERSION}"Function .onInit  IfFileExists $COMMONFILES\Real\Plugins NoAbort 0     MessageBox MB_OK "RealPlayer is not installed"    Abort ; causes installer to quit.  NoAbort:FunctionEndSection  StrCpy $INSTDIR $COMMONFILES\Real\Plugins  SetOutPath $INSTDIR  File oggfformat.dll    File vorbisrend.dll  File theorarend.dll  WriteUninstaller $INSTDIR\uninstall_xiph_plugins.exe  WriteRegStr HKLM "${BASE_REG_KEY}" "DisplayName" "Helix Xiph Plugins ${VERSION}"  WriteRegStr HKLM "${BASE_REG_KEY}" "UninstallString" "$\"$INSTDIR\uninstall_xiph_plugins.exe$\""SectionEndSection "Uninstall"  Delete $INSTDIR\uninstall_xiph_plugins.exe  Delete $INSTDIR\oggfformat.dll  Delete $INSTDIR\vorbisrend.dll  Delete $INSTDIR\theorarend.dll  DeleteRegKey HKLM "${BASE_REG_KEY}"SectionEnd

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -