installer

Securing an msi to prevent unauthorized use

落花浮王杯 提交于 2020-01-05 03:56:04
问题 Im having trouble coming up with a way to secure an installer for an app ive made. I dont need anything too intense, just something to 'lock' the installer I guess. Thanks. Due to the first comment, when I say secure I mean using a password or key to prevent unauthorized use. 回答1: It is possible to unpack the files contained in a .msi without running the installer by using 3rd party tools. If you want to prevent this you would have to decrypt the files with a custom action. It is probably

Getting a shortcut on the start screen from installer in Windows 8.1 (NSIS)

孤者浪人 提交于 2020-01-04 13:58:08
问题 I'm guessing this answer exists somewhere but I've been searching and trying things for 8+ hours now so I'm asking. How do I get an icon on the Windows 8.1 (and 8, and 7) start screen at installation time? I'm using Nullsoft Scriptable Install System. I've tried both version 2.46 and 3.0b0 (not that I thought that had anything to do with it but might as well try both). What I think is the relevant part of my script is this !define APPNAME "MyApp" !define COMPANYNAME "Greggman"

How to make Patch-able/Update-able application?

喜欢而已 提交于 2020-01-04 03:58:09
问题 I have completed a student project, this project extract data from xml files on internet and save to database and displays it. And i use that data in a few different ways e.g. display on main page, in another tab as a table, and to create some graphs. I did all this by making 5 different classes. Each class extracts different type of XML and save it to database with a single Load() function. Last requirement of the project is to make the application Update-able/Patch-able (user does not need

Use Python without installing

随声附和 提交于 2020-01-04 02:15:51
问题 I have an installer which uses a Python script to install several components. I do not want to install Python on the users computer if they do not already have it and I also do not want having Python installed to be a prerequisite for using my installer. Is there a way of downloading Python without using the installer and just running it from a directory which can be easily removed after the installation is complete? 回答1: Portable Python is an easy tool to use on Windows. If you want to

Magento Module SQL does not run

半城伤御伤魂 提交于 2020-01-04 01:53:05
问题 My module will setup correctly and all the relavant files are installed correctly. But the database tables are not being created. I have followed this tutorial. My config xml is as below. <?xml version="1.0"?> <config> <modules> <Myname_Mygateway> <version>1.0.0</version> </Myname_Mygateway> </modules> <global> <resources> <Mygateway_setup> <setup> <module>Myname_Mygateway</module> </setup> <connection> <use>core_setup</use> </connection> </Mygateway_setup> <Mygateway_write> <connection> <use

PHP Pear Installer stuck at 21%

此生再无相见时 提交于 2020-01-03 19:00:43
问题 I tried to install PHP Pear on my Webspace. I uploaded the installer file from http://pear.php.net/go-pear I started the installer and everything seems to working except it stuck at 21% everytime. This is the output of the installer, but I don't get any errors... Starting installation ... Loading zlib: ok Bootstrapping Installer................... Bootstrapping PEAR5.php............(remote) ok Bootstrapping PEAR.php............(remote) ok Bootstrapping Archive/Tar.php............(remote) ok

Publish Azure WebRole using Installer (like WIX)

拈花ヽ惹草 提交于 2020-01-03 06:06:14
问题 The requirements for my current project include a Azure WebRole application and also means to install this using a installer. I've used Wix for previous projects and also published Azure applications (using VS publish) but I'm at a loss at where to start.... Anyone tried publishing Azure WebRole using an installer possibly WIX? What are you're recommendations on this. Why using an installer? We will be using nightly builds, these builds are version-ed and will be used to installed in DTAP

How does JRE installation work?

孤人 提交于 2020-01-03 03:07:15
问题 I was working on packaging my software and wondering how does the installation of JRE work. Does it simply copy the binaries on the local system and set the classpath accordingly or any other steps are done by the installer? For windows the JRE binaries are stored in C:\Program Files\Java\jre7 can I copy this folder into some other machine(with same processor 32bit or 64bit) to make JRE work. If that is so then what are the environment variables that are needed to be set? 回答1: can I copy this

Install PyObjC on Python 2.6 on OS X 10.5?

怎甘沉沦 提交于 2020-01-02 23:22:32
问题 OS X 10.5.8 came with Python 2.5, and had PyObjC already installed. I installed Python 2.6 from the python.org site, and PyObjC isn't there. I can't find a download to install PyObjC on my Python 2.6 install. Is checking out the PyObjC trunk and trying to build it my only choice? Will that work "out of the box"? 回答1: Apple includes PyObjC with their Pythons that come with OS X 10.5 and 10.6 . It is not part of the python.org installers. But it should be easy enough to install. Just install

set the font of a custom label added on a custom dialog page in nsis installer

时光毁灭记忆、已成空白 提交于 2020-01-02 17:48:49
问题 how to set the font of a label added on a custom added page in nsis installer To create the label i have used this : nsDialogs::Create 1018 var Label ${NSD_CreateLabel} 0 0 100% 32u "PLEASE CHOOSE WHAT DO YOU WANT TO INSTALL:" Pop $Label 回答1: !include nsDialogs.nsh var Label page custom pre function pre nsDialogs::Create 1018 ${NSD_CreateLabel} 0 0 100% 32u "PLEASE CHOOSE WHAT DO YOU WANT TO INSTALL:" Pop $Label CreateFont $0 "Arial" 18 SendMessage $Label ${WM_SETFONT} $0 1 nsDialogs::Show