schedit.bat
Batch file to start the schematic editor
Content revision history:
Article first written:
Updated:
Corrected:
:@echo off
set AppDrv=U
if not [%AppDrv%] == [U] goto ErrEnv
call waste off
logpos /SAVE /lf=$schedit
if exist !entry.bat call !entry.bat SCHEDIT
netlog Start Schedit in %%CD
rem %AppDrv%:
cd %AppDrv%:\Apps\PSchema
%AppDrv%:schedit
netlog End Schedit
if exist !exit.bat call !exit.bat SCHEDIT
logpos /GET /lf=$schedit
goto Exit
:ErrEnv
@echo Error: Insufficient environment space
@echo discovered by %0.
goto Exit
:Exit