rem @echo off goto :start ############################################################################### # # # Name : nt login # # Author : Chris Koeritz # # Rights : Copyright (C) 1996-$now # # # # Purpose: # # # # Provides the setup for cmd running under win-nt. # # # ############################################################################### # 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.cmd rem ---------------------------------------------------------------------------- rem Bring in the aliases. call %GENERADIR%\aliases.cmd rem ---------------------------------------------------------------------------- rem Print out system identification. echo +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ echo ++ Fred the 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 old version works at startup, but win32 console mode doesn't under win95. nechung %NECHUNG% rem ----------------------------------------------------------------------------