SLAMM Forum

General Category => Using SLAMM => Topic started by: kschmid on January 04, 2010, 08:45:41 AM

Title: Batch File for SLAMM 5
Post by: kschmid on January 04, 2010, 08:45:41 AM
I was wondering if anyone had an example batch file used in slamm 5 to run multiple jobs that they could share.
Thanks
Keil Schmid
Title: Re: Batch File for SLAMM 5
Post by: Evan Larson on January 04, 2010, 09:00:57 AM
Hi Keil,

The following text is from one of our SLAMM 5 batch files:


Format:  Input File, OutputDir, LastYear, INCLUDE Dikes, Note, put largest file first for optimal memory management.
------------2 HEADER LINES UP HERE ------------------------------------------------
C:\work\SLAMM\Root\Data\USFWS\Deer\Deer_Site.txt,C:\work\SLAMM\Root\Data\USFWS\,2100,TRUE
C:\work\SLAMM\Root\Data\USFWS\Sabine\Sabine_Site.txt,C:\work\SLAMM\Root\Data\USFWS\,2100,TRUE
C:\work\SLAMM\Root\Data\USFWS\PuertoRico\Puerto_Rico_Site.txt,C:\work\SLAMM\Root\Data\USFWS\,2100,TRUE
C:\work\SLAMM\Root\Data\USFWS\Matlacha\matlacha_calossahatchee_site.txt,C:\work\SLAMM\Root\Data\USFWS\,2100,TRUE
C:\work\SLAMM\Root\Data\USFWS\IslandBay\Island_Bay_Site.txt,C:\work\SLAMM\Root\Data\USFWS\,2100,TRUE


The following text is from one of our SLAMM 6 batch files:

D:
cd "\Shared work\SLAMM\SLAMM6"
pause
SLAMM6.exe "..\Root\Data\USFWS\December 09\Plum Tree Island and Nansemond\VA.SLAMM6.txt"
SLAMM6.exe "..\Root\Data\USFWS\December 09\Supawna Meadows and John Heinz\NJ.SLAMM6.txt"

pause

The SLAMM 6 batch file is a standalone MSDOS batch file because version 6 does not have built-in batch runs, yet.  Hope this helps!

- Evan
Title: Re: Batch File for SLAMM 5
Post by: kschmid on January 04, 2010, 11:10:52 AM
Thanks Evan
It does!