Why does the BASIC command not work outside of jsh?
BASIC works from the jshell (jsh), but does not work from the command line (C:>). This is usually a problem with the environment. Specifically the PATH, LIB and INCLUDE variables. First check these values in jshell (jsh) by typing the following three statements, then do the same at the command line (c:>). To check these values type in the following commands: echo %PATH% If you use the SDK then this will include anywhere within it “C:\Program Files\Microsoft Visual Studio .NET 2003\VC7\bin;C:\Program Files\Microsoft Visual Studio .NET 2003\Common7\IDE” echo %LIB% If you use the SDK then this will include anywhere within it “C:\Program Files\Microsoft Visual Studio .NET 2003\VC7\lib” echo %INCLUDE% If you use the SDK then this will include anywhere within it “C:\Program Files\Microsoft Visual Studio .NET 2003\VC7\include” If any of these are not the same then use Settings >> Control Panel >> System >> Advanced >> Environment Variables and set them as shown.