nbtstat -a ip 获取MAC地址等
摘要://nbtstat -a ip 获取MAC地址等 public static string cmdNbtstat(string macIp2) { string hostname2 = " "; string domain2 = " "; ...
阅读全文
posted @
2007-05-17 10:56
Mossan
阅读(2650)
推荐(0)
SendArp获取MAC地址
摘要:[DllImport("Iphlpapi.dll")] static extern int SendARP(Int32 DestIP, Int32 SrcIP, ref Int64 MacAddr, ref Int32 PhyAddrLen); [DllImport("Ws2_32.dll")] static extern Int32 i...
阅读全文
posted @
2007-05-17 10:54
Mossan
阅读(3376)
推荐(0)
C#多线程使用进度条
摘要://声明一个委托 public delegate void UpdateBar(int iBar); //委托使用进度条 void UpdateMyBar(int iMyBar) { if (this.progressBar1.Value != this.progressBar1.Maximum) ...
阅读全文
posted @
2007-05-17 10:48
Mossan
阅读(9898)
推荐(0)
C#定时器的使用
摘要:Timer timer1; this.timer1.Interval = 1000; this.timer1.Tick += new System.EventHandler(this.timer1_Tick); private void timer1_Tick(object sender, EventArgs e) { ...
阅读全文
posted @
2007-05-17 10:14
Mossan
阅读(9333)
推荐(0)
C#调用net.exe发送消息
摘要:默认情况下,WinXP SP2的Messenger服务是禁止的,如果需要使用必须先启动该服务。 //发消息 private void NetSendMsg(string strIp, string strHostname, string strMsg) { try { Process...
阅读全文
posted @
2007-05-17 09:37
Mossan
阅读(1393)
推荐(0)
C#调用WMI关机示例
摘要:WMI中Win32_OperationSystem的方法Win32ShutDown(flag)中flag的参数可以是下表中的任意一种: 值 描述 0 注销 0 + 4 强制注销 1 关机 1 + 4 强制关机 2 重起 2 + 4 强制重起 8 关闭电源 8 + 4 强制关闭电源下面是示例://关闭计算机private void btn_Shutdown_Click(object sender, ...
阅读全文
posted @
2007-05-17 09:23
Mossan
阅读(1964)
推荐(0)
WMICodeCreator(WMI代码生成器)下载
摘要:Download details: WMI Code Creator v1.0
阅读全文
posted @
2007-05-16 20:21
Mossan
阅读(1303)
推荐(0)
Microsoft Windows Management Instrumentation (WMI)简介
摘要:什么是 WMI? WMI最初于 1998 年作为一个附加组件与 Windows NT 4.0 Service Pack 4 一起发行,是内置在 Windows 2000、Windows XP 和 Windows Server 2003 系列操作系统中核心的管理支持技术。基于由 Distributed Management Task Force (DMTF) 所监督的业界标准,WMI 是一种规范和基...
阅读全文
posted @
2007-05-16 20:09
Mossan
阅读(2242)
推荐(0)
局域网管理工具“网络管理员”1.5 正式版(2007-5-28更新)
摘要:版本1.5更新:1、改写了一些软件设置程序;2、增加了设置参数支持,以适应不同的系统、网络环境。版本1.4更新:1、对扫描程序进行重新改写;2、改变窗体Ping的方式。版本1.3更新:1、对表格进行部分改动,增加了选项功能;2、更新了内置Ping窗体响应Esc问题。版本1.2更新:1、重启、关机使用...
阅读全文
posted @
2007-05-07 18:24
Mossan
阅读(23682)
推荐(0)