[Unattended] Trying to make an apps-only-perl-script, some problems

2005-01-31 Thread Gerhard Hofmann
Hi all, I want to create an interactive perl script that automates the process of application-only-installs, see here: http://www.mail-archive.com/unattended-info@lists.sourceforge.net/msg01245.html I have a batch file \\server\install\bin\appsonly.bat that should check for existence of

[Unattended] SQL Server 2000 SP3a

2005-01-31 Thread Tony Worrall
Hi all, I have SQL Server installing silently after a Windows 2003 Standard Server install, however, the service pack, sp3a, doesn't seem to work silently, yet installs fine otherwise. Is there anyone out there already doing this as part of unattended? If so, please let me know how you've

RE: [Unattended] SQL Server 2000 SP3a

2005-01-31 Thread Kaari.Jakobi
-Original Message- From: Tony Worrall [mailto:[EMAIL PROTECTED] Sent: Monday, January 31, 2005 2:46 PM To: unattended-info@lists.sourceforge.net Subject: [Unattended] SQL Server 2000 SP3a Hi all, I have SQL Server installing silently after a Windows 2003 Standard Server

[Unattended] Problem after first reboot

2005-01-31 Thread Rampanelli Michael J
Title: Message I'm using Unattended v4.6 to install Windows 2000 Server SP4 and some other things. Here's the problem. Windows installs without a problem. Perl installs fine. Base.bat kicks inand starts running Win2ksp4-updates. The first update which requires a reboot comes (I believe

Re: [Unattended] SQL Server 2000 SP3a

2005-01-31 Thread Tony Worrall
I've tried editing the .iss for sp3a with no success, it seems to hang halfway through and then complete with a -12 error. Perhaps you can send me your .iss file for sp3a to use as a template? (without the license key, of course!) Tony Worrall [EMAIL PROTECTED] wrote: -Original

Re: [Unattended] Trying to make an apps-only-perl-script, some problems

2005-01-31 Thread Fabian Wenk
Hello Gerhard Hofmann wrote: When running appsonly.bat from a mapped network drive, it will launch appsonly.pl. If running the batch file from a unc path, appsonly.pl won't be found. Obviously, it's a problem when working directory is a UNC path. How can I fix this? I just tried something and

Re: [Unattended] Trying to make an apps-only-perl-script, some problems

2005-01-31 Thread Fabian Wenk
Hello Fabian Wenk wrote: echo. echo Cleaning up... if %connect% == YES ( cd /d %SystemDrive%\ net use X: /d NUL: ) *ups* small error, the second last line should have Z: instead of X:, it probably would be better to use the same for testing and documenting. ;) bye Fabian

Re: [Unattended] Trying to make an apps-only-perl-script, some problems

2005-01-31 Thread Adam Peart
In dos, you can only work through a drive letter. You can't directly use a unc path. At 01:09 PM 1/31/2005, you wrote: Hello Gerhard Hofmann wrote: When running appsonly.bat from a mapped network drive, it will launch appsonly.pl. If running the batch file from a unc path, appsonly.pl won't

Re: [Unattended] Trying to make an apps-only-perl-script, some problems

2005-01-31 Thread Fabian Wenk
Hello Adam Peart wrote: At 01:09 PM 1/31/2005, you wrote: -8- @echo off setlocal cd /d %0\.. if errorlevel 1 ( net use /PERSISTENT:NO NUL: net use Z: \\ntinstall\install NUL: cd /d Z:\ set connect=YES ) In dos, you can only work through a drive letter.