@echo off goto :start ;############################################################################### ;# # ;# Name : doslogin # ;# Author : Chris Koeritz # ;# Rights : Copyright (C) 1996-$now # ;# # ;# Purpose: # ;# # ;# Provides the dos/win9x initial setup. # ;# # ;############################################################################### ;# This program is free software; you can redistribute it and/or modify it # ;# under the terms of the GNU General Public License as published by the Free # ;# Software Foundation; either version 2 of the License, or (at your option) # ;# any later version. See: "http://www.gruntose.com/Info/GNU/GPL.txt" for a # ;# version of the License. Please send any updates to "fred@gruntose.com". # ;############################################################################### :start rem ---------------------------------------------------------------------------- rem This program assumes that the crucial variables: rem SHELLDIR rem and rem LOCAL_MACHINE_NAME rem have been set beforehand. rem ---------------------------------------------------------------------------- rem ---------------------------------------------------------------------------- rem Setup environment variables. call %GENERADIR%\variable.bat rem ---------------------------------------------------------------------------- rem Create all the command aliases. rem call %GENERADIR%\aliases.bat rem ---------------------------------------------------------------------------- rem Print out system identification. echo +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ echo ++ YETIcode MetaSystem is initializing System Variables now.... ++ echo +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ echo. echo %LOCAL_MACHINE_NAME% is running %OS% with the %COMSPEC% shell. echo. echo. rem ---------------------------------------------------------------------------- rem this turns on dos verify mode to cause extra checking when files are written. verify on rem ---------------------------------------------------------------------------- rem turns on enhanced handling for the break key. break on rem ---------------------------------------------------------------------------- rem load machine specific drivers and so forth. if exist %SHELLDIR%\custom\c_machine.bat call %SHELLDIR%\custom\c_machine.bat rem ---------------------------------------------------------------------------- rem old version works at startup, but win32 console mode doesn't under win95. nechungd %NECHUNG% rem ----------------------------------------------------------------------------