| delorie.com/archives/browse.cgi | search |
| X-Recipient: | archive-cygwin AT delorie DOT com |
| X-SWARE-Spam-Status: | No, hits=1.4 required=5.0 tests=AWL,BAYES_50,EXECUTABLE_URI,FREEMAIL_FROM,RCVD_IN_DNSWL_NONE,RCVD_IN_HOSTKARMA_NO,RCVD_IN_HOSTKARMA_YE,RP_MATCHES_RCVD |
| X-Spam-Check-By: | sourceware.org |
| Date: | Sat, 18 Aug 2012 14:14:25 -0600 |
| From: | Tom Schutter <t DOT schutter AT comcast DOT net> |
| To: | cygwin AT cygwin DOT com |
| Subject: | Re: semi-automated installation and/or updates |
| Message-ID: | <20120818201425.GA21116@shadow.schutter.home> |
| References: | <20120818163404 DOT GA8853 AT shadow DOT schutter DOT home> <1523147992 DOT 20120818223708 AT mtu-net DOT ru> |
| MIME-Version: | 1.0 |
| In-Reply-To: | <1523147992.20120818223708@mtu-net.ru> |
| User-Agent: | Mutt/1.5.21 (2010-09-15) |
| X-IsSubscribed: | yes |
| Mailing-List: | contact cygwin-help AT cygwin DOT com; run by ezmlm |
| List-Id: | <cygwin.cygwin.com> |
| List-Unsubscribe: | <mailto:cygwin-unsubscribe-archive-cygwin=delorie DOT com AT cygwin DOT com> |
| List-Subscribe: | <mailto:cygwin-subscribe AT cygwin DOT com> |
| List-Archive: | <http://sourceware.org/ml/cygwin/> |
| List-Post: | <mailto:cygwin AT cygwin DOT com> |
| List-Help: | <mailto:cygwin-help AT cygwin DOT com>, <http://sourceware.org/ml/#faqs> |
| Sender: | cygwin-owner AT cygwin DOT com |
| Mail-Followup-To: | cygwin AT cygwin DOT com |
| Delivered-To: | mailing list cygwin AT cygwin DOT com |
On Sat 2012-08-18 22:37, Andrey Repin wrote:
> Greetings, Tom Schutter!
>
> > I have seen various scripts that do semi-automated installation and/or
> > updates of Cygwin, but none seemed to have all of the features that I
> > wanted. So I wrote yet another batch file which can be found at:
>
> > https://github.com/tschutter/AppData/blob/master/bin/cygwin_setup.bat
>
> There's a couple of errors in it. Also you can move configuration to an
> external file and
> CALL "%~dp0\conffile.bat"
> it.
I moved the configuration to cygwin_setup_config.bat.
> Though, I suggest .cmd extension for batch files.
Meh. .bat is what I have always used.
> I'm actually surprized, that
> >nul 2>&1 "%SYSTEMROOT%\system32\cacls.exe" "%SYSTEMROOT%\system32\config\system"
> works, normally, you'd want to place redirects after the command.
I was surprised as well when I saw that it worked. Normally I do put the
redirects after the command. This was a copy-n-paste job. I moved them
to the end to be consistent.
> if "%ERRORLEVEL%" EQU "0" goto :endif_check_admin
>
> should be EQL, not EQU. Keep in mind that this comparison WILL fail, if
> extended mode is disabled.
> Fail-proof syntax:
> IF NOT ERRORLEVEL <number>
Actually, EQU is correct. From "if /?":
where compare-op may be one of:
EQU - equal
I changed to the "if [not] errorlevel <number>" syntax to reduce the
dependancies on extended mode. Note that there are probably other
places that depend upon extended mode.
> References to _TEMPFILE MUST be quoted. You're referring to a filename,
> which may contain spaces.
You are correct. I normally quote filenames when expanding them, I just
missed that one. Fixed.
> You SHOULD NOT run rebaseall manually, unless you really need to do so.
I added the call to rebaseall because of this post by Corinna:
http://cygwin.com/ml/cygwin/2012-08/msg00320.html
Installing more packages that are forgotten in the first run of
setup.exe is what I (and I suspect others) do all the time. I would
love to get some feedback either way on this issue.
> Sorry for my terrible english...
There are some native speakers who I wish were as literate as you.
--
Tom Schutter
--
Problem reports: http://cygwin.com/problems.html
FAQ: http://cygwin.com/faq/
Documentation: http://cygwin.com/docs.html
Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
| webmaster | delorie software privacy |
| Copyright © 2019 by DJ Delorie | Updated Jul 2019 |