The Notebook Review forums were hosted by TechTarget, who shut down them down on January 31, 2022. This static read-only archive was pulled by NBR forum users between January 20 and January 31, 2022, in an effort to make sure that the valuable technical information that had been posted on the forums is preserved. For current discussions, many NBR forum users moved over to NotebookTalk.net after the shutdown.
Problems? See this thread at archive.org.

    Stand alone programs versus installation

    Discussion in 'Windows OS and Software' started by Mr530, Aug 28, 2007.

  1. Mr530

    Mr530 Notebook Enthusiast

    Reputations:
    0
    Messages:
    29
    Likes Received:
    0
    Trophy Points:
    5
    What advantages do installed programs (via installer) have over stand alone?

    Stand alone seems a much better solution because it doesn't touch your registry...

    I know this is a stretch but is there anyway to make standalones out of installers without having access to the source code?
     
  2. ScuderiaConchiglia

    ScuderiaConchiglia NBR Vaio Team Curmudgeon

    Reputations:
    2,674
    Messages:
    6,039
    Likes Received:
    0
    Trophy Points:
    205

    You're right, its a stretch. No there isn't.

    Gary
     
  3. Pitabred

    Pitabred Linux geek con rat flail!

    Reputations:
    3,300
    Messages:
    7,115
    Likes Received:
    3
    Trophy Points:
    206
    Depends on the program. Programs like Firefox work quite well running without the installer, but they typically ship as an installer. Generally open-source programs work well without an installer. Outside of that, it's a grey area, and depends on the application. The company I used to work for has a completely standalone product, but there's no way you could use MS Office without an installer, it depends on too many other files and bits and pieces that the installer scatters about the system.
     
  4. Jalf

    Jalf Comrade Santa

    Reputations:
    2,883
    Messages:
    3,468
    Likes Received:
    0
    Trophy Points:
    105
    Couple of things.
    First, just because it's standalone doesn't mean it won't touch the registry. (It might do so while the program is running)

    In fact, one advantage of installers is that they get a chance to clean up after them. If you delete a standalone program, it won't clean out any changes it may have made to the registry. When running an uninstaller, it is supposed to clean up. (Whether or not it actually does this is an entirely different matter. :)

    Now, many applications rely on accessing the registry. So even if you were to strip out the installer and pretend it was a standalone application, you'd run into the problem that the program woulnd't be able to find the registry keys it expects (because they're supposed to be put there by the installer)
    So no, usually you can't just strip away the installer.