SET DSZLOG=c:\va\DSZ.LOG rem get vpktsend.zip unzip it in your main vadv directory run vpktsend.exe rem tell it network# 1 node number 1 inet address vnet@vtdl.net rem to edit it after the setup screens use "vpktsend.exe edit" to change settings rem this creates a zip file in your virtualnet directory that we send to @1 vpktsend.exe rem change the following your virtualnet dir path and node number the nnnn.nnn part rem of the file name below rem the vnet.exe /import= line imports a pkt into vadv. in some versions rem of windows this line cannot be at the end of this file like it should be vnet.exe networkid=1 /import=c:\va\vnet\out\z0001330.000 rem change to your virtualnet directory cd \va\vnet rem caution the following lines pack up any zip file in your virtualnet dir rem for transport to @1 as a network packet ren create a directory in your virtualnet directory for %%T in (*.zip) do if not exist z0000000.001 rename %%T z0000000.001 if not exist c:\va\vnet\out\z0000000.001 move z0000000.001 c:\va\vnet\out rem change to your path below cd \va\vnet\out rem the following creates a file called vnetftp.scr this is an ftp script file rem that we use to run ftp.exe below with rem change the 80:330/0 to 80:yourareacode/0 rem change "password" to your pword if you have one rem change the get and del lines to reflct your vnet node number z000nnnn.nnn echo open vtdl.net >vnetftp.scr echo 80:330/0 >>vnetftp.scr echo password >>vnetftp.scr echo binary >>vnetftp.scr echo get z0001330.000 >>vnetftp.scr echo put z0000000.001 >>vnetftp.scr rem this dels the the file you just recieved from the server on @1 echo del z0001330.000 >>vnetftp.scr echo bye >>vnetftp.scr FTP.EXE -s:vnetftp.scr rem this dels the pkt you just sent to @1 del z0000000.001