c# 获取计算机信息

获取计算机信息,获取远程计算机信息的时候需要关闭远程机器的防火墙,否则获取不到相关信息。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;

using System.Text;
using System.Runtime.InteropServices;

/// <summary>
///NetHelper 的摘要说明
/// </summary>
public class NetHelper
{
    public NetHelper()
    {

    }

    public static string GetBrowserType()
    {
        return HttpContext.Current.Request.Browser.Type;
    }

    public static string GetSysVersion()
    {
        string Agent = HttpContext.Current.Request.ServerVariables["HTTP_USER_AGENT"];

        if (Agent.IndexOf("NT 4.0") > 0)
        {
            return "Windows NT ";
        }
        else if (Agent.IndexOf("NT 5.0") > 0)
        {
            return "Windows 2000";
        }
        else if (Agent.IndexOf("NT 5.1") > 0)
        {
            return "Windows XP";
        }
        else if (Agent.IndexOf("NT 5.2") > 0)
        {
            return "Windows 2003";
        }
        else if (Agent.IndexOf("NT 6.0") > 0)
        {
            return "Windows Vista";
        }
        else if (Agent.IndexOf("WindowsCE") > 0)
        {
            return "Windows CE";
        }
        else if (Agent.IndexOf("NT") > 0)
        {
            return "Windows NT ";
        }
        else if (Agent.IndexOf("9x") > 0)
        {
            return "Windows ME";
        }
        else if (Agent.IndexOf("98") > 0)
        {
            return "Windows 98";
        }
        else if (Agent.IndexOf("95") > 0)
        {
            return "Windows 95";
        }
        else if (Agent.IndexOf("Win32") > 0)
        {
            return "Win32";
        }
        else if (Agent.IndexOf("Linux") > 0)
        {
            return "Linux";
        }
        else if (Agent.IndexOf("SunOS") > 0)
        {
            return "SunOS";
        }
        else if (Agent.IndexOf("Mac") > 0)
        {
            return "Mac";
        }
        else if (Agent.IndexOf("Linux") > 0)
        {
            return "Linux";
        }
        else if (Agent.IndexOf("Windows") > 0)
        {
            return "Windows";
        }
        return "unknow";

    }

    /// <summary>
    /// 如果有代理那么越过代理直接取值
    /// </summary>
    /// <returns></returns>
    public static string GetClientIp()
    {
        if (HttpContext.Current.Request.ServerVariables["HTTP_VIA"] != null)
            return HttpContext.Current.Request.ServerVariables["HTTP_X_FORWARDED_FOR"].ToString();
        else
            return HttpContext.Current.Request.ServerVariables["REMOTE_ADDR"].ToString();
    }

    public static string GetHostName()
    {
        return GetHostName(GetClientIp());
    }

    public static string GetMac()
    {
        return GetMac(GetClientIp());
    }

    public static string GetHostName(string ipStr)
    {

        string hostName = string.Empty;
        try
        {
            System.Net.IPAddress ip = System.Net.IPAddress.Parse(ipStr);
            System.Net.IPHostEntry host = System.Net.Dns.GetHostEntry(ip);
            hostName = host.HostName;
        }
        catch
        { }
        return hostName;
    }

    [DllImport("Iphlpapi.dll")]
    static extern int SendARP(Int32 DestIP, Int32 SrcIP, ref Int64 MacAddr, ref Int32 PhyAddrLen);
    [DllImport("Ws2_32.dll")]
    static extern Int32 inet_addr(string ipaddr);
    /// <summary>
    /// SendArp获取MAC地址
    /// </summary>
    /// <param name="RemoteIP">目标机器的IP地址如(192.168.1.1)</param>
    /// <returns>目标机器的mac 地址</returns>
    public static string GetMac(string RemoteIP)
    {
        StringBuilder macAddress = new StringBuilder();
        try
        {
            Int32 remote = inet_addr(RemoteIP);
            Int64 macInfo = new Int64();
            Int32 length = 6;
            SendARP(remote, 0, ref macInfo, ref length);
            string temp = Convert.ToString(macInfo, 16).PadLeft(12, ‘0‘).ToUpper();
            int x = 12;
            for (int i = 0; i < 6; i++)
            {
                if (i == 5)
                {
                    macAddress.Append(temp.Substring(x - 2, 2));
                }
                else
                {
                    macAddress.Append(temp.Substring(x - 2, 2) + "-");
                }
                x -= 2;
            }
            return macAddress.ToString();
        }
        catch
        {
            return macAddress.ToString();
        }
    }
}
时间: 2024-10-10 23:33:48

