▍1. iispool
通过WMI接口,定时监控IIS应用程序池是否正常启动,停止状态并自动重启(Through the WMI interface, timing monitor IIS application pool is normal start, stop state and automatic restart)
通过WMI接口,定时监控IIS应用程序池是否正常启动,停止状态并自动重启(Through the WMI interface, timing monitor IIS application pool is normal start, stop state and automatic restart)
通过注册表修改IE默认首页源码,例程程序通过修改注册表项的内容设置IE默认首页。(Modify the IE default home page source code through the registry , a routine procedure by modifying the contents of the registry entry is set IE default home page .)
管道通信模块源码,例程程序结合易语言进程通讯支持库,实现管道通信功能。(Pipe communication module source , routine program combining easy language support library communication process to achieve pipeline communications.)
系统设置模块源码,例程程序使用读写注册表项的方法,实现系统优化设置。(System Settings module source code, the program uses routines to read and write registry key way to achieve system optimization settings.)
系统时间校准源码,例程程序调用API函数实现校准系统时间。(System time calibration source , routine program calls API function calibration system time .)
VC++获取网卡MAC、硬盘序列号、CPU ID、BIOS编号,是个文档,用来学习,需要的话代码移植下也比较简单(VC++ Gets NIC MAC, hard drive serial number, CPU ID, BIOS serial number, is a document used to study under the required code migration is relatively simple)
曾几,想写一个COM组件的helloworld(也就是好奇心,想了解一下细节,至今我还没什么地方需要使用这个,dshow过滤器开发,DXSDK中已经包装好了一些辅助函数,也不需要自己去写COM 组件的实现部分)。每次都是跟着书上的步奏(都是从简化模型一步一步往COM组件模型靠拢),有点繁琐,没能坚持下去,多次未果。 这次,终于在百度的帮助下,完成了这个helloworld的心愿。 歌颂百度,此处略过1000字...( ignored)
目前实现的功能有 创建、删除、查找站点,同时可以 设置默认文档以及asp.net版本,支持iis6/iis7/iis8.5
ASP.NET权限管理系统源代码MVC架构源代码EasyUI框架源代码
多线程操作 [实例截图] [核心代码]using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;using System.Threading;namespace ThreadMore{ public partial class Form3 : Form { public Form3() { InitializeComponent(); } // 发送数据包的类 public class SendPackage { Package pack; // 保存将被发送的数据包 int quantity = 1; // 数据包的个数 // 发送数据包 public SendPackage(Package p, int count) { pack = p; quantity = count; } public void ThreadRun() { // 发送指定数量的数据包 for (int looper = 1; looper