-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmake_msg.cmd
More file actions
18 lines (18 loc) · 881 Bytes
/
Copy pathmake_msg.cmd
File metadata and controls
18 lines (18 loc) · 881 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
@echo off
mode con: cols=55 lines=25
color 0A
@echo :====================================================:
@echo : :
@echo : Multi-language PMC Message Creation TOOL :
@echo : :
@echo :====================================================:
@echo.
@echo THE msg_pmc1.mem FILE WILL BE CREATED:
@echo ---------------------------------------
utility\sleep 1s
if %Processor_Architecture%==x86 goto win32:
"%ProgramFiles(x86)%\FANUC PMC Programmer\FANUC LADDER-3\Fpmcmsg.exe" msg_title.txt + msg_eng.txt + msg_ger.txt + msg_fre.txt + msg_ita.txt + msg_esp.txt /p=1 /o=msg_pmc1.mem
goto win64
:win32
"%ProgramFiles%\FANUC PMC Programmer\FANUC LADDER-3\Fpmcmsg.exe" msg_title.txt + msg_eng.txt + msg_ger.txt + msg_fre.txt + msg_ita.txt + msg_esp.txt /p=1 /o=msg_pmc1.mem
:win64