Registry emulation

- Extent Technologies Ltd.

A method for running a software application on a computer having an operating system that provides a local database containing consistent configuration data to be accessed by programs running on the computer. The method includes providing a file containing further configuration data required by the application, which further data are not stored in the local database. A request by the application to access the local database is intercepted, and an item of the further configuration data is returned from the file to the application, responsive to the request.

Latest Extent Technologies Ltd. Patents:

Skip to: Description  ·  Claims  · Patent History  ·  Patent History
Description
CROSS-REFERENCE TO RELATED APPLICATIONS

[0001] This application claims the benefit of a U.S. Provisional Patent Application entitled “Registry Emulation,” filed Mar. 6, 2000, which is assigned to the assignee of the present patent application, and which is incorporated herein by reference.

FIELD OF THE INVENTION

[0002] The present invention relates generally to computer application software, and specifically to methods and system enabling application software to run on a computer without installation.

BACKGROUND OF THE INVENTION

[0003] The registry is a system-defiled database, which is included as a part of Microsoft Windows 3.1 and later Windows operating systems. It is used by applications and other system components to store and retrieve consistent configuration data. Information regarding the registry and its use is provided in publications available from the Microsoft Developers' Network (MSIN) of Microsoft Corporation, Redmond, Wash., including “Platform SDK. Performance Monitoring/Registry,” and Chapter 23 (Registry) of the “Driver Development Kit.” These publications are incorporated herein by reference. Data in the registry can be manipulated using application program interface (API) functions and services described in the above-mentioned publication, as well as with a Windows utility called the Registry Editor (Regedit.exe). Registry-related services are normally carried out by the Virtual Machine Manager (VMM) component of the Windows operating system kernel.

[0004] The registry stores data in a hierarchically-structured tree. Each node in the tree is called a key. Each key can contain both subkeys (which are themselves keys) and data entries called values. When an application is installed on a computer running Windows, it typically stores its own registry data in a branch under a key that is created for the particular application. In addition, the application may also use subkeys and values that are stored under other keys, which are shared with the operating system and/or with other applications. While the application is running, it uses the names of the appropriate keys to navigate in the registry for the purpose of reading and writing configuration data. Without the configuration data, the application is unable to run. For this reason, installation is an indispensable preparatory step to running most Windows applications that are known in the art.

[0005] During the installation procedure, the application creates any necessary new keys and writes the values that it will require in the registry. To add a new key or value to the registry, the application must first open an existing key, typically using the RegOpenKeyEx function (or a corresponding service _RegopenXey), as described in the abovementioned documentation. After creating a new subkey or setting a new value, the key is closed, and the new data are written to the registry. A group of keys, subkeys and values belonging to a specified branch of the registry may be saved to a backup file, known as a hive file, using the RegSaveKey function, as described in the above-mentioned MSDN documentation. Subsequently, the RegLoadKey function can be used to recall the information from the hive file and to restore it to the registry in a specified location. When the hive file contains data used by an application, it must be loaded back into the registry before the application cab run.

SUMMARY OF THE INVENTION

[0006] It is an object of some aspects of the present invention to provide methods for enabling a software application to run on a computer without installation.

[0007] It is a further object of some aspects of the present invention to provide tools for emulating functions of the Windows registry.

[0008] In preferred embodiments of the present invention, a computer running a Windows operating system, and thus having a local registry, initiates running of a software application without installing on the computer. Instead, registry information needed for the application is provided in a previously-created emulation hive file. The data in the hive file are loaded into the local registry at a predetermined location before the application begins to run. When the application attempts to access the registry, by invoking an appropriate key as specified by the application designer, a registry emulation function intercepts the application's request. The emulation function determines whether the key is located in the local registry or is taken from the data in the emulation hive file. Based on this determination, the emulation function services the request. The registry emulation is transparent to the application and to the operating system, so that the application runs as though it was actually installed on the computer.

[0009] In some preferred embodiments of the present invention, the application software and hive file are stored on a server, which is accessed by the computer via a network, such as the Internet. The registry emulation feature enables the computer to run the application without a user of the computer having to spend the time and effort required to download and install the entire application. Typically, only the hive file and required portions of the application are downloaded. Preferably, configuration changes made by the user while the application is running are saved in the emulation hive file when the computer exits from the application. The next time the user accesses this application, the hive file enables the saved configuration to be restored immediately. The local registry on the computer is substantially unaffected, however.

