在.NET中得到计算机硬件信息的一些功能

得到显示器分辨率
Dim X As Short = System.Windows.Forms.Screen.PrimaryScreen.Bounds.Width
Dim Y As Short = System.Windows.Forms.Screen.PrimaryScreen.Bounds.Height
MsgBox("您的显示器分辨率是:" & X & " X " & Y)

得到特殊文件夹的路径
'"Desktop"桌面文件夹路径
MsgBox(Environment.GetFolderPath(Environment.SpecialFolder.DesktopDirectory))
'"Favorites"收藏夹路径
MsgBox(Environment.GetFolderPath(Environment.SpecialFolder.Favorites))
'"Application Data"路径
MsgBox(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData))

'通用写法
'Dim SPEC As String = Environment.GetFolderPath(Environment.SpecialFolder.XXXXXXX)
'XXXXXXX是特殊文件夹的名字

得到操作系统版本信息
MsgBox(Environment.OSVersion.ToString)

得到当前登录的用户名
MsgBox(Environment.UserName)

得到当前应用程序的路径
MsgBox(Environment.CurrentDirectory)

打开和关闭CD-ROM
'先新建模块
Module mciAPIModule
  Declare Function mciSendString Lib "winmm.dll" Alias "mciSendStringA" _
  (ByVal lpstrCommand As String, ByVal lpstrReturnString As String, _
  ByVal uReturnLength As Integer, ByVal hwndCallback As Integer) As Integer
End Module

'打开CD-ROM
Dim lRet As Long
lRet = mciSendString("set cdAudio door open", 0&, 0, 0)

'关闭CD-ROM
Dim lRet As Long
lRet = mciSendString("set cdAudio door Closed", 0&, 0, 0)

得到计算机IP和计算机全名
Dim MYIP As System.Net.IPHostEntry = System.Net.Dns.GetHostByName(System.Net.Dns.GetHostName)
MsgBox("您的IP地址:" & (MYIP.AddressList.GetValue(0).ToString))
MsgBox("您的计算机全名:" & (MYIP.HostName.ToString))

使用win32_operatingSystem (wmi Class)得到计算机信息
'添加ListBox在Form1_Load事件里,并引用system.Managment
Dim opSearch As New ManagementObjectSearcher("SELECT * FROM Win32_OperatingSystem")
Dim opInfo As ManagementObject
For Each opInfo In opSearch.Get()
  ListBox1.Items.Add("Name: " & opInfo("name").ToString())
  ListBox1.Items.Add("Version: " & opInfo("version").ToString())
  ListBox1.Items.Add("Manufacturer: " & opInfo("manufacturer").ToString())
  ListBox1.Items.Add("Computer name: " & opInfo("csname").ToString())
  ListBox1.Items.Add("Windows Directory: " & opInfo("windowsdirectory").ToString())
Next

列出计算机安装的全部字体,并添加到ListBox
'新建Form并添加ListBox和Button
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim fntCollection As InstalledFontCollection = New InstalledFontCollection()
Dim fntFamily() As FontFamily
fntFamily = fntCollection.Families
ListBox1.Items.Clear()
Dim i As Integer = 0
For i = 0 To fntFamily.Length - 1
  ListBox1.Items.Add(fntFamily(i).Name)
Next
End Sub

使用Win32_Processor列出处理器的信息
Imports System.Management
Public Class Form1
  Inherits System.Windows.Forms.Form

