当前位置:   article > 正文

NSIS制作Qt自定义界面安装包(三):禁默安装运行软件所需的运行环境(Vc_redist, bonjoursdk)_nsis qt 插件

nsis qt 插件

禁默安装运行软件所需的运行环境(Vc_redist, bonjoursdk)

思路:

        一般运行环境都支持禁默,软件包安装后会写入注册表。检测注册表是否有相关的环境注册表项,如果没有安装,存在略过。

查找运行环境版本号对应的注册表项

        找到运行环境安装包的版本号项,一般位于注册表中"HKLM\SOFTWARE\WOW6432Node"中,可以安装后通过版本号查询得到该注册表项,也可以使用工具对比安装前后的区别得到该注册表项。例如:vc_redist位于

SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall

Bonjoursdk 位于SOFTWARE\WOW6432Node\Apple Inc.\Bonjour中

由于依赖运行环境千差万别,下面将详细描述一般性的方法。下面以bonjoursdksetup.x64_3.0.0.10.exe 作为例子进行说明。

使用 Regshot建立快照A->全部注册表

Regshot下载地址

http://dx.198424.com/soft1/regshot.zip

手动安装运行环境,默认下一步即可

使用 regshot 建立快照B

 

根据对比文件,运行regedit找到安装运行环境的版本号对应的项目

 

最后再删除安装的运行环境,验证其正确性。

编写安装运行环境的NSIS脚本

NSIS 安装环境依赖的脚本

环境安装包解压到临时文件夹,检测安装包是否已经安装,如果没有使用禁默安装,代码如下:

  1. !macro InstallExeDepand RegKey SubRegKey DepandExeName Arg
  2. File /oname=$PLUGINSDIR\${DepandExeName} ".\depands\${DepandExeName}"
  3. Push $R0
  4. ClearErrors
  5. ;这里检测 该版本的运行时版本号是否存在
  6. ReadRegStr $R0 HKLM "${RegKey}" "${SubRegKey}"
  7. ;
  8. IfErrors 0 +2
  9. ; Exec "$PLUGINSDIR\${VcRedistName} /q" ;若不存在,执行静默安装
  10. ExecWait "$PLUGINSDIR\${DepandExeName} ${Arg}" ; 调试安装
  11. StrCpy $R0 "-1"
  12. ;MessageBox MB_OK "安装完毕"
  13. pop $R0
  14. !macroend

注意此脚本必须在模板《vimeo-template.nsi》中修改,否则每次修改完成后会新生成的脚本被覆盖。

安装依赖运行环境增加安装进度

注意安装运行环境的进度假定为7%

修改NSIS脚本模板 vimeo-template.nsi

  1. # 安装环境依赖
  2. Function InstallDepands
  3. #!define REGVCPARENTPATH "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\"
  4. !define REGVCPARENTPATH "SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall\"
  5. #Var /GLOBAL vcParentKey
  6. #StrCpy $vcParentKey
  7. # 安装vc runtime /q 安静模式
  8. # 注意调用 发送进度不能超过 7%
  9. !insertmacro InstallExeDepand "${REGVCPARENTPATH}{95ac1cfa-f4fb-4d1b-8912-7f9d5fbb140d}" "BundleVersion" "vc_redist.x64_2017.14.15.26706_95ac1.exe" "/q"
  10. ${UI_PLUGIN_NAME}::SetInstallStepDescription "Install : vc_redist.x64_2017.14.15.26706_95ac1.exe" 1.11
  11. !insertmacro InstallExeDepand "${REGVCPARENTPATH}{7e9fae12-5bbf-47fb-b944-09c49e75c061}" "BundleVersion" "vc_redist.x86_2017.14.15.26706_7e9fa.exe" "/q"
  12. ${UI_PLUGIN_NAME}::SetInstallStepDescription "Install : vc_redist.x86_2017.14.15.26706_7e9fa.exe" 2.22
  13. !insertmacro InstallExeDepand "${REGVCPARENTPATH}{c342d939-0a78-4259-be5b-11e4860e8bb7}" "BundleVersion" "vc_redist_x64_2013.12.0.40660_c342d.exe" "/q"
  14. ${UI_PLUGIN_NAME}::SetInstallStepDescription "Install : vc_redist_x64_2013.12.0.40660_c342d.exe" 3.33
  15. !insertmacro InstallExeDepand "${REGVCPARENTPATH}{48e8f45a-c463-4b50-9c55-e7e638ec02ca}" "BundleVersion" "vc_redist_x86_2013.12.0.40660_48e8f.exe" "/q"
  16. ${UI_PLUGIN_NAME}::SetInstallStepDescription "Install : vc_redist_x86_2013.12.0.40660_48e8f.exe" 4.44
  17. # 安装 bonjour /quiet 安静模式
  18. !insertmacro InstallExeDepand "SOFTWARE\WOW6432Node\Apple Inc.\Bonjour" "Version" "bonjoursdksetup.x64_3.0.0.10.exe" "/quiet"
  19. ${UI_PLUGIN_NAME}::SetInstallStepDescription "Install : bonjoursdksetup.x64_3.0.0.10.exe" 5.55
  20. FunctionEnd

修改NsisScriptGenerate.py

安装进度是NsisScriptGenerate.py生成,所以必须修改此脚本。

修改后的代码NsisScriptGenerate如下:

  1. def do_main(nsis_script_template_path):
  2. global g_root_dir
  3. global g_extract_file_cmd_total
  4. global g_cur_script_index
  5. if g_root_dir[len(g_root_dir) - 1] == '\\':
  6. g_root_dir = g_root_dir[:len(g_root_dir) - 1]
  7. nsis_cmd_num_statistics(g_root_dir)
  8. print ("file total: " + str(g_extract_file_cmd_total) + ", dir total: " + str(g_create_dir_cmd_total))
  9. # 为了安装环境依赖显示进度条 使用下面规则,令环境依赖为总进度的7%
  10. # 推算出总共文件的数量和依赖环境后进度的数量 g_cur_script_index
  11. oldtotal = g_extract_file_cmd_total
  12. g_extract_file_cmd_total = round(g_extract_file_cmd_total*100/(100-7));
  13. g_cur_script_index = g_extract_file_cmd_total - oldtotal;
  14. print ("calc file total: " + str(g_extract_file_cmd_total) + ", dir total: " + str(g_create_dir_cmd_total))
  15. generate_nsis_script(g_root_dir)
  16. g_insert_nsis_script_list.append(' ${UI_PLUGIN_NAME}::SetInstallStepDescription "Finished" 100')
  17. f = open(nsis_script_template_path, "r", encoding='UTF-8')
  18. all_nsis_script_lines = []
  19. cur_line_index = -1
  20. insert_line_index = -1
  21. for s in f.readlines():
  22. all_nsis_script_lines.append(s)
  23. cur_line_index += 1
  24. if s.find('Function ___ExtractFiles') != -1:
  25. insert_line_index = cur_line_index + 3
  26. f.close()
  27. if insert_line_index == -1:
  28. return
  29. for s in g_insert_nsis_script_list:
  30. all_nsis_script_lines.insert(insert_line_index, s)
  31. insert_line_index += 1
  32. nsis_script_path = nsis_script_template_path[:len(nsis_script_template_path) - len('-template.nsi')]
  33. nsis_script_path += '.nsi'
  34. f = open(nsis_script_path, "w")
  35. all_script = '\n'.join(all_nsis_script_lines)
  36. f.write(all_script)
  37. f.close()

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/繁依Fanyi0/article/detail/112623
推荐阅读
相关标签
  

闽ICP备14008679号