Indigo Rose Software

Professional Software Development Tools

 
+ Reply to Thread
Results 1 to 2 of 2
  1. #1
    Join Date
    Feb 2009
    Posts
    2

    Grin Autorun Unattended Installers?

    Do you guys have any suggestions for where I might look on using your app to run unattended installers?

    I'm thinking that some of my clients could benefit something along the lines of using this app as a means of distributing unattended versions of software.

    Take Office 2003 for example. User XYZ from company X wants to install it on their home computer (Company CEO) but I don't want to walk him through it over the phone.

    Could I use the software to pack all the files into a project, make an MST file from the CIW (from MS) and then just have the installer run once the user double-clicks on the finished project? No screens would need to be present. Basically APMS would show a loading statement while it extracts all the Office installer files and then the MSI would take over once it finishes.

    It allows people to see the progress but not have to bother with answering questions, seeing as a Transform has already been created.

    I see your software can do nice pages and the like, but I'm curious if there's something I can look over to make it unattended - just a little progress indicator and nothing else.

    Thanks for any help.

  2. #2
    Join Date
    Oct 2007
    Location
    Gensokyo
    Posts
    1,324
    Well, That is possible.

    Code:
    File.Run("AutoPlay\\Docs\\setup.exe", "TRANSFORMS=Unattended.MST /qb-", "AutoPlay\\Docs\\", SW_SHOWNORMAL, true);
    Application.Exit();
    Then enable the progress window.



    Build your project and it should install Office 2003 on it's own.

    If you don't want to show the AMS window change

    Code:
    Application.Exit();
    to

    Code:
    Window.Close(Application.GetWndHandle(), 1);
    And put the code in On Preload.

  3. #3
    Join Date
    Feb 2009
    Posts
    2

    Thumbs up Thanks!

    Cool, thanks for the response! Just trying to see what else the app does here so trying it out for a little while. Looks pretty interesting so far

Similar Threads

  1. Can't get autorun to work
    By USBCUser in forum Autorun MAX! 2.1 Discussion
    Replies: 2
    Last Post: 02-25-2008, 11:43 AM
  2. 2 Questions In One... No Autorun, No Images What Is This?
    By LHUPA in forum AutoPlay Media Studio 7.5
    Replies: 2
    Last Post: 02-13-2008, 12:34 AM
  3. What is Autorun MAX?
    By Adam in forum Autorun MAX! 2.1 FAQ
    Replies: 0
    Last Post: 08-29-2006, 12:58 PM
  4. All about Autorun MAX!
    By Brett in forum Autorun MAX! 2.1 Discussion
    Replies: 0
    Last Post: 07-11-2006, 09:48 AM
  5. Quiting the autorun when cd is ejected
    By alexg in forum AutoPlay Media Studio 5.0
    Replies: 5
    Last Post: 06-16-2005, 01:00 AM

Tags for this Thread

Posting Permissions

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