资源简介

windows下定时关闭进程,挺好用,体积十分小

资源截图

代码片段和文件信息

#define _CRT_SECURE_NO_WARNINGS
#include 
#include 
using namespace std;

int main(int argcchar* argv[])
{
    if (argc == 1)
    {
        cout << “欢迎来到定时关闭应用程序!“ << endl;
        cout << “--------------------------------------------------------------------“ << endl << “/*帮助说明*/“ << endl << “查找进程名或进程号方法:“ << endl << “首先打开你想要定时关闭的应用,“ << endl << “使用快捷键ctrl + alt + . 打开任务管理器,“ << endl << “菜单栏中有个详细信息栏,点击,“ << endl << “然后根据图标识别哪个是你看中的进程,其名称列是进程名,pid列是进程号“ << endl;
        cout << “--------------------------------------------------------------------“ << endl << endl << “请输入进程名(不是进程号例如:notepad.exe):“;
        char a[500] b[1000] c[500] p[500] q[500];
        strcpy(b “schtasks /create /tn dingshi /tr \““);
        strcpy(q argv[0]);
        int j = 0;
        for (int i = 0; q[i]; i++)
        {
            if (q[i] == ‘\\‘)
            {
                p[j++] = ‘\\‘;
                p[j++] = q[i];
            }
          

评论

共有 条评论