从计划任务中获取AT作业的应用程序名称
如何获取所有AT计划任务的应用程序名称列表?
但我想知道如何通过使用函数 NetScheduleJobGetInfo
和 AT_INFO
结构来准确地做到这一点?
我正在用 C++ 编程
How can I get a list of all the AT scheduled tasks' application names?
But I want to know how to do it exactly by using function NetScheduleJobGetInfo
and AT_INFO
Structure?
I'm programming in C++
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
事实上,我认为你的功能是错误的。您应该查看
NetScheduleJobEnum()
这将为您提供一系列AT_ENUM
结构体,每个作业一个。AT_ENUM
内部是与任务关联的命令。Actually, I think you have the wrong function. You should be looking at
NetScheduleJobEnum()
which will give you an array ofAT_ENUM
structs, one for each job. InsideAT_ENUM
is the command associated with the task.