Herfried
Thanks for the reply... here's the code... let me know what you find!
Many MANY thanks!
wardeaux
Dim strFileDest As String
Dim myproc As Process
strFileDest = "C:\Program Files\EZJobTracker\"
lblStatus.Text = "Installing MSDE..."
Application.DoEvents()
If (Application.CommonAppDataRegistry.GetValue("MSDE", "Start") <> "Finish")
Then
Application.CommonAppDataRegistry.SetValue("MSDE", "Start")
myproc = Process.Start(Application.StartupPath & "\MSDERelA\Setup.exe",
" SAPWD=""EZJT_DB_SA"" INSTANCENAME=""EZJT_DB"" TARGETDIR=""" & strFileDest
& """ SECURITYMODE=SQL DISABLENETWORKPROTOCOLS=0")
myproc.WaitForExit()
Application.CommonAppDataRegistry.SetValue("MSDE", "Finish")
End If
"Herfried K. Wagner [MVP]" <hirf-spam-me-(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> * "Wardeaux" <(E-Mail Removed)> scripsit:
> > I've written a "setup" wrapper that calls a sequence of "setup.exe",
and
> > all works except when I call the setup.exe for the MSDE, then it gets
about
> > half way through and then hangs... The MSDE setup works fine from a CMD
> > prompt... anyone know of articles or known issues with this technique,
and
> > what are my alternatives to having my user install several "Commandline
> > parameter intensive" setups to get this installed? 
>
> "Post your code."
>
> --
> M S Herfried K. Wagner
> M V P <URL:http://dotnet.mvps.org/>
> V B <URL:http://dotnet.mvps.org/dotnet/faqs/>