+ Reply to Thread
Page 1 of 2 12 LastLast
Results 1 to 10 of 18

Thread: Msde

  1. #1
    Unregistered Guest

    Default Msde

    I searched the forum and found a number of threads about installing MSDE, but they all seemed to be unanswered. I know I can go to the MS site and probably figure it out, but it would be nice if there was a short explanation, either in a forum post or a FAQ. Every minute saved helps.

  2. #2
    Join Date
    Mar 2004
    Posts
    4,307

    Default Re: Msde

    Hello,

    Microsoft recommends to use their "standard" installation executables (can
    be run in silent mode) to install MSDE.

    For example, you can download the engine here:
    http://support.microsoft.com/default...;EN-US;Q324998

    Dees this help?

  3. #3
    Unregistered Guest

    Default Re: Msde

    I would write a wrapper exe to install MSDE. Then either let the user run the wrapper OR execute it from SB. Here is a snippet of code from a claion program:
    Run(Clip(Command(1)) & 'msderelA\setup.exe sapwd="yourpassword" SECURITYMODE=SQL INSTANCENAME="whateveryouchoose" DISABLENETWORKPROTOCOLS=0',1)


    Command(1) is the drive letter where the install is running from.
    ie
    INSTALLDB.EXE D:\
    and I have a directory on the CD called msdelrelA.

    The install for MSDE is totally command line driven.

    Installing SQL2005 Express is easier because it uses a template to provide the parameters instead of command line. BUT, it requires .net20 and Windows Installer 3.0 to be installed first. I would include both of those files on the CD also. I still use a wrapper (a batch file). Here is the code:
    Start /wait SQLEXPRESS2005\Setup.exe /qb /settings %CD%SQLEXPRESS2005\template.ini

    (All of the above needs to be one line)
    HTH,
    Daryl

  4. #4
    Join Date
    Mar 2004
    Posts
    4,307

    Default Re: Msde

    Very interesting... Thanks for sharing, Daryl.

  5. #5
    Unregistered Guest

    Smile Re: Msde

    Thanks, but I don't use Clarion. Also I have already looked at the articles on MSDN, and I find them to be a little confusing - there are multiple articles, and some of them talk about bulding MSIs (which SetupBuilder doesn't do) and merging modules (which apparently is no longer recommended by MS).

    I know this is something I can figure out in 8 hours, I just thought maybe since installing MSDE must be done all the time by existing SB customers, someone might have a ready-made solution to save me a day. Right now a day is a big deal.

  6. #6
    Join Date
    Mar 2004
    Posts
    4,307

    Default Re: Msde

    So Daryl's MSDE installation description does not help? It's not Clarion specific. Run is an equivalent to the SB5 Run Program script function.

    You only have to run the MSDE installation from within your SetupBuilder script. I'll see if we can provide an "Include Script" to automate this in one of the next builds.

  7. #7
    Unregistered Guest

    Default Re: Msde

    >> It's not Clarion specific

    Aw, thanks for that clarification, with apologies to Daryl.

  8. #8
    Unregistered Guest

    Default Me again

    I have now purchased SB5. I have to have this done by Monday or I turn into a pumpkin. (seriously). Still need some help.

    1) When I decompress the MSDE download from MS, I get \MSDE, \MSDE\Msi, and \MSDE\Setup folders. It's not clear to me (even after reading the docs), what of all these files I need to include with my setup program.

    2) Is SB going to conveniently package all of my files into a single .exe?

    3) When I build a Run command, SB defaults to %_SB_INSTALLDIR%. This seems a strange choice to me, as obviously I do not want to "install" the MSDE setup files to the target machine, I just need to run the MSDE setup. What should I set the target folder to?

    4) >> Command(1) is the drive letter where the install is running from.
    I don't understand what Command is here. It's not a SB script action, so far as I can tell.

    5) This URL explains how to call a couple of functions to make sure that MSDE setup should succeed. I suppose I could live without, but it would be nice to call these and inform the user if one of them fails.

    http://msdn.microsoft.com/library/de...stsql_3g89.asp

    6) What are the advantages, if any, to choosing ShellExecuteEx?

    7) Will you guys just go ahead and automate this whole deal like Wise has? That sure would make things easier for me. I have put this off too long and I've got to get it done soon.

  9. #9
    Unregistered Guest

    Default Re: Msde

    Let me just add, honestly, it would be interesting to know how many people have paid another $400 for Wise just because they have made the MSDE installation point-and-click (as well as running SQL scripts).

  10. #10

    Default Re: Me again

    PMFJI: Did you read the manual or online help? We are installing MSDE 2000 without any problem from our SetupBuilder 5 installation. It took me 15 minutes to write the MSDE installation script (we are using an include script). We have 80 sites running our application now. Installation worked perfect!

    Andrew

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. #00005: Install MSDE 2000, reboot and continue.
    By FAQ in forum SetupBuilder FAQs, Tips and Techniques
    Replies: 0
    Last Post: 01-24-2006, 01:28 AM
  2. #00004: How to distribute MSDE 2000?
    By FAQ in forum SetupBuilder FAQs, Tips and Techniques
    Replies: 0
    Last Post: 01-23-2006, 09:18 AM
  3. Deploy and MSDE app
    By Unregistered in forum SetupBuilder 'How Do I' Questions
    Replies: 1
    Last Post: 05-01-2005, 05:18 PM
  4. Install MSDE
    By NewsArchive in forum SetupBuilder - NNTP
    Replies: 0
    Last Post: 02-03-2005, 02:05 AM
  5. Install MSDE
    By NewsArchive in forum SetupBuilder - NNTP
    Replies: 0
    Last Post: 02-01-2005, 02:43 AM

Tags for this Thread

Posting Permissions

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