...添加删除程序 或者.cpl .msc为后缀名的系统文件
发布网友
发布时间:2024-10-13 14:42
我来回答
共2个回答
热心网友
时间:2024-11-19 07:46
#include <stdio.h>
#include<cstdlib>
using namespace std;
int main( )
{
int i;
i = system("rundll32.exe shell32.dll,Control_RunDLLAsUser \"c:\\windows\\system32\\intl.cpl\"");
i = system("mmc.exe \"c:\\windows\\system32\\gpedit.msc\"");
}
热心网友
时间:2024-11-19 07:52
可以调用系统函数,然后调用一个批处理就可以了。
system("绝对路径批处理命令");
注意调用该函数时候记得
#include <stdlib.h>