1@ECHO OFF
2REM ========================================================================
3REM Copyright 1988-2006 University of Washington
4REM
5REM Licensed under the Apache License, Version 2.0 (the "License");
6REM you may not use this file except in compliance with the License.
7REM You may obtain a copy of the License at
8REM
9REM     http://www.apache.org/licenses/LICENSE-2.0
10REM
11REM
12REM ========================================================================
13
14REM Program:	Driver Linkage Generator for DOS/NT
15REM
16REM Author:	Mark Crispin
17REM		Networks and Distributed Computing
18REM		Computing & Communications
19REM		University of Washington
20REM		Administration Building, AG-44
21REM		Seattle, WA  98195
22REM		Internet: MRC@CAC.Washington.EDU
23REM
24REM Date:	11 October 1989
25REM Last Edited:30 August 2006
26
27REM Erase old driver linkage
28IF EXIST LINKAGE.* DEL LINKAGE.*
29
30REM Now define the new list
31FOR %%D IN (%1 %2 %3 %4 %5 %6 %7 %8 %9) DO CALL DRIVRAUX %%D
32
33EXIT 0
34