#Region " Windows 窗体设计器生成的代码 "

  Public Sub New()
    MyBase.New()

    '该调用是 Windows 窗体设计器所必需的。
    InitializeComponent()

    '在 InitializeComponent() 调用之后添加任何初始化

  End Sub

  '窗体重写 dispose 以清理组件列表。
  Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean)
    If disposing Then
      If Not (components Is Nothing) Then
        components.Dispose()
      End If
    End If
    MyBase.Dispose(disposing)
  End Sub

  'Windows 窗体设计器所必需的
  Private components As System.ComponentModel.IContainer

  '注意: 以下过程是 Windows 窗体设计器所必需的
  '可以使用 Windows 窗体设计器修改此过程。
  '不要使用代码编辑器修改它。
  Friend WithEvents ListBox1 As System.Windows.Forms.ListBox
  Friend WithEvents Button1 As System.Windows.Forms.Button
  <System.Diagnostics.DebuggerStepThrough()> Private Sub InitializeComponent()
    Me.ListBox1 = New System.Windows.Forms.ListBox
    Me.Button1 = New System.Windows.Forms.Button
    Me.SuspendLayout()
    '
    'ListBox1
    '
    Me.ListBox1.Location = New System.Drawing.Point(8, 8)
    Me.ListBox1.Name = "ListBox1"
    Me.ListBox1.Size = New System.Drawing.Size(280, 186)
    Me.ListBox1.TabIndex = 0
    '
    'Button1
    '
    Me.Button1.Location = New System.Drawing.Point(56, 208)
    Me.Button1.Name = "Button1"
    Me.Button1.Size = New System.Drawing.Size(168, 32)
    Me.Button1.TabIndex = 1
    Me.Button1.Text = "装载计算机处理器信息"
    '
    'Form1
    '
    Me.AutoScaleBaseSize = New System.Drawing.Size(5, 13)
    Me.ClientSize = New System.Drawing.Size(296, 254)
    Me.Controls.AddRange(New System.Windows.Forms.Control() {Me.Button1, Me.ListBox1})
    Me.Text = "计算机处理器信息"
    Me.ResumeLayout(False)

  End Sub

