如何使用批处理脚本执行宏文件(.ebm)?
Attachmate额外应用程序在录制后有宏录制选项,可以在本地系统中保存.ebm文件(宏)。我写了一个批处理文件来执行这个宏。但它不起作用。
提前致谢!!
我如何手动执行 - 我转到文件夹中的应用程序并双击打开附件应用程序,当单击“工具”选项时,它会显示该列表中记录的宏列表我单击宏来执行它。如何使用批处理脚本自动执行此操作。请建议
找到解决方案,更新了以下脚本。
start "" - After start command, you can give title or empty string (Thanks to compo for help)
extra.exe - This will open your aplication
/h <hostname> - Find your hostname/ip address in Options>Settings>Connection
/m macro path - Which macro you need to execute
更新了批处理脚本
@echo off
start "" extra.exe /h "tplxsuper.xyz.com" /m "C:\Users\Public\Documents\Attachmate\EXTRA!\macros\HELLO.EBM"
exit
答案 0 :(得分:0)
这就是我的做法。以您的宏并将文件扩展名从.ebm更改为.elf,您的宏将从BAT或VBS文件执行。