How to use a software without installing it on a computer?

15,413

Out there exists a lot of 3rd party applications that trace the installation of another software to create a portable version of the software that you want.

These kind of applications are commonly known as "install tracers", it basically monitors the filesystem and registry modifications to reproduce them in an automated way. This avoids the need of an installation procedure in other machines.

Note that obviously an installation of the software is need to be realized once to track what files the installer expands and what other things the installer does, but you can do this for example in a Virtual Machine.


I suggest you to use VMWare ThinApp because it's the most automated way I discovered.

VMware ThinApp is an agentless application virtualization solution that isolates applications from their underlying operating systems to eliminate application conflict and streamline delivery and management.

enter image description here

It is intuitive with a user-friendly GUI, and it comes with an offline user guide in pdf format which you also could see online in VMWare's website.

ThinApp is a paid product, however, with the trial mode I think you could do the task you require.

Share:
15,413

Related videos on Youtube

optimal control
Author by

optimal control

Updated on September 18, 2022

Comments

  • optimal control
    optimal control almost 2 years

    I hope my question fits superuser. I am a PhD student and I must use a software on my computer at the faculty's office but unfortunately, the informaticians are not at the university since a quite long time and I can not install the software myself because the computer requires an administrator password in order to install softwares.

    Is there any way to open and use a software without installing it to the computer ? For example, installing the software on the USB key ? or another method ?

    Any help highly appreciated.

    • kenorb
      kenorb over 8 years
      Look for portable version of the same software.
    • AFH
      AFH over 8 years
      It depends entirely on the software and operating system you want to use. As Bram says Portable Apps is an excellent resource for Windows, but the software available is (necessarily) limited to freeware, though I have found that some installed programs will run if you copy the installation directory from one machine to another, but you must be careful that you do not infringe licensing terms if you do so. On Linux there is no equivalent, but by setting appropriate paths in the environment and scripts you can install programs into a user's home directory.
    • Christoph Rüegg
      Christoph Rüegg over 8 years
  • Ramhound
    Ramhound over 8 years
    It also is extremely expensive.
  • ElektroStudios
    ElektroStudios over 8 years
    @Ramhound, yes, thanks for point it, but the OP seems to need to perform this task once in his life, then it could do it within the trial expiration of the ThinApp.
  • ElektroStudios
    ElektroStudios over 8 years
    Anyways if someone is interested: Free alternatives are Regshot 2 Unicode for registry monitoring (it creates a snapshot of the registry translated as a functional registry script) and Moo0 File Monitor for file monitoring. Of course out there are much more free apps like ProcessMonitor of SysInternals, but I mentioned two basic apps that works good, note that maybe it could need more work with other monitoring applications for example if the app to portabilize install drivers or register shell extensions or codecs. VMWare ThinApp does all those mentioned things.
  • Often Right
    Often Right over 8 years
    Wouldn't it be ironic if this had to be installed!
  • ElektroStudios
    ElektroStudios over 8 years
    @N_Soong An installation is need once to track filesystem changes, however, depending on the kind of installer builder used to compile the setup.exe (as Inno Setup, NSIS, MSI, etc) it could be unpacked to obtain the setup script/project, in that case an installation will not be needed if enough programming knowledges to understand the unpacked script, because the script should contains all the operations that the installer do.