简体   繁体   English

使用NSIS安装软件时,如何设置进度条文本?

[英]When installing the software using NSIS how to set the progress bar text?

When installing the software I am seeing the progress of each dll or executable name. 安装软件时,我看到每个dll或可执行文件名称的进度。 How can I hide that (for eg., in the below screenshot it is showing Extract res.dll 100%) and show my own progress text (for eg., Status: Installing EMR application) 我如何隐藏它(例如,在下面的屏幕快照中,它显示Extract res.dll 100%)并显示我自己的进度文本(例如,状态:安装EMR应用程序)

在此处输入图片说明

SetDetailsPrint controls if instructions are displayed in the label and/or listbox. SetDetailsPrint控制是否在标签和/或列表框中显示说明。

Section
DetailsPrint "Start"
SetDetailsPrint listonly
DetailsPrint "Hello"
File 1234.txt ; List only
Sleep 3333
SetDetailsPrint none
DetailsPrint "World
File 5678.txt ; "Hidden"
Sleep 3333
SetDetailsPrint both
DetailsPrint "Finished"
SectionEnd

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 使用NSIS安装软件时如何更改用户帐户控制屏幕文本 - How to change the User Account Control screen text when installing the software using NSIS 在安装软件时,如果特定条件为假,如何使用NSIS回退软件安装过程? - when installing the software, if the specific condition is false How to roll back the software installation process using NSIS? 使用NSIS安装软件时,如何通过从目标文件夹获取路径来检查驱动器中的空间 - How to check the space in the drive by taking the path from the Destination Folder When installing the software using NSIS 安装使用NSIS开发的软件时,如果在服务器操作系统中安装,应如何抛出弹出消息 - When installing the software that was developed using NSIS, how should I throw a pop-up message if installing in server operating systems 在nsis中自定义进度栏 - Customize the progress bar in nsis 如何使用NSIS安装较新版本的软件之前先卸载较旧版本的软件 - How to uninstall older version of the software before installing the newer version using NSIS 在nsis中单击“删除”按钮时如何创建进度栏? - How do create progress bar while clicking remove button in nsis? 使用NSIS安装字体 - Installing Fonts using NSIS 如何检查NSIS中安装的软件? - how to check software installed in NSIS? NSIS异步文件下载和自定义进度栏 - NSIS async file download and custom progress bar
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM