什么是Portable Version?

宋明亮
2023-12-01

网上下载开源软件,经常看到“Portable Edition"或者"Portable Version". 其含义不是很清楚。经过搜索调查,原来就是我们常说的”绿色软件“。

定义引用如下:


Defining features

There is no exact specification of what a portable application is, but the following list contain the properties that are usually assumed when talking about portable software:

  • No installation. The program is delivered in a zip archive that you only need to extract into a folder of your choice (the “program folder” below) to “install” the program. (无须安装)
  • This program folder contains everything needed to run the application. No files need to be installed on the host computer first. The exception to this are common runtime files, such as .Net, Java and Visual Basic runtimes, that are usually already installed and in a sense can be seen as part of the runtime environment that everyone already have. (程序目录包含一切)
  • All application settings are saved inside the program folder. Thus if the program folder is moved, settings come along too. (配置也保存程序目录)
  • The application does not save or change anything on the host computer outside its program folder. This includes the Windows registry.(程序不会动自己目录之外的任何东西)
关于Portable一词,还有一处网站说明如下:
The Latin word “port” means to carry. Portability is the attribute of being easy to carry from one point to another or, in this case, from one operating system to another.
(意思就是便携。很容易从一个地方那个搬到另一个地方。或者从一个系统搬到另一个系统)


 类似资料: