Implementation to call the Command.com Shell present on Windows 95, 98 and Me
130131132133134135136137138139140
//If this is windows set the shell to command.com or cmd.exe with correct arguments. if ( Os.isFamily( Os.FAMILY_WINDOWS ) ) { if ( Os.isFamily( Os.FAMILY_WIN9X ) ) { setShell( new CommandShell() ); } else { setShell( new CmdShell() ); }
131132133134135136137138139140141