installer

InstallScopeDlg in Custom Wix UI not working

ε祈祈猫儿з 提交于 2019-12-13 07:28:40
问题 Hi i have developed an setup with wix and now i need to ask users wether its AllUser or perUser.After a long research i found that InstallScopeDLg can make it possible.But I have added custom UI with my wix and i wasn't able to add InstallScopeDlg with this custom UI in WIX. <Publish Dialog="LicenseAgreementDlg" Control="Back" Event="NewDialog" Value="WelcomeDlg">1</Publish> <Publish Dialog="LicenseAgreementDlg" Control="Next" Event="NewDialog" Value="ReadmeDlg" Order="2">LicenseAccepted = "1

Adding custom labels in NSIS dialog pages, showing and hiding labels in NSIS MUI Directory pages conditionally, how to get the ids of labels

折月煮酒 提交于 2019-12-13 05:16:55
问题 How to hide a Custom LABEL added on the Directory Page Dialog of the NSIS installer. The LABEL is added using the Resource Hacker and its id is 1300 How to change the text of the LABEL conditionally? If user choses to install DEMO, then the label text should be "DEMO" , and if user choses to install UPDATE , then the label text should be "UPDATE" I have added 2 labels, now i am hiding and showing them accordingly.Label1 ID is 1300 , Label2 ID is 1301. # Occurs on Directory page show. Function

NSIS Find files in silent mode not working

坚强是说给别人听的谎言 提交于 2019-12-13 04:52:23
问题 I have the following function to recursively search for dll files. Function ProcessDLLFiles Exch $0 Push $1 Push $2 FindFirst $1 $2 "$INSTDIR\*.dll" loop: IfErrors end DetailPrint 'Found "$0\$2"' FindNext $1 $2 goto loop end: FindClose $1 FindFirst $1 $2 "$0\*.*" dirloop: IfErrors dirend IfFileExists "$0\$2\*.*" 0 dirnext StrCmp $2 "." dirnext StrCmp $2 ".." dirnext Push "$0\$2" call ${__FUNCTION__} dirnext: FindNext $1 $2 goto dirloop dirend: FindClose $1 Pop $2 Pop $1 Pop $0 FunctionEnd

How to slow down installation progress bar in WiX Toolset installer?

一曲冷凌霜 提交于 2019-12-13 04:39:25
问题 Well, i am not joking... my client wants me to slow down the installation process. The argumentation is clear: if the customers pay as much as a middle-class car for a software, they expect a bit more than 3 sec. installation process... Any ideas? 回答1: One technique I've used for testing was to write a custom action DLL which alternately slept and incremented the progress bar. And then it ran it backwards, because I was testing external UIs, but you could skip that part. See MsiProcessMessage

Visual Studio setup and deployment: create package with optional components?

ぃ、小莉子 提交于 2019-12-13 03:45:15
问题 Let's say, for example, my application supports Epson printers and Canon printers. I would like to have an option during installation, maybe radio buttons or, better, checkboxes (to have an option to choose both) that would say 'Install Epson drivers' and 'Install Canon drivers'. Then, based on user selection, the setup package would install either only Epson drivers, or only Canon drivers, or both. I guess what I want can also be described as having several prerequisites, but make them

RoboCopy , Virtual Hard Disk, or other?

狂风中的少年 提交于 2019-12-13 03:44:28
问题 We an distributing 230K files, (873MB) of smallish JPG files on DVD. The install program will place these files in an Apache Virtual folder. Setup(.exe) is taking a too long for our customers. Our initial approach was to create a ZIP and copy from the DVD and unzip to the client Hard disk. I just tried a RoboCopy (we have a win7 (64 bit) 4 core computer. I tried with 16 threads. Pretty poor. Over Five Hours. Options : *.* /V /S /COPY:DAT /NP /MT:16 /R:5 /W:30 Copied Dirs : 6 Files : 230236

FFmpeg installation for x264 codec

蓝咒 提交于 2019-12-13 02:41:05
问题 can anybody help me out in where can i find ffmpeg download for windows x264 codec , am developing a website which converts any file format to mp4h264 baseline format , everythng was fine with another wrap installer called MooO ffmpeg which i found in this link http://www.moo0.com/?top=http://www.moo0.com/software/FFmpeg/ evrythng is fine i can access the exe from my local system as the file is installed rather i could acess the same when its in remote as i knw the batch file location is

java.sql.SQLException: Opening db:'DB-NAME.sqlite' : Permission denied

余生长醉 提交于 2019-12-13 02:36:19
问题 I had developed a Java Application Project using Netbeans IDE 8.2 on Ubuntu14. How can I have its installers for Linux Systems using Netbeans IDE(.deb) Native Packaging. I had packaged it by following instruction in this link But, this tutorial above mentioned is NetBeans 7.4 native packaging in Windows. But I followed this tutorial in Netbeans8.2 in Ubuntu(my system). And I got .deb file in specified folder in the tutorial mentioned above. The Project-name-1.0.deb file could be successfully

WIX: How can I register a new ISAPI Extension or Script Map on an existing Web App or Site?

允我心安 提交于 2019-12-13 02:26:54
问题 I've seen the WebApplicationExtension element, but because it must be a child of WebApplication, it appears to require the creation of a new WebApplication. I don't want that. I want to create the extension (or script map) on an existing website. On uninstall, the website should remain but the extension (script map entry) should be removed. Anyone know how to do this in WIX? If I get no good answers, I guess I will have to do it within script before InstallFinalize. 回答1: I couldn't figure out

Steps to deploy web application on JBoss via install4j installer

余生长醉 提交于 2019-12-13 02:19:32
问题 I am not sure where should I start from as I have to deploy a web application on JBoss via install4j installer. I have created the Dynamic Web Apllication and I want to deploy this application on JBoss but deploy a war file and configure JBoss on client machine is not a good idea thus I want to create a installer file (.exe) file which will take care of following things: Installation of JBoss server on client machine Deploy my application on JBoss server so that I just have to give that