[0010] In some preferred embodiments of the present invention, the emulation hive file is created by actually installing the application on a trial computer, and intercepting requests by the application to write data to the registry during installation. A list is maintained of the keys created or used by the application during installation. The keys and their values are preferably arranged in a special branch of the registry of the trial computer that is created for this purpose, which mirrors the actual locations of the keys in the registry as used by the installation process. Upon the conclusion of installation, the special branch is saved, thus creating the emulation hive file.

[0011] Although preferred embodiments described herein are based on the registry of the Windows operating system, the principles of the present invention are similarly applicable to other operating systems that use a common database to maintain consistent configuration data for different applications.

[0012] There is therefore provided, in accordance with a preferred embodiment of the present invention, a method for running a software application on a computer having an operating system that provides a local database containing consistent configuration data to be accessed by programs running on the computer, the method including:

[0013] providing a file containing further configuration data required by the application, which further data are not stored in the local database;

[0014] intercepting a request by the application to access the local database; and

[0015] returning an item of the further configuration data from the file to the application, responsive to the request.

[0016] Preferably, the database includes a hierarchical database having a tree structure that includes a plurality of branches, and providing the file includes providing data corresponding to one or more branches of the tree structure that are used by the application. Further preferably, the operating system includes a Windows operating system, and the database includes a Windows registry, and providing the data includes providing one or more registry keys, wherein intercepting the request includes hooking a registry service request. Most preferably, hooking the registry service request includes identifying one of the keys in the request, and processing the request responsive to the identified key. Further preferably, providing the file includes providing a hive file, and loading the data from the file into the registry before running the application.

[0017] Preferably, intercepting the request includes making a determination whether the request relates to one of the branches that contains only the further configuration data, or whether the request relates to another of the branches that is shared with the database, and processing the request responsive to the determination.

[0018] Additionally or alternatively, intercepting the request by the application includes receiving a request to alter the further configuration data, and the method includes altering the data in the file responsive to the request. Preferably, the method further includes saving the file including the altered data upon termination of the application, to be used in running the application subsequently.

[0019] Preferably, returning the item of the further configuration data includes emulating access by the operating system to the database, so that the request is handled in a manner transparent to the application.

[0020] In a preferred embodiment, the further configuration data include data that would normally be written to the database in the course of installation of the application on the computer, and running the software application includes running the application substantially without installation on the computer, by using the data in the file.

[0021] There is also provided, in accordance with a preferred embodiment of the present invention, a method for running a software application on a computer without installation of the application thereon, under an operating system that provides a local database containing consistent configuration data to be accessed by programs running on the computer, which configuration data would normally include installation data generated during the installation of the application, the method including;

[0022] providing a rile containing the installation data, which are not stored in the local database; and

[0023] accessing the data in the file instead of accessing the local database so as to retrieve the installation data while running the application.

[0024] Preferably, the method includes receiving the file and the application by download over a network to run on the computer. Further preferably, accessing the data includes providing the installation data from the file in a manner that emulates access by the operating system to the database, whereby the data are accessed in a manner transparent to the application.

[0025] In a preferred embodiment, providing the file includes collecting the installation data responsive to installing the application on a trial computer.

[0026] There is additionally provided, in accordance with a preferred embodiment of the present invention, a method for generating an emulation file for use in running a software application on a user computer under an operating system that provides a local database containing consistent configuration data to be accessed by programs running on the user computer, which configuration data would normally include installation data generated during installation of the application on the user computer, the method including;

[0027] installing the application on a trial computer;

[0028] intercepting a request generated while installing the application to write the installation data to the database on the trial computer; and

[0029] responsive to the intercepted request, writing the installation data to the emulation file, to be accessed by the application running on the user computer in place of accessing the local database, whereby the application runs on the user computer without installation thereon.

[0030] Preferably, writing the installation data includes saving one or more registry keys in a hive file. Most preferably, saving the one or more registry keys in the hive file includes creating an emulation branch in the registry that mirrors locations at which the one or more keys are stored in the registry during the installation on the trial computer, and saving the emulation branch in the hive file.

[0031] There is further provided, in accordance with a preferred embodiment of the present invention, computer apparatus having an operating system that provides a local database containing consistent configuration data to be accessed by programs running on the apparatus, which apparatus is adapted to receive a file containing further configuration data required by an application, which further data are not stored in the local database, and to run an application under the operating system by intercepting requests made by the application to access the database and to return, responsive to the requests, items of the further configuration data from the file to the application.

