Results 1 to 2 of 2

Thread: Batch Files ??

  1. #1

    Thread Starter
    Fanatic Member venerable bede's Avatar
    Join Date
    Sep 2002
    Location
    The mystic land of Geordies
    Posts
    1,018

    Batch Files ??

    I have to write some batch files and haven't a clue.

    Do any of you lot know of any decent tutorials out there ?

  2. #2
    VBA Nutter visualAd's Avatar
    Join Date
    Apr 2002
    Location
    Ickenham, UK
    Posts
    4,906
    I usually turn to google to find what I need. I found this in a quick search:

    http://gearbox.maem.umr.edu/batch/batchtoc.htm

    A batch script is just a list of DOS commands executed one line after another. Error messages are not very helpful and the syntax is strange. Plus you have to use goto for program flow control

    Here's a batch script I use to start Firefox:
    Code:
    @echo off
    set ffpath=M:\Mozilla\firefox\firefox.exe
    set profile=M:\Mozilla\profile
    
    start %ffpath% -profile %profile% %1 %2 %3
    PHP || MySql || Apache || Get Firefox || OpenOffice.org || Click || Slap ILMV || 1337 c0d || GotoMyPc For FREE! Part 1, Part 2

    | PHP Session --> Database Handler * Custom Error Handler * Installing PHP * HTML Form Handler * PHP 5 OOP * Using XML * Ajax * Xslt | VB6 Winsock - HTTP POST / GET * Winsock - HTTP File Upload

    Latest quote: crptcblade - VB6 executables can't be decompiled, only disassembled. And the disassembled code is even less useful than I am.

    Random VisualAd: Blog - Latest Post: When the Internet becomes Electricity!!


    Spread happiness and joy. Rate good posts.

Posting Permissions

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



Click Here to Expand Forum to Full Width