#End Region

  Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) _
   Handles Button1.Click

    Dim ProcQuery As New SelectQuery("Win32_Processor")
    Dim ProcSearch As New ManagementObjectSearcher(ProcQuery)
    Dim ProcInfo As ManagementObject

    For Each ProcInfo In ProcSearch.Get()
      Call processorfamily(ProcInfo("Family").ToString)
      ListBox1.Items.Add("Description: " & ProcInfo("Description").ToString())
      ListBox1.Items.Add("caption: " & ProcInfo("caption").ToString())
      ListBox1.Items.Add("Architecture: " & ProcInfo("Architecture").ToString())
      Call processortype(ProcInfo("ProcessorType").ToString())
      Call CpuStat(ProcInfo("CpuStatus").ToString)
      ListBox1.Items.Add("MaxClockSpeed: " & ProcInfo("MaxClockSpeed").ToString() & "MHZ")
      ListBox1.Items.Add("L2CacheSpeed: " & ProcInfo("L2CacheSpeed").ToString() & "MHZ")
      ListBox1.Items.Add("ExtClock: " & ProcInfo("L2CacheSpeed").ToString() & "MHZ")
      ListBox1.Items.Add("ProcessorId: " & ProcInfo("ProcessorId").ToString())
      ListBox1.Items.Add("AddressWidth: " & ProcInfo("AddressWidth").ToString() & "Bits")
      ListBox1.Items.Add("DataWidth: " & ProcInfo("DataWidth").ToString() & "Bits")
      ListBox1.Items.Add("Version: " & ProcInfo("Version").ToString())
      ListBox1.Items.Add("ExtClock: " & ProcInfo("ExtClock").ToString() & "MHZ")
    Next
  End Sub
  Function processorfamily(ByVal procssfam)
    Dim processtype
    Select Case procssfam
      Case 1
        processtype = "Other"
      Case 2
        processtype = "Unknown "
      Case 3
        processtype = "8086 "
      Case 4
        processtype = "80286 "
      Case 5
        processtype = "80386 "
      Case 6
        processtype = "80486 "
      Case 7
        processtype = "8087 "
      Case 8
        processtype = "80287 "
      Case 9
        processtype = "80387 "
      Case 10
        processtype = "80487 "
      Case 11
        processtype = "Pentium brand "
      Case 12
        processtype = "Pentium Pro "
      Case 13
        processtype = "Pentium II "
      Case 14
        processtype = "Pentium processor with MMX technology "
      Case 15
        processtype = "Celeron "
      Case 16
        processtype = "Pentium II Xeon "
      Case 17
        processtype = "Pentium III "
      Case 18
        processtype = "M1 Family "
      Case 19
        processtype = "M2 Family "
      Case 24
        processtype = "K5 Family "
      Case 25
        processtype = "K6 Family "
      Case 26
        processtype = "K6-2 "
      Case 27
        processtype = "K6-3 "
      Case 28
        processtype = "AMD Athlon Processor Family "
      Case 29
        processtype = "AMD Duron Processor "
      Case 30
        processtype = "AMD2900 Family "
      Case 31
        processtype = "K6-2+ "
      Case 32
        processtype = "Power PC Family "
      Case 33
        processtype = "Power PC 601 "
      Case 34
        processtype = "Power PC 603 "
      Case 35
        processtype = "Power PC 603+ "
      Case 36
        processtype = "Power PC 604 "
      Case 37
        processtype = "Power PC 620 "
      Case 38
        processtype = "Power PC X704 "
      Case 39
        processtype = "Power PC 750 "
      Case 48
        processtype = "Alpha Family "
      Case 49
        processtype = "Alpha 21064 "
      Case 50
        processtype = "Alpha 21066 "
      Case 51
        processtype = "Alpha 21164 "
      Case 52
        processtype = "Alpha 21164PC "
      Case 53
        processtype = "Alpha 21164a "
      Case 54
        processtype = "Alpha 21264 "
      Case 55
        processtype = "Alpha 21364 "
      Case 64
        processtype = "MIPS Family "
      Case 65
        processtype = "MIPS R4000 "
      Case 66
        processtype = "MIPS R4200 "
      Case 67
        processtype = "MIPS R4400 "
      Case 68
        processtype = "MIPS R4600 "
      Case 69
        processtype = "MIPS R10000 "
      Case 80
        processtype = "SPARC Family "
      Case 81
        processtype = "SuperSPARC "
      Case 82
        processtype = "microSPARC II "
      Case 83
        processtype = "microSPARC IIep "
      Case 84
        processtype = "UltraSPARC "
      Case 85
        processtype = "UltraSPARC II "
      Case 86
        processtype = "UltraSPARC IIi "
      Case 87
        processtype = "UltraSPARC III "
      Case 88
        processtype = "UltraSPARC IIIi "
      Case 96
        processtype = "68040 "
      Case 97
        processtype = "68xxx Family "
      Case 98
        processtype = "68000 "
      Case 99
        processtype = "68010 "
      Case 100
        processtype = "68020 "
      Case 101
        processtype = "68030 "
      Case 112
        processtype = "Hobbit Family "
      Case 120
        processtype = "Crusoe TM5000 Family "
      Case 121
        processtype = "Crusoe TM3000 Family "
      Case 128
        processtype = "Weitek "
      Case 130
        processtype = "Itanium Processor "
      Case 144
        processtype = "PA-RISC Family "
      Case 145
        processtype = "PA-RISC 8500 "
      Case 146
        processtype = "PA-RISC 8000 "
      Case 147
        processtype = "PA-RISC 7300LC "
      Case 148
        processtype = "PA-RISC 7200 "
      Case 149
        processtype = "PA-RISC 7100LC "
      Case 150
        processtype = "PA-RISC 7100 "
      Case 160
        processtype = "V30 Family "
      Case 176
        processtype = "Pentium III Xeon "
      Case 177
        processtype = "Pentium III Processor with Intel SpeedStep Technology "
      Case 178
        processtype = "Pentium 4 "
      Case 179
        processtype = "Intel Xeon "
      Case 180
        processtype = "AS400 Family "
      Case 181
        processtype = "Intel Xeon processor MP "
      Case 182
        processtype = "AMD AthlonXP Family "
      Case 183
        processtype = "AMD AthlonMP Family "
      Case 184
        processtype = "Intel Itanium 2 "
      Case 185
        processtype = "AMD Opteron Family "
      Case 190
        processtype = "K7 "
      Case 200
        processtype = "IBM390 Family "
      Case 201
        processtype = "G4 "
      Case 202
        processtype = "G5 "
      Case 250
        processtype = "i860 "
      Case 251
        processtype = "i960 "
      Case 260
        processtype = "SH-3 "
      Case 261
        processtype = "SH-4 "
      Case 280
        processtype = "ARM "
      Case 281
        processtype = "StrongARM "
      Case 300
        processtype = "6x86 "
      Case 301
        processtype = "MediaGX "
      Case 302
        processtype = "MII "
      Case 320
        processtype = "WinChip "
      Case 350
        processtype = "DSP "
      Case 500
        processtype = "Video Processor "
    End Select
    ListBox1.Items.Add("Family: " & processtype)

  End Function
  Function CpuStat(ByVal CpuStNUM)
    Dim stat
    Select Case CpuStNUM
      Case 0
        stat = "Unknown "
      Case 1
        stat = "CPU Enabled "
      Case 2
        stat = "CPU Disabled by User via BIOS Setup "
      Case 3
        stat = "CPU Disabled By BIOS (POST Error) "
      Case 4
        stat = "CPU is Idle "
      Case 5
        stat = "Reserved "
      Case 6
        stat = "Reserved "
      Case 7
        stat = "Other "
    End Select
    ListBox1.Items.Add("CpuStatus: " & stat)
  End Function
  Function processortype(ByVal proctypenum)
    Dim proctype
    Select Case proctypenum
      Case 1
        proctype = "Other "
      Case 2
        proctype = "Unknown "
      Case 3
        proctype = "Central Processor "
      Case 4
        proctype = "Math Processor "
      Case 5
        proctype = "DSP Processor "
      Case 6
        proctype = "Video Processor "
    End Select
    ListBox1.Items.Add("Processor Type: " & proctype)

  End Function
