Start > Mentor > Batch Tool
set MGLS_LICENSE_FILE=<value>For the PADS Projects location add:
set SDD_PADSPROJECTS_DIR=<value>Below is an example where the license server port@host is 1717@server and the PADS Projects directory is to be C:\PADS Projects VX.2.6:
set MGLS_LICENSE_FILE=1717@myserver
set SDD_PADSPROJECTS_DIR=c:\PADS Projects VXThe following is a sample excerpt (top section) of the batch script showing where to place these two lines:
@echo off
SET LC_ALL=en_US
VER | FINDSTR /IL "6." > NUL
IF %ERRORLEVEL% EQU 0 CHCP 65001
REM
*******************************************************************
REM *** This file is provided as-is. Modifications to this file are
at your own risk. ***
REM *** The End User License Agreement was accepted during the
creation of this script. ***
REM
*******************************************************************
REM Generated by MIP v5.9-022
SET MGLS_LICENSE_FILE=1717@myserver
SET SDD_PADSPROJECTS_DIR=C:\PADS Projects VX
SET PROMPT_TARG=F
...
...