资源简介
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];
}
- 上一篇:茶壶的光照观察组(c++代码)
- 下一篇:c++ 实现 凯撒加密、解密
相关资源
- STM32 4路通用定时器程序
- STM32 4路高级定时器程序
- 软件定时器(MultiTimer)
- 数码管定时器源码(基于MSP430)
- 51单片机PWM调控风扇步进电机计时定时
- windows文件夹监控(c++源码)
- zprotect 1.6 脱壳工具()
- windows系统编程源代码第四版
- DDC/CI Tool
- Programming Windows 程式开发设计指南(
- Windows核心编程源码
- windows 串口升级工具(c++源码)
- ntmedsys.sys(c++源码)
- Windows Sockets 规范及应用-Windows网络编
- Windows Sockets 编程及UR机器人通信数据
- C++实战源码-灰度最大化与最小化关闭
- C++ 获得Windows和System的路径
- C++ 隐藏和显示Windows任务栏
- C++ 控制光驱的弹开与关闭
- C++ 启动记事本并控制其关闭
- C++ 等待打开的记事本程序关闭
- C++ 定时登录Internet
- C++ 定时备份数据
- C++ 定时网络共享控制
- c语言定时关机
- c++ 定时关机 项目源码
- 一款c++关机程序(定时关机)
- Windows直接写屏源码
- C++实战源码-关闭窗体前弹出确认对话
- C++ 如何获取Windows 2000系统启动时间
评论
共有 条评论