C#-訪问轰炸机,新建进程,结束进程...(ConsoleApp)---ShinePans
Posted cynchanpin
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C#-訪问轰炸机,新建进程,结束进程...(ConsoleApp)---ShinePans相关的知识,希望对你有一定的参考价值。
这个程序能够自己主动打开要打开的网址,而且自己主动结束进程,这样能够达到博文点击流量的添加
program.cs
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading; namespace Tst { class Program { static void Main(string[] args) { for(int i=0;i<1000;i++) { Console.WriteLine("添加{0}次了!", i); Util util = new Util(); util.StartThrad(); Thread.Sleep(5000); //设置速度 util.Close(); } } } }
Util.cs
using System; using System.Collections.Generic; using System.Diagnostics; using System.Linq; using System.Text; using System.Threading; namespace Tst { public class Util { public void StartThrad() { ThreadStart start = new ThreadStart(StartIE); Thread thread = new Thread(start); thread.Start(); } public void Close() { Process[] pro = Process.GetProcesses(); //获取全部的进程 //遍历进程 for(int i=0;i<pro.Length;i++) { //推断是否为要查找的进程 if (pro[i].ProcessName.ToString().ToLower() == "360chrome") //本人測试的是 360极速浏览器 ,其它的浏览器请改进程名 pro[i].Kill(); //结束进程; } } private void StartIE() { Process.Start("http://user.qzone.qq.com/574273250"); //待訪问的地址 ,站点的计算规则自己查询,有不同的计算方式,时间间隔,Id号等 } } }
以上是关于C#-訪问轰炸机,新建进程,结束进程...(ConsoleApp)---ShinePans的主要内容,如果未能解决你的问题,请参考以下文章
开机运行A.exe,判断一些进程是不是存在,如果存在则结束A.exe,如果这些进程不存在则重新运行A.exe?
获取其它进程窗口中的状态栏信息(FindWindowEx GetWindowThreadProcessId OpenProcess SendMessage轮番轰炸)