c# 获取计算机信息的相关文章

WMI获取计算机信息

On Error Resume NextstrComputer = "."strInfo = ""Set objWMIService = GetObject("winmgmts:\\" & strComputer & "\root\cimv2") Set colItems = objWMIService.ExecQuery("Select * from Win32_BIOS",,48)For

分享一个C#读取计算机信息的类

using System; using System.Runtime.InteropServices; using System.Management; namespace Hardware { /// summary /// Hardware_Mac 的摘要说明. /// /summary public class HardwareInfo { //取机器名 public string GetHostName() { return System.Net.Dns.GetHostName(); }

windows常用命令行总结

cmd下的命令行 1.查看当前目录下的子目录 dir   或 dir /b 类似Linux 下的  ls 或者 ls -l 2.盘符切换  d: 3.进入目录 cd [目录名] 退一个目录 cd .. 去跟目录 cd / 4.win与Linux下 Tab键都可以智能匹配 文件或文件夹 5.Ctrl+c 有退出功能 6.vi [文件名] (如果文件不存在则自动创建) 进入vi 编辑模式,Esc 退出编辑 hjkl  左上下右 i 进行编辑,退出编辑( Shift + :) 进入命令行输入模式,wq

服务器信息收集

#Version:1.2#Modify Date:2013-05-21 #说明:#该脚本可以获取计算机名,域名,IP地址,操作系统版本,CPU名称+单颗CPU内核数量*CPU个数,内存大小(GB),单块磁盘大小,计算机序列号,制造商,计算机型号#该脚本先将计算机信息输出到txt文件中,然后再自动输出到csv格式文件,检查无误后,可以将txt文件删除#在运行该脚本的时候需要确保对需要获取信息的计算机有管理员权限,可以通过UNC路径访问到分区即可#增加系统x86,x64版本判断 #定义获取计算机信息

企业内部安全宣贯:乌云网停摆事件的思考与评论

2016年7月20日,"自由平等开放的漏洞报告平台"乌云网[1] 被迫停摆,包括乌云网创始人方小顿[2] 在内的多名高管突然被捕.乌云的存在可以说是为了修复人们长期缺失的安全意识和堪忧的安全生态,但是在当今中国的语境中,相应法规尚未完善以及市场环境不够成熟的情况下,乌云网所走的弯路或者做的努力都有待验证. 西电捷通作为一家领先的网络安全基础技术国际化研究机构.我们研究.设计和交付的网络安全基础协议如果被比喻成盾的话,那么渗透测试或者黑客工具就可以看作是矛.但是在西电捷通安全业务中渗透测

Python基础【os】

os模块 获取操作系统类型 函数:os.name以字符串形式返回操作系统的类型'posix':Linux操作系统'nt':Windows操作系统 获取计算机信息 函数:os.uname(linux支持)windows中导入platform模块platform 代码: import platform info = platform.uname() print(info) 测试结果: 获取系统环境变量 函数:os.environ以environ对象形式返回系统的环境变量 代码: print(os.e

[转帖]WMIC的简单使用

https://blog.csdn.net/black_bird_cn/article/details/80005935 公司资产盘点使用 关于WMIC WMIC扩展WMI(Windows Management Instrumentation,Windows管理工具) ,提供了从命令行接口和批命令脚本执行系统管理的支持. WMIC的简单使用 Windows查看电脑硬件信息原创black_bird_cn 最后发布于2018-04-30 17:10:48 阅读数 8013 收藏展开一.个人计算机[微

计算机信息类ComputerInfo

using System; using System.Management; using System.Net; using System.Net.Sockets; using System.Text; using System.Diagnostics; using System.Text.RegularExpressions; namespace BaseFunction { ///<summary> ///计算机信息类 ///</summary> public class Co

[C#] 获取计算机内部信息 - ComputerInfoHelper

获取计算机内部信息 - ComputerInfoHelper 一.代码 ComputerInfoHelper.cs /// <summary> /// 计算机信息助手类 /// </summary> public class ComputerInfoHelper { /// <summary> /// 获取硬盘容量汇总 /// </summary> public static long GetTotalDiskSize() { try { var diskD