代码语言
.
CSharp
.
JS
Java
Asp.Net
C
MSSQL
PHP
Css
PLSQL
Python
Shell
EBS
ASP
Perl
ObjC
VB.Net
VBS
MYSQL
GO
Delphi
AS
DB2
Domino
Rails
ActionScript
Scala
代码分类
文件
系统
字符串
数据库
网络相关
图形/GUI
多媒体
算法
游戏
Jquery
Extjs
Android
HTML5
菜单
网页交互
WinForm
控件
企业应用
安全与加密
脚本/批处理
开放平台
其它
【
Asp.Net
】
net获取计算机的所有基本信息
作者:
Dezai.CN
/ 发布于
2013/3/8
/
681
一、建立类: using System; using System.Management; //还需要引用System.Management.dll; using System.Collections; using System.Collections.Specialized; using System.Text; namespace likeshan { #region WMIPath public enum WMIPath { // 硬件 Win32_Processor, // CPU 处理器 Win32_PhysicalMemory, // 物理内存条 Win32_Keyboard, // 键盘 Win32_PointingDevice, // 点输入设备,包括鼠标。 Win32_FloppyDrive, // 软盘驱动器 Win32_DiskDrive, // 硬盘驱动器 Win32_CDROMDrive, // 光盘驱动器 Win32_BaseBoard, // 主板 Win32_BIOS, // BIOS 芯片 Win32_ParallelPort, // 并口 Win32_SerialPort, // 串口 Win32_SerialPortConfiguration, // 串口配置 Win32_SoundDevice, // 多媒体设置,一般指声卡。 Win32_SystemSlot, // 主板插槽 (ISA & PCI & AGP) Win32_USBController, // USB 控制器 Win32_NetworkAdapter, // 网络适配器 Win32_NetworkAdapterConfiguration, // 网络适配器设置(网卡) Win32_Printer, // 打印机 Win32_PrinterConfiguration, // 打印机设置 Win32_PrintJob, // 打印机任务 Win32_TCPIPPrinterPort, // 打印机端口 Win32_POTSModem, // MODEM Win32_POTSModemToSerialPort, // MODEM 端口 Win32_DesktopMonitor, // 显示器 Win32_DisplayConfiguration, // 显卡 Win32_DisplayControllerConfiguration, // 显卡设置 Win32_VideoController, // 显卡细节。 Win32_VideoSettings, // 显卡支持的显示模式。 // 操作系统 Win32_TimeZone, // 时区 Win32_SystemDriver, // 驱动程序 Win32_DiskPartition, // 磁盘分区 Win32_LogicalDisk, // 逻辑磁盘 Win32_LogicalDiskToPartition, // 逻辑磁盘所在分区及始末位置。 Win32_LogicalMemoryConfiguration, // 逻辑内存配置 Win32_PageFile, // 系统页文件信息 Win32_PageFileSetting, // 页文件设置 Win32_BootConfiguration, // 系统启动配置 Win32_ComputerSystem, // 计算机信息简要 Win32_OperatingSystem, // 操作系统信息 Win32_StartupCommand, // 系统自动启动程序 Win32_Service, // 系统安装的服务 Win32_Group, // 系统管理组 Win32_GroupUser, // 系统组帐号 Win32_UserAccount, // 用户帐号 Win32_Process, // 系统进程 Win32_Thread, // 系统线程 Win32_Share, // 共享 Win32_NetworkClient, // 已安装的网络客户端 Win32_NetworkProtocol, // 已安装的网络协议 } #endregion /// /// 获取系统信息 /// /// /// /// WMI w = new WMI(WMIPath.Win32_NetworkAdapterConfiguration); /// for (int i = 0; i < w.Count; i ++) /// { /// if ((bool)w[i, "IPEnabled"]) /// { /// Console.WriteLine("Caption:{0}", w[i, "Caption"]); /// Console.WriteLine("MAC Address:{0}", w[i, "MACAddress"]); /// } /// } /// /// public sealed class WMI { private ArrayList mocs; private StringDictionary names; // 用来存储属性名,便于忽略大小写查询正确名称(忽略大小)。 /// /// 信息集合数量 /// public int Count { get { return mocs.Count; } } /// /// 获取指定属性值,注意某些结果可能是数组。 /// public object this[int index, string propertyName] { get { try { string trueName = names[propertyName.Trim()]; // 以此可不区分大小写获得正确的属性名称。 Hashtable h = (Hashtable)mocs[index]; return h[trueName]; } catch { return null; } } } /// /// 返回所有属性名称。 /// /// /// public string[] PropertyNames(int index) { try { Hashtable h = (Hashtable)mocs[index]; string[] result = new string[h.Keys.Count]; h.Keys.CopyTo(result, 0); Array.Sort(result); return result; } catch { return null; } } /// /// 返回测试信息。 /// /// public string Test() { try { StringBuilder result = new StringBuilder(1000); for (int i = 0; i < Count; i++) { int j = 0; foreach (string s in PropertyNames(i)) { result.Append(string.Format("{0}:{1}={2}\n", ++j, s, this[i, s])); if (this[i, s] is Array) { Array v1 = this[i, s] as Array; for (int x = 0; x < v1.Length; x++) { result.Append("\t" + v1.GetValue(x) + "\n"); } } } result.Append("======WMI=======\n"); } return result.ToString(); } catch { return string.Empty; } } /// /// 构造函数 /// /// public WMI(string path) { names = new StringDictionary(); mocs = new ArrayList(); try { ManagementClass cimobject = new ManagementClass(path); ManagementObjectCollection moc = cimobject.GetInstances(); bool ok = false; foreach (ManagementObject mo in moc) { Hashtable o = new Hashtable(); mocs.Add(o); foreach (PropertyData p in mo.Properties) { o.Add(p.Name, p.Value); if (!ok) names.Add(p.Name, p.Name); } ok = true; mo.Dispose(); } moc.Dispose(); } catch (Exception e) { throw new Exception(e.Message); } } /// /// 构造函数 /// /// public WMI(WMIPath path) : this(path.ToString()) { } } } 二、调用(可以先全部打印出来,看看有哪些个属性,然后再去获取指定属性的值) using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using likeshan; public partial class ComInfo : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { try { #region 测试 // WMI wmi = new WMI(WMIPath.Win32_NetworkAdapterConfiguration); //for (int i = 0; i < wmi.Count; i++) //{ // if ((bool)wmi[i, "IPEnabled"]) // { // //Console.WriteLine("Caption:{0}", wmi[i, "Caption"]); // //Console.WriteLine("MAC Address:{0}", wmi[i, "MacAddress"]); // Response.Write("Caption:"+wmi[i,"Caption"]+" MAC Address:"+wmi[i,"MacAddress"]); // } //} #endregion #region 测试 WMI wmi = new WMI(WMIPath.Win32_DisplayConfiguration); Response.Write("计算机信息简要:" + " "); for (int i = 0; i < wmi.Count; i++) { string[] pros = wmi.PropertyNames(i); foreach (string p in pros) { Response.Write(i.ToString()+"."+p+"->"+wmi[i,p]+" "); } } #endregion } catch (Exception ex) { Console.WriteLine(ex.Message); } } }
试试其它关键字
所有基本信息
同语言下
.
gzip压缩
.
实现http多线程断点续传下载文件
.
实现多线程断点续传下载大文件
.
生成字符串的 CheckSum
.
根据 UserAgent 获取浏览器的类型和版本
.
根据 Agent 判断是否是智能手机
.
隐藏手机号中间四位为*方法
.
合并图片(二维码和其他图片合并)
.
ASP.NET CORE中判断是否移动端打开网页
.
ASP.NET(C#)实现页面计时(定时)自动跳转
可能有用的
.
C#实现的html内容截取
.
List 切割成几份 工具类
.
SQL查询 多列合并成一行用逗号隔开
.
一行一行读取txt的内容
.
C#动态修改文件夹名称(FSO实现,不移动文件)
.
c# 移动文件或文件夹
.
c#图片添加水印
.
Java PDF转换成图片并输出给前台展示
.
网站后台修改图片尺寸代码
.
处理大图片在缩略图时的展示
Dezai.CN
贡献的其它代码
(
4037
)
.
多线程Socket服务器模块
.
生成随机密码
.
清除浮动样式
.
弹出窗口居中
.
抓取url的函数
.
使用base HTTP验证
.
div模拟iframe嵌入效果
.
通过header转向的方法
.
Session操作类
.
执行sqlite输入插入操作后获得自动编号的ID
Copyright © 2004 - 2024 dezai.cn. All Rights Reserved
站长博客
粤ICP备13059550号-3