End Class

转载于:https://www.cnblogs.com/greateast/archive/2007/01/24/629197.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/380422.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

GridView 利用AspNetPager 分页时的自动编号

GridView 利用AspNetPager 分页时的自动编号 <%# (this.WillisPager1.CurrentPageIndex-1) * this.WillisPager1.PageSize Container.DataItemIndex 1%> 转载于:https://www.cnblogs.com/waren168/archive/2011/07/18/2109305.html

bst 删除节点_C ++程序查找具有N个节点的BST数量(加泰罗尼亚编号)

bst 删除节点Problem statement: C program to find number of binary search trees with n nodes. 问题陈述&#xff1a; C 程序查找具有n个节点的二进制搜索树的数量。 Input format: single integer n 输入格式&#xff1a;单整数n Constraints: 0<n<15 约束&#x…

线性表----链式表

定义 线性表的链式存储又称单链表&#xff0c;它是指通过任意的存储单元来存储线性表的数据。注意此时的数据在物理地址上不在连续&#xff0c;内存是动态分配的&#xff0c;而且数据是存放在结点中&#xff0c;结点组成链表&#xff0c;每个节点分为数据域和指针域&#xff0…

奋斗的小蜗牛

描述 传说中能站在金字塔顶的只有两种动物&#xff0c;一种是鹰&#xff0c;一种是蜗牛。一只小蜗牛听了这个传说后&#xff0c;大受鼓舞&#xff0c;立志要爬上金字塔。为了实现自己的梦想&#xff0c;蜗牛找到了老鹰,老鹰告诉它金字塔高H米&#xff0c;小蜗牛知道一个白天自…

android intent实验,Android开发课程实验报告③ intent的使用

Android开发课程实验报告author&#xff1a;065实验四&#xff1a;intent实验报告目录实验目的初学移动应用公开发中的Android开发&#xff0c;实验四的主要内容为intent的使用&#xff0c;通过这一次实验&#xff0c;掌握基本的intent使用方法。具体实验分析实验第一步&#x…

[职场生存]细节和感觉[一]

zhengyun 200701 刚刚进入软件行业的时候&#xff0c;我特别喜欢问那些我眼中的强人一个问题&#xff1a;“怎么让自己比别人更快更强?”那时候真的是感觉“一万年太久&#xff0c;只争朝夕”。 下面挑出其中我认为很重要的两点和大家分享。这两点适用于技术人员乃至于不同行业…

程序开发基础学习四(boost::signal2 函数学习)

在游戏编程中&#xff0c;新的策划需求总是在迭代不停。。。。。。&#xff0c;对于游戏程序员肯定深有感触吧&#xff0c;遇到这种情况咱只能小小的抱怨下&#xff0c;活还得干。尤其是遇到耦合到很多类的时候&#xff0c;要是直接实现不加抽象的话&#xff0c;那咱的代码就要…

array.tolist_在Python中使用array.tolist()将数组转换为列表

array.tolistGiven an array with some elements and we have to convert them to the list using array.tolist() in Python. 给定一个包含一些元素的数组&#xff0c;我们必须使用Python中的array.tolist()将它们转换为列表。 创建一个数组 (Creating an array) To create a…

利用xor给shellcode加壳

首先看我们的shellcode&#xff0c;执行弹出cmd 没有shellcode&#xff1a; #include "stdio.h" #include "windows.h" #include <string.h> #include "stdlib.h"int main(int argc, char* argv[]) {printf("begin\n");HINSTAN…

