Questions tagged [software-distribution]

Software distribution is the process of delivering software to the end user.

Software distribution is the process of delivering software to the end user. This is not to be confused with a distribution, or distro, which is collection of software components built, assembled and configured so that it can be used essentially "as is" for its intended purpose.

678 questions
0
votes
1 answer

I can't add a distribution Provisioning Profile that is active

Has anyone else experienced this lately? I can't add a distribution Provisioning Profile that is active. It stays refreshing for a long time about 1-hour. I finally refreshed and it was in a status of pending. I tried to create another one and…
ConfusedDeer
  • 3,335
  • 8
  • 44
  • 72
0
votes
1 answer

Obtain Msiexec return code

I'm creating installation wrappers for software deployments and having some problems obtaining the error code when launching MSI's using msiexec. Please take the following as an example of my installation string: Run(msiexec /i "' & @WorkingDir &…
JHamill
  • 145
  • 2
  • 4
  • 12
0
votes
1 answer

R CMD check complains about unexpected files in man

this sounds like a silly problem: I'm putting my R code into a package and R CMD check src complains about the .Rd~ backup files being produced by Emacs. * checking package subdirectories ... WARNING Subdirectory 'man' contains invalid file…
mariotomo
  • 9,438
  • 8
  • 47
  • 66
0
votes
1 answer

java: Preventing malicious change or modification on some public functions in java packages

I am writing a license management system for our project and it is critical that it work regularly and correctly. I have written some methods with public access in a package; for example // code to check correctness of password public boolean…
sajad
  • 2,094
  • 11
  • 32
  • 52
0
votes
1 answer

Licensing on enterprise application

I am developing an enterprise application including central database, MVC web app, Mobile app client, web services and WPF client Windows service application which are working all together, I am going to make a contract with a company to grant them…
Bahram
  • 1,464
  • 2
  • 22
  • 38
0
votes
1 answer

How to share/distribute compiled for Blackberry 10 and Windows 8 mobile development

I would like to write some QtC++(BB10) and C#(Windows 8 Mobile) code for distribution. What is the best way to package up the output. In Java(Android) one can package up the code in a JAR file and distribute that. What would be the equivalent in…
Mayank
  • 1,099
  • 4
  • 17
  • 44
0
votes
1 answer

change default search engine in major browsers (msie, chrome, firefox, safari and opera)

Goal: Change Default search engine, Homepage and url searchbar in major browsers FF, MSIE (version6+), Chrome, Safari, opera. Conditions: I want to create a setup program through NSIS installer, which would change the settings. I am not looking for…
raj
  • 19
  • 5
0
votes
0 answers

Distribution app phenomen

I'm making a .app with Distribution provisions and after ziping i uploading him to iTunes with "Application Loader". All is fine, and .app is submitting at successfully. But in some case, i see error Application failed codesign verification. The…
CReaTuS
  • 2,593
  • 1
  • 19
  • 31
0
votes
1 answer

Distutils - Distribute Source Code + Module(s) Used

I am trying to include a source distribution in a program I am writing. However, I want it to include the main .py file AND any other modules/packages it used. Here is my setup.py script: from distutils.core import setup setup_options = { 'name':…
Rushy Panchal
  • 16,979
  • 16
  • 61
  • 94
0
votes
1 answer

distribute a usable python program to a python which doesn't have Distribute installed?

How to distribute a usable python program to a python which doesn't have Distribute installed? I've created a Windows Binary installer using python setup.py bdist_wininst. The setup.py contains a console script entry point, so that a Windows .exe…
matt wilkie
  • 17,268
  • 24
  • 80
  • 115
0
votes
1 answer

Using packagemaker to build iOS app installer

I'm developing a sophisticated engineering calculation iPad app for a specific customer (much like the poster of this question). I'm getting ready to release a first version to them, and trying to get this distribution issue sorted out. There are…
GeneralMike
  • 2,951
  • 3
  • 28
  • 56
0
votes
3 answers

What exactly changes when a software is to be upgraded from windows xp -> Vista -> Windows 7

I guess Win32 API MFC .NET Java (is also managed) are "the only" ways of making windows applications. Please mention if there are some other ways through which we can build win apps If its a managed enivronment .NET or Java. The application will…
claws
  • 52,236
  • 58
  • 146
  • 195
0
votes
1 answer

Creating a database in distributed Java programs

I cannot understand how distributing Java programs that use a database works. Let's say I am using Derby as RDBMS and I want to store tasks and calendar entries in a database. I want each user of the program to have a local database. But I don't…
Limbo Exile
  • 1,321
  • 2
  • 21
  • 41
0
votes
1 answer

Distribute a Java Application

I have a Java Application, which was created in an IDE (NetBeans) (JDK 1.6). The application allows sales people to enter sales info and have the approver come in to approve the entry. Saving the entry. The application is connected to a Derby DB.…
eric_13
  • 383
  • 1
  • 8
  • 22
0
votes
1 answer

Writing database queries across different services

SELECT * FROM tbl_order o INNER JOIN tbl_contact c ON c.ContactId = o.BillingContactId The above query for an e-commerce store is nice and simple. If I were to move all of my contacts data into a CRM such that its stored in a…
Ian Warburton
  • 15,170
  • 23
  • 107
  • 189