Portable vs non portable applications

183 views

What makes an application able to be portable?
Additionally what is the difference between applications that require an installer and those that can be installed from an archive?

In: 1

2 Answers

Anonymous 0 Comments

They differ by the location where the program stores its configuration. “Portable” software saves to the directory where it is executed from. It may be copied to another computer and retain its settings. Other software writes to a directory that is chosen by the operating system for the currently active user. It is compatible with a setup where the installation directory is protected from writing and can be used by multiple user accounts each with its own settings.

Software distributed with an installer may depend on shared components copied to the system directory, it may rely on integration with other software allowing it to call this application in the background, or it may set up hidden copy protection. An installer may be provided for the convenience of novice users who are familiar with following a setup wizard but not with copying files by hand.

You are viewing 1 out of 2 answers, click here to view all answers.