华为mate50鸿蒙,华为Mate50Pro首次曝光,5000mAh+鸿蒙OS+120Hz,太强

自从去年九月份以来&#xff0c;关于华为旗舰的消息越来越少了&#xff0c;主要的原因想必大家也是知道的。现在华为究竟还能不能继续正常发布新旗舰&#xff0c;答案也很微妙&#xff0c;不过我们可以肯定的是&#xff0c;华为绝不会放弃手机业务&#xff0c;这是余承东多次亲…

数数小木块

描述 在墙角堆放着一堆完全相同的正方体小木块&#xff0c;如下图所示&#xff1a; 因为木块堆得实在是太有规律了&#xff0c;你只要知道它的层数就可以计算所有木块的数量了。 现在请你写个程序 给你任一堆木块的层数&#xff0c;求出这堆木块的数量. 输入 第一行是一个整…

sql server 2000 以前的某个程序安装已在安装计算机上创建挂起的文件操作解

好久没弄VS了&#xff0c;今天因为要改客户的网站&#xff0c;又装起来VS2003&#xff0c;先要装一下MSSQL&#xff0c;忘了原先自己的电脑不能装MSSQL企业版&#xff0c;今天下了个企业版&#xff0c;才知道白下了&#xff0c;装不起来&#xff0c;后来又弄了个MSSQL ED 版&am…

HDOJ 1896 Stones 解题报告

题目分类&#xff1a;优先队列STL作者&#xff1a;ACShiryu做题时间&#xff1a;2011-7-18Stones Time Limit: 5000/3000 MS (Java/Others) Memory Limit: 65535/32768 K (Java/Others)Total Submission(s): 217 Accepted Submission(s): 107 Problem DescriptionBecause…

信息安全主动攻击和被动攻击_信息安全中的主动和被动攻击 网络安全

信息安全主动攻击和被动攻击安全攻击 (Security Attacks) The attack in cryptography means that our data or sent messages or any kind of information is accessed by some anonymous user without our permission. An attack simply means to alter, destroy, implant or…

小光棍数

描述 最近Topcoder的XD遇到了一个难题&#xff0c;倘若一个数的三次方的后三位是111&#xff0c;他把这样的数称为小光棍数。他已经知道了第一个小光棍数是471,471的三次方是104487111&#xff0c;现在他想知道第m&#xff08;m<10000000000&#xff09;个小光棍数是多少&a…

线性表---双链表

双链表是单链表的拓展&#xff0c;单链表结点中只有一个指向其后继的指针&#xff0c;双链表有两个结点&#xff0c;一个指向其后继的指针&#xff0c;另一个指向前驱。 为什么要引入双链表呢&#xff1f; 这就要说单链表只有一个指针了&#xff0c;使得单链表只能从结点依次顺…

ppt形状html,PPT如何才能高大上?“形状”在PPT有这些妙用

【PConline 技巧】在PPT中&#xff0c;形状的用法非常丰富。可以说一份优秀的PPT&#xff0c;随处都能见到形状的影子。今天我们就和大家分享几组形状的特殊用法。其实很多时候&#xff0c;你会发现形状有时并不仅仅是形状&#xff01;1.突出标题标题在PPT中的作用不言而喻&…

用随机整数填充缺失值_输入一个整数值并在C中用零填充进行打印

用随机整数填充缺失值Input an integer value and we have to pad the value by Zeros in C. 输入一个整数值&#xff0c;我们必须在C中用零填充该值。 Example: 例&#xff1a; Input:Enter an integer value: 12 Output: 2 digit padding: 123 digit padding: 0124 digit p…

二分图匹配----匈牙利算法之二

poj 1469 COURSES//题意:现在有p门课程和n个学生,现在需要有由p个学生组成的组织,该组织满足每个学生代表一门课程以及每门课程只能由一个学生代表,//现给出每门课程都有哪些学生可以参加,要求判断是否存在满足题意所需要的组织.//求解二分图的最大匹配数,如果与p相等就输出&qu…

FileSystemObject简介及应用

提示:刚一开始看到有这样的功能&#xff0c;我也受骗了&#xff0c;以为真的可以通过浏览器在访问者的硬盘上创建文件&#xff0c;因为我开始试了一下真的可以&#xff0c;不信你把下面这段代码COPY到一个HTML文件当中再运行一下&#xff01; <script language"JavaScr…