@echo off REM This batch file will copy a custom inf file to a new Winnt installation if "%1"=="" goto :USAGE REM Copy the new inf file and append the machine name echo Copying inf file... copy $winnt$.inf c:\winnt\system32\$winnt$.inf /v /y echo Appending ComputerName to inf file... echo ComputerName = %1 >> c:\winnt\system32\$winnt$.inf echo Update complete. Remove floppy and reboot. goto QUIT :USAGE echo. echo You must enter the Machine Name for this installation. echo. echo Example: SETUP WKSTN_1 echo. goto QUIT :QUIT