b. Runs a Autoreg.exe program located in the mapped x: drive
c. Runs a Views.exe and opens a pg_menu.nfo
The batch will be saved on a shared drive.
I am new to batch script and all I could write was given below;
Code: Select all
echo off
rem delete existing mapped drives
net use * /d /Y
rem map new network drive
net use Z: \\bwswh03\PNGInLaw
echo drives mapped.
Kindly assist with this. Thanks so much in advance.