File tree 4 files changed +15
-6
lines changed
4 files changed +15
-6
lines changed Original file line number Diff line number Diff line change @@ -52,13 +52,21 @@ void add(string str){
52
52
system (comm2.c_str ());
53
53
};
54
54
void end (bool flag){
55
+ ofstream fout;
55
56
if (flag){
56
- cout<<" \n\n\n 所有操作已经完成!请手动删除掉当前目录下的“gmon.out”文件 \n\n " ;
57
+ cout<<" \n\n\n 所有操作已经完成!\n\n " ;
57
58
system (" pause" );
58
59
}
59
60
else {
60
- cout<<" \n\n\n 操作失败,请手动删除掉当前目录下的“gmon.out”文件 \n\n " ;
61
+ cout<<" \n\n\n 操作失败\n\n " ;
61
62
system (" pause" );
62
- }
63
- system (" del gmon.out /s /q" );
63
+ }
64
+ fout.open (" TEMP_RUN.bat" );
65
+ fout<<" timeout 3 & del gmon.out /q /s & del TEMP_RUN.bat & exit /q /s" <<endl;
66
+ // fout<<"del TEMP_RUN.bat /q /s"<<endl;
67
+ // fout<<"exit"<<endl;
68
+ fout.close ();
69
+
70
+ system (" cmd /c start TEMP_RUN.bat" );
71
+ // system("del gmon.out /s /q");
64
72
};
Original file line number Diff line number Diff line change 1
- 360NewsPop.exe
2
- Setup360seNotify_60372.exe
1
+ 360NewsPop.exe
Original file line number Diff line number Diff line change 1
1
# IFEO
2
2
Image File Execution Options (IFEO)--映像劫持
3
+ <br >
4
+ 其中 timeout 命令仅支持win7及以上系统,win7以下的,请手动删除“gmon.out”、“TEMP_RUN.bat”
You can’t perform that action at this time.
0 commit comments