Indigo Rose Software

Professional Software Development Tools

 
Results 1 to 3 of 3
  1. #1
    Join Date
    Sep 2004
    Location
    Germany
    Posts
    38

    Grin Differential Setup(s)

    Hi,

    I have a question concerning the basic concepts of SUF 7:

    Is it possible to create a (new) 'differential' setup from an already existing setup automacticly?
    Example: The basic setup (with all files) is created at realease time of a product. During life-time of the product, several components change due to enhancements, bug-fixes, ...
    Is it possible to take the basic setup and create from the original file-list a new setup with only the changed files?

    Regards
    Thomas

  2. #2
    Join Date
    Jun 2005
    Posts
    470
    You may create a new project and add a folder reference to it.

    Say your most recent files are in C:\Last
    , the files added to the base project are in C:\Base
    , and the referenced folder is C:\Diff

    It's easy to make a script in VBScript , wsh etc. that will do something like

    delete *.* from Diff
    for each file in Last
    if (same file does not exist in Base) OR (exists but is older) then
    copy file Last -> Diff
    end if
    next

    You may set the script to run automatically before generating a setup.exe (see Build Settings), so each time you build the project, setup will contain the updated files.

  3. #3
    Join Date
    Oct 2003
    Posts
    908
    You might want to consider using Visual Patch for that job. That's exactly what it is made for. It looks at the differences between versions and only packages up the bytes that have changed. It's extremely fast and efficient and creates secure binary patches.

Similar Threads

  1. Anybody signing setups with Authenticode?
    By Steve_K in forum Setup Factory 7.0
    Replies: 4
    Last Post: 05-27-2006, 11:29 AM
  2. How to launch multiple setups?
    By JoeDul in forum Setup Factory 7.0
    Replies: 3
    Last Post: 05-16-2005, 07:57 AM
  3. How to use old setups files in version 7
    By carlos_motta in forum Setup Factory 7.0
    Replies: 1
    Last Post: 10-14-2004, 08:58 AM
  4. Downsizing irsetup.exe for overall smaller setups.
    By NetSeeker in forum Setup Factory 6.0
    Replies: 3
    Last Post: 12-30-2003, 04:24 PM
  5. Setups within setup
    By Lavrendi in forum Setup Factory 6.0
    Replies: 4
    Last Post: 10-30-2003, 09:46 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts