set CLASSPATH=D:myprogram;D:myprogramlibsupportLib.jar
java org.mypackage.HelloWorld
java -classpath D:myprogram;D:myprogramlibsupportLib.jar org.mypackage.HelloWorld
java -classpath '.:/mylib/*' MyApp
classpath is just a set of paths where the java compiler and the JVM must find needed classes to compile or execute other classes.
java -classpath ".;c:mylib*" MyApp