@echo off
if "%1"=="" goto nopath
echo ***
echo ***  NETSETUP will copy all files from this disk
echo ***  to the directory you have specified.
echo ***
mkdir %1
copy *.* %1
echo ***
echo ***  Your network users may now enter
echo ***  %1\SETUP to install the software.
echo ***
goto end
:nopath
echo ***
echo ***  NETSETUP will copy all files from this disk
echo ***  to the directory you specify.
echo ***
echo ***  Please type the complete path name after NETSETUP.
echo ***
:end
