Indigo Rose Software

Professional Software Development Tools

 
Results 1 to 3 of 3
  1. #1
    Join Date
    Mar 2006
    Posts
    4

    Silent mode w/ .NET 2.0 as dependency

    I've created a normal installation kit with .net 2.0 as dependency and it works just fine!

    But when in silent mode, if there's no .NET Framework installed on that computer, it simply aborts the installation.
    - It works though if I uncheck the "Start in silent mode" checkbox,and this way, the installation of .net framework 2.0 is not silent, But I need it checked.

    I'm desperate, it has to be done by noon!
    Last edited by PROKA; 03-31-2006 at 01:38 AM.

  2. #2
    Join Date
    Mar 2006
    Posts
    4
    it says to run it like this:

    dotnetfx.exe /q:a /c:"install /q"

    The problem is that if I put
    local strFileToRun = strRuntimeSupportFolder.."\\dotnetfx.exe /q:a /c:""install /q"""; in Setup Factory Code, it gives me an error.

    :((

  3. #3
    Join Date
    Jan 2000
    Posts
    2,002
    Try:

    Code:
    local strFileToRun = strRuntimeSupportFolder.."\\dotnetfx.exe";
    local strArguments =  "/q:a /c:\"install /q\"";
    File.Run(strFileToRun,strArguments);
    You need to separate the command line arguments from the filename.

Similar Threads

  1. Dependency Module: Microsoft .NET Framework 2.0
    By Adam in forum Setup Factory 8.0 Examples
    Replies: 30
    Last Post: 11-20-2009, 08:27 PM
  2. Dependency Module: Microsoft .NET Framework 1.1
    By Darryl in forum Setup Factory 8.0 Examples
    Replies: 12
    Last Post: 06-10-2008, 02:26 AM
  3. Setup Factory and VS 2005
    By vazir786 in forum Setup Factory 7.0
    Replies: 4
    Last Post: 01-13-2006, 08:47 PM
  4. .NET 1.1 Dependency Script Questions
    By drpepper in forum Setup Factory 7.0
    Replies: 1
    Last Post: 01-03-2006, 02:04 PM
  5. What's New in Visual Patch 2.0?
    By Ted Sullivan in forum Visual Patch 2.0
    Replies: 0
    Last Post: 04-08-2005, 02:53 PM

Posting Permissions

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