[0032] There is moreover provided, in accordance with a preferred embodiment of the present invention, computer apparatus for running a software application under an operating system that provides a local database containing consistent configuration data to be accessed by programs running on the computer, which configuration data would normally include installation data generated during installation of the application on the apparatus, which apparatus is adapted to receive a file containing the installation data, which are not stored in the local database, and to run the application without the installation of the application on the apparatus by retrieving the installation data from the file instead of accessing the local database.

[0033] There is furthermore provided, in accordance with a preferred embodiment of the present invention, apparatus for generating an emulation file for use in running a software application on a user computer under an operating system that provides a local database containing consistent configuration data to be accessed by programs running on the user computer, which configuration data would normally include installation data generated during installation of the application on the computer, the apparatus including a trial computer on which the application is installed, which trial computer is adapted to intercept requests, generated while installing the application, to write the installation data to the local database on the trial computer, and which trial computer is further adapted, responsive to the intercepted requests, to write the installation data to the emulation file, to be accessed by the application running on the user computer in place of accessing the local database, whereby the application runs on the user computer without installation thereon.

[0034] There is also provided, in accordance with a preferred embodiment of the present invention, a computer software product for enabling a software application to run on a computer having an operating system that provides a local database containing consistent configuration data to be accessed by programs running on the computer, the product including a computer-readable medium in which program instructions are stored, which instructions, when read by the computer, cause the computer to receive a file containing further configuration data required by the application, which further data are not stored in the local database, and to intercept a request by the application to access the local database, so as to return an item of the further configuration data to the application, responsive to the request.

[0035] There is additionally provided, in accordance with a preferred embodiment of the present invention, a computer software product for enabling a software application to run on a computer without installation of the application on the computer, under an operating system that provides a local database containing consistent configuration data to be accessed by programs running on the computer, which configuration data would normally include installation data generated during the installation of the application on the computer, the product including a computer-readable medium in which program instructions are stored, which instructions, when read by the computer, cause the computer to read a file containing the installation data, which installation data are not stored in the database, and to access the data in the file instead of accessing data while running the application.

[0036] There is further provided, in accordance with a preferred embodiment of the present invention, a computer software product for generating an emulation file for use in running a software application on a user computer under an operating system that provides a local database containing consistent configuration data to be accessed by programs running under the operating system, which configuration data would normally include installation data generated during installation of the application, the product including a computer-readable medium in which program instructions are stored, which instructions, when read by a trial computer, cause the trial computer to intercept a request generated to write the installation data to the database while the application is being installed on the trial computer, and responsive to the intercepted request, to write the installation data to the emulation file, to be accessed by the application running on the user computer instead of accessing the local database, whereby the application runs on the user computer without installation thereon.

[0037] The present invention will be more fully understood from the following detailed description of the preferred embodiments thereof, taken together with the drawings in which:

BRIEF DESCRIPTION OF THE DRAWINGS

[0038] FIG. 1 is a block diagram that schematically illustrates a system for running computer software applications without installation thereof, in accordance with a preferred embodiment of the present invention;

[0039] FIG. 2A is a graph that schematically shows details of a local registry database, as is known in the art;

[0040] FIG. 2B is a graph that schematically shows details of an emulation registry database, in accordance with a preferred embodiment of the present invention;

[0041] FIG. 2C is a graph that schematically shows details of a combined registry database, in accordance with a preferred embodiment of the present invention;

[0042] FIG. 3 is a flow chart that schematically illustrates a method for registry emulation, in accordance with a preferred embodiment of the present invention; and

[0043] FIG. 4 is a flow chart that schematically illustrates a method for creating an emulation hive file, in accordance with a preferred embodiment of the present invention.

DETAILED DESCRIPTION OF PREFERRED EMBODIMENTS

[0044] FIG. 1 is a block diagram that schematically illustrates a system 20 for running software applications without installation on a computer 21, in accordance with a preferred embodiment of the present invention. Computer 21 preferably comprises a personal computer (PC) running a Microsoft Windows operating system. The computer has a disk memory 22 which stores operating system files 24 and a local Windows registry 26, as well as other data 28. Computer 21 is linked to a server 32, preferably via a network 30, such as the Internet. A disk memory 34 of the server stores its own operating system files 36, along with an executable application program file 38 and a hive file 40 associated with the application program. The hive file is used to supplement the data in local registry 26, enabling the application to run on computer 21 without installation, as described hereinbelow.

[0045] FIG. 2A is a graph that schematically illustrates details of registry 26, in accordance with conventions of the Windows operating system. The registry comprises a tree-structured database having a root 41 and a number of predefined keys at the root, including a HKEY_LOCAL_MACHINE key 43. This latter key conventionally leads to a branch of the tree holding configuration data regarding hardware and software that are installed in computer 21. Typically, the software configuration data are stored under a software subkey 44, which itself contains subkeys such as a “MYFILES” subkey 46 and vendor subkeys 50. All of these subkeys generally contain further subkeys, such as subkeys 48 corresponding to particular file types under subkey 46, as well as values (not shown in this figure) The elements of registry 26 and their locations it the registry database are shown in FIG. 2A only by way of example. Windows imposes relatively few constraints on application developers, who may thus choose to define different keys and locations in the registry in which to store their configuration data.

[0046] FIG. 2B is a graph that schematically illustrates details of an emulation registry database 52, in accordance with a preferred embodiment of the present invention. The figure presents a hypothetical example of a database created to hold registry emulation data for two applications, “GAME A” and “GAME B,” belonging to an application vendor named “RMAT.” For this purpose, an emulation key 54 is preferably created under HKEY_LOCAL_MACHINE key 43, most preferably using “registry spying” procedures described hereinbelow with reference to FIG. 4. The contents of database 52 are stored in hive file 40. When the hive file is loaded, preferably using the RegLoadKey function of the above-mentioned Microsoft Platform SDK, key 54 is added to the tree of registry 26 in its designated location under HKEY_LOCAL_MACHINE key 43. Alternatively, the emulation key may be created elsewhere in the registry tree, as long as its location is such as to allow the hive file with the emulation key to be created.

[0047] Emulation key 54 contains subkeys and branches that correspond to the subkeys and branches of local registry 26. These are typically the subkeys and branches to which application 38 would write its configuration data if the application were actually installed on computer 21. Thus, database 52 comprises a second HKEY_LOCAL_MACHINE key 56 under emulation key 54, with its own software subkey 44 and MYFILES subkey 46 corresponding to the software and file type subkeys in local registry 26. Subkey 46 in database 52 contains a further subkey 53 corresponding to a new file type “.hij” used by the RMAT applications. Database 52 also comprises a vendor subkey 60 for RAT, containing configuration data and values required for the vendor's games.

[0048] FIG. 2C is a graph that schematically shows details of a combined registry database 64, which is presented by a registry emulation function to application 38 running on computer 21, in accordance with a preferred embodiment of the present invention. Combined database 64 is created from local registry 26 and emulation database 52. It corresponds to the registry structure that application 38 would encounter on disk 22 if the application were installed there. Database 64, however, is a sort of virtual database, since there is nowhere that it is stored as an integrated unit in this form. Rather, the emulation function running in conjunction with the application on computer 21 provides pieces of the database dynamically, in reply to requests by the application to access the registry. The method by which the emulation database is combined with the local registry is described hereinbelow with reference to FIG. 3. The result is that the registry emulation is transparent to the application, which runs as though it were installed on the computer.

[0049] Combined database 64 includes some keys that are purely local (belonging only to registry 26), others that are used only by the registry emulation, and still others that are shared between local and emulation functions. For example, vendor subkeys 50 are pure local keys, while vendor subkey 60 is a pure emulation key. On the other hand software subkey 44 and MYFILES subkey 46 are shared, appearing in both registry 26 and emulation database 52. When the application invokes such a shared key, the emulation process preferably refers to both the local registry and the emulation database in order to service the application. When the application changes one of the shared keys or values, the change is preferably recorded in the emulation database, without changing the local registry itself. Thus, when the application is finished running, the computer will return to its previous configuration, as given by its local registry.

[0050] FIG. 3 is a flow chart that schematically illustrates a method for running an application with registry emulation, in accordance with a preferred embodiment of the present invention. At a connection step 70, computer 21 connects to server 32 and, at an application request step 72, invokes application 38. In response, the server provides the necessary application code and hive file 40. At a load step 74, the contents of the hive file (database 52) are loaded into the registry of computer 21, preferably using the above-mentioned RegLoadKey function.

[0051] Registry emulation is initiated using database 52 and registry 26, at a start emulation step 75. The emulation is carried out by a Windows Virtual Device Driver (VxD), which includes the necessary functions to intercept and service registry requests made by application 38. Methods of building and loading VxDs are known in the art of Windows programming. For example, tools and procedures for compiling, linking, loading and debugging VxDs are provided by VtoolsD (available from Compuware Numega, http://www.numega.com/). The use of these tools is described in Charter 5 of the VtoolsD User's Guide, which is incorporated herein by reference. The VxD that is used for emulation is preferably preinstalled on disk 22 of computer 21, and is loaded dynamically at step 75. Alternatively, the VxD may be downloaded from server 32 for installation on computer 21 at this stage. Loading of the VxD is preferably accomplished by calling the appropriate Windows API or service. These APIs and services are described in MSDN publications including “Platform SDK: Win32 API” and Chapter 36 (Virtual-Device Loader) of the “Driver Development Kit,” which are incorporated herein by reference. Alternatively, VtoolsD provides a utility known as VXDLOAD that can be used for this purpose. Upon completion of the emulation (at step 84, below), the VxD is preferably unloaded.

[0052] The application begins to run on computer 21, at an application running step 76. Whenever the application requests one of the registry services provided by the Windows VMM, an appropriate function of the registry emulation VxD intercepts, or “hooks” the request, at a hooking step 78. Preferably, the following services are hooked:

[0053] RegOpenKey

[0054] RegCloseKey

[0055] RegQueryValue

[0056] RegQueryValueEx

[0057] RegCreateKey

[0058] RegDeleteKey

[0059] RegSetValue

[0060] RegSetValueEx

[0061] RegEnumKey

[0062] RegEnumValue

[0063] RegQueryInfoKey

[0064] Any suitable tools may be used for this purpose, such as the Hook_Device_Service_C service, also provided by VtoolsD. This service enables emulation functions to monitor and replace the services of the VMM with substitute services. Details of these substitute services are described in Appendix A.

[0065] Every registry request made by the application must specify a registry key to which the request refers. To deal with these requests, the registry emulation functions build and maintain a list of all open registry keys, referred to herein as the key list. In the Windows operating system, each open key is assigned a unique handle, which is preferably used to identify the key in the list. The key list can be implemented as an array or a linked list. Preferably, the key list is maintained in memory as a binary-sorted array (sorted by the handles), so that the emulation runs efficiently and does not slow the application. A new record is added to the key list whenever RegOpenKey or RegCreateKey is called.

[0066] In addition to the handle, the following information is preferably collected and held for each key in the list;

[0067] The path to the key.

[0068] The number of subkeys that exist under this key in registry 26, referred to herein as the maximum key index.

[0069] The number of values that exist under this key in registry 26, referred to herein as the maximum value index.

[0070] A flag indicating whether or not the key exists in registry 26, preferably having the value true if the key exists only in emulation database 52 (i.e., a pure emulation key), and false if it exists in registry 26.

[0071] An additional key handle, referred to herein as the parallel key.

[0072] Beyond the path and the handle, the other fields in the key list are useful in enhancing the efficiency and speed of the emulation functions. Not all of these fields need be used, and some may be blank. Further details regarding the use of this information are provided in Appendix A.

[0073] For each registry request received from the application, the registry emulation VxD finds the corresponding key in the key list, at a key finding step 80. Then, at a servicing step 82, the emulation provides the application with the requested service In order to provide for emulation of all of the registry services that the application may request, the emulation VxD and key list must support the following functions.

[0074] Add a key to the list,

[0075] Remove a key from the list.

[0076] Find a key in the list and retrieve its information.

[0077] Find a key in the list and change its information.

[0078] For all of the functions except adding a key to the list, the handle of the key is preferably used as an identifier in carrying out the function. As in any case of service hooking, the emulation function returns to the application the same range of return codes as the original VMM service would. Thus, the application is substantially unaware of and unaffected by the emulation. The above-mentioned Microsoft Platform SDK documentation lists the possible return codes for each registry-related service. Appendix A provides a brief description and pseudocode listing for all of the hooked services that are provided by the registry emulation functions.

[0079] The emulation functions continue to carry out steps 78 through 82 for each registry service request that is received while the application is running. When the application is finished running, emulation registry database 52 is saved to hive file 40, including any changes made in the data while the application was running. When computer 21 again asks to run application 38, the stored data in the hive file are preferably reloaded, so that the changes made previously are restored.

[0080] FIG. 4 is a flow chart that schematically illustrates a method for creating hive file 40, in accordance with a preferred embodiment of the present invention. This method is based on “spying” on a trial computer, such as computer 21, during installation of application 38 on the computer. The normal installation procedure is used while a spy process monitors information written to the registry, in order to collect the keys and values needed for inclusion in emulation registry database 52.

[0081] Installation of the application is begun at an initial step 90. During installation, the spy process intercepts all requests by the application (or by an installer utility associated with the application) to write to the registry of the computer, at a request hooking step 92, The hooking is preferably accomplished in substantially the same manner as at step 78 in the method of FIG. 3, using the above-mentioned Hook_Device_Service_C service, for example. In this case, the following VEM services must be hooked:

[0082] RegOpenKey

[0083] RegCloseKey

[0084] RegCreateKey

[0085] RegSetValue

[0086] RegSetValueEx

[0087] As an alternative to hooking these services, it is possible simply to monitor and record registry accesses by the application or its installer, using a utility such as Regmon (a shareware program available at http://www.sysinternals.com/regmon.htm). The information thus obtained can then be used to manually construct the emulation registry, using Regedit, for example.

[0088] Each of the hooked requests at step 92 includes a specification of a key, as required by the syntax of the request. The operating system responds to these requests by providing the handle corresponding to the key. Using these keys and their handles, the spy process builds a key list for the application, similar to the key list that is later used at step 80 in the emulation method of FIG. 3. Thus, each hooked request is examined, at a key finding step 94, to determine whether the key already exists in the key list. If the process finds, at a new key step 96, that the key is not yet on the list, then the key path and handle are captured, in a get key step 98. This information is added to the key list, in an add key step 100.

[0089] Using the key provided in the hooked request, the spy process services the request (taking the place of the VMM), at a request servicing step 102. Appendix B provides a brief description and pseudocode listing for each of the hooked services that is provided by the spy process. To save the registry data gathered at this stage, the process creates an emulation branch in the registry, exemplified by the branch under emulation subkey 54 in database 52. Then, at a data writing step 104, all of the registry data generated during the installation are written twice: once to the location intended by the application itself, and once to a mirror location in the emulation branch. For example, RMAT vendor key 60 will be written both to HKEY_LOCAL_MACHINE\SOFTWARE\RMAT and to HKEY_LOCAL_MACHINE\EMULATION\HKEY_LOCAL_MACHINE\SOFTWARE\RMAT. The installation thus proceeds transparently, without the application or installer being aware of the spy process going on once installation of the application is finished, the emulation branch of the registry is saved to hive file 40, at a file saving step 106, preferably by using the appropriate RegSaveKey command.

[0090] The software required to carry out the functions described hereinabove, such as registry emulation, creating emulation hive files, and running applications without installation, is typically conveyed to computer 21 and/or server 32 in electronic form, over network 30, for example. Alternatively, some or all of the software may be supplied on tangible media, such as CD-ROM or non-volatile memory.

[0091] Although preferred embodiments are described herein with reference to system 20, shown in FIG. 1 as a client-server system operating over network 30, the usefulness of registry emulation is in no way limited to such systems. Registry emulation may also be used locally on computer 21, for example, to run applications off a medium such as a CD-ROM while saving the time needed for installation on the computer. Running applications without installation also avoids cluttering of local registry 26 with excessive application data. Furthermore, although the embodiments described herein are based on the registry of the Windows operating system, the principles of the present invention are similarly applicable to other operating systems that use a common database to maintain consistent configuration data for different applications.

[0092] It will thus be appreciated that the preferred embodiments described above are cited by way of example, and that the present invention is not limited to what has been particularly shown and described hereinabove. Rather, the scope of the present invention includes both combinations and subcombinations of the various features described hereinabove, as well as variations and modifications thereof which would occur to persons skilled in the art upon reading the foregoing description and which are not disclosed in the prior art.

Claims

1. A method for running a software application on a computer without installation of the application thereon, under an operating system that provides a local database containing consistent configuration data to be accessed by programs running on the computer, which configuration data would normally include installation data generated during the installation of the application, the method comprising:

providing a file containing the installation data which are not stored in the local database; and
accessing the data in the file instead of accessing the local database so as to retrieve the installation data while running the application.
Patent History
Publication number: 20040045016
Type: Application
Filed: Aug 22, 2003
Publication Date: Mar 4, 2004
Applicant: Extent Technologies Ltd.
Inventors: Amnon Romm (Thornhill), Avi Elkoni (Matan)
Application Number: 10645902
Classifications
Current U.S. Class: Application Program Interface (api) (719/328)
International Classification: G06F009/46;