Windows Mobile 中的bat 文件/ Shell 脚本
我有命令行脚本。这个命令行脚本 &想运行在Windows Mobile 6.5上。
我创建了 MYWMA.cmd 或 MYMWA.bat
\Windows\CrEme\bin\CrEme.exe -Of -classpath \Windows\CrEme\lib\AWTclasses.zip;\XONTMWA\lib\j4205328.zip oracle.apps.mwa.awt.client.StartGUI
我们如何运行它而无需在命令行中输入每个 &每次。
该脚本在命令行下运行良好。
请帮我....
I have command line script.This command line script & want to run in the Windows Mobile 6.5.
I created MYWMA.cmd or MYMWA.bat
\Windows\CrEme\bin\CrEme.exe -Of -classpath \Windows\CrEme\lib\AWTclasses.zip;\XONTMWA\lib\j4205328.zip oracle.apps.mwa.awt.client.StartGUI
How we can run this without typing in the commandline each & everytime.
This script is working fine with the command-line.
Please Help me....
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为什么不使用 快捷方式文件 到
\Windows\CrEme \bin\CrEme.exe
包含您需要的参数?如果您想以编程方式创建它,函数 SHCreateShortcutEx 可能会有所帮助。
Why don't you use a shortcut file to
\Windows\CrEme\bin\CrEme.exe
with the arguments you need?If you want to create it programmatically, the function SHCreateShortcutEx may help.