如何查看电脑本机的硬件配置
展开全部
有三种方法!
方法一:
右键点“我的电脑”,左键点“属性”、“硬件”、“设备管理器”。
先在“设备管理器”中点“显示”旁的加号,将其展开,显示的就是具体的显卡型号。
点“声音、游戏和视频控制器”旁的加号,将其展开,显示的就是具体的声卡型号。
方法二:
点“开始”、“运行”,在“运行”里输入“dxdiag”回车,弹出DirectX 诊断工具窗口,点“显示”选项卡。 声卡就是点“声音”选项卡。
方法三:
安装Windows优化大师,目前最新为7.5版,可以非常详细地检测出你的所有配置信息。
Windows优化大师 V7.5 Build 6.818┊终极系统优化┊注册绿色特别版
http://www.greendown.cn/soft/2453.html
另外这个软件也非常不错!
软件名称
EVEREST
版 本 2.80.565 Beta
版权所有 软件发行商
软件平台 Win9X WinNT Win2000 WinME WinXP
整理日期 2006-04-22
软件授权 免费
评 分
软件大小 5870 K
EVEREST(原名AIDA32)一个测试软硬件系统信息的工具,它可以详细的显示出PC每一个方面的信息。支持上千种(3400+)主板,支持上百种(360+)显卡,支持对并口/串口/USB这些PNP设备的检测,支持对各式各样的处理器的侦测。新版增加查看远程系统信息和管理,结果导出为HTML、XML功能。
下载地址:
http://dl.pconline.com.cn/html_2/1/60/id=5024&pn=0.html
方法一:
右键点“我的电脑”,左键点“属性”、“硬件”、“设备管理器”。
先在“设备管理器”中点“显示”旁的加号,将其展开,显示的就是具体的显卡型号。
点“声音、游戏和视频控制器”旁的加号,将其展开,显示的就是具体的声卡型号。
方法二:
点“开始”、“运行”,在“运行”里输入“dxdiag”回车,弹出DirectX 诊断工具窗口,点“显示”选项卡。 声卡就是点“声音”选项卡。
方法三:
安装Windows优化大师,目前最新为7.5版,可以非常详细地检测出你的所有配置信息。
Windows优化大师 V7.5 Build 6.818┊终极系统优化┊注册绿色特别版
http://www.greendown.cn/soft/2453.html
另外这个软件也非常不错!
软件名称
EVEREST
版 本 2.80.565 Beta
版权所有 软件发行商
软件平台 Win9X WinNT Win2000 WinME WinXP
整理日期 2006-04-22
软件授权 免费
评 分
软件大小 5870 K
EVEREST(原名AIDA32)一个测试软硬件系统信息的工具,它可以详细的显示出PC每一个方面的信息。支持上千种(3400+)主板,支持上百种(360+)显卡,支持对并口/串口/USB这些PNP设备的检测,支持对各式各样的处理器的侦测。新版增加查看远程系统信息和管理,结果导出为HTML、XML功能。
下载地址:
http://dl.pconline.com.cn/html_2/1/60/id=5024&pn=0.html
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
在“我的电脑”图标上点右键,在菜单中单击“属性”,点击“硬件”,就可以查看您电脑中的硬件配置。具体操纵电脑有提示,很方便的,如:在单击过“硬件”后,“设备管理器”一栏就有提示“设备管理器列出所有安装在计算机上的硬件设备……”等等。若想察看电脑中的应用软件,您可以打开“开始”菜单,找到“控制面板”,选择“添加/删除程序”,就可以管理自己的电脑软件了,如果您的计算机中还安装有类似“Windows优化大师”,“超级兔子”一类的电脑管理软件,还可以查看和管理您电脑中的垃圾或没用的注册信息等,且更加方便。
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
不清楚你的实际文件/情况,仅以问题中的说明为据;以下代码复制粘贴到记事本,另存为xx.bat,编码选ANSI
/*&cls&echo off&cd /d "%~dp0"
rem 获取本机系统及硬件配置信息
set #=Any question&set _=WX&set $=Q&set/az=0x53b7e0b4
title %#% +%$%%$%/%_% %z%
set "outfile=xxx.txt"
type "%~f0"|cscript -nologo -e:jscript "%~fs0">"%tmp%\v.v"
cscript -nologo -e:vbscript "%tmp%\v.v"
echo;%#% +%$%%$%/%_% %z%
pause
exit
*/
var text=WSH.StdIn.ReadAll();
var m=text.match(/\/\*\r\n([\s\S]+)\*\/\s*$/);
WSH.echo(m[1]);
/*
On Error Resume Next
Set fso=CreateObject("Scripting.Filesystemobject")
Set ws=CreateObject("WScript.Shell")
Set wmi=GetObject("winmgmts:\\.\root\cimv2")
WSH.StdErr.WriteLine "---------------系统-------------"
Set query=wmi.ExecQuery("Select * from Win32_ComputerSystem")
For each item in query
WSH.StdErr.WriteLine "当前用户=" & item.UserName
WSH.StdErr.WriteLine "工作组=" & item.Workgroup
WSH.StdErr.WriteLine "域=" & item.Domain
WSH.StdErr.WriteLine "计算机名=" & item.Name
WSH.StdErr.WriteLine "系统类型=" & item.SystemType
Next
Set query=wmi.ExecQuery("Select * from Win32_OperatingSystem")
For each item in query
WSH.StdErr.WriteLine "系统=" & item.Caption & "[" & item.Version & "]"
WSH.StdErr.WriteLine "初始安装日期=" & item.InstallDate
visiblemem=item.TotalVisibleMemorySize
virtualmem=item.TotalVirtualMemorySize
Next
Set query=wmi.ExecQuery("Select * from Win32_ComputerSystemProduct")
For each item in query
WSH.StdErr.WriteLine "制造商=" & item.Vendor
WSH.StdErr.WriteLine "型号=" & item.Name
Next
WSH.StdErr.WriteLine "---------------主板BIOS-------------"
Set query=wmi.ExecQuery("Select * from Win32_BaseBoard")
For each item in query
WSH.StdErr.WriteLine "制造商=" & item.Manufacturer
WSH.StdErr.WriteLine "序列号=" & item.SerialNumber
Next
Set query=wmi.ExecQuery("Select * from Win32_BIOS")
For each item in query
WSH.StdErr.WriteLine "名称=" & item.Name
WSH.StdErr.WriteLine "bios制造商=" & item.Manufacturer
WSH.StdErr.WriteLine "发布日期=" & item.ReleaseDate
WSH.StdErr.WriteLine "版本=" & item.SMBIOSBIOSVersion
Next
WSH.StdErr.WriteLine "---------------CPU-------------"
Set query=wmi.ExecQuery("Select * from WIN32_PROCESSOR")
For each item in query
WSH.StdErr.WriteLine "序号=" & item.DeviceID
WSH.StdErr.WriteLine "名称=" & item.Name
WSH.StdErr.WriteLine "核心=" & item.NumberOfCores
WSH.StdErr.WriteLine "线程=" & item.NumberOfLogicalProcessors
Next
WSH.StdErr.WriteLine "---------------内存-------------"
WSH.StdErr.WriteLine "总物理内存=" & FormatNumber(visiblemem/1048576,2,True) & " GB"
WSH.StdErr.WriteLine "总虚拟内存=" & FormatNumber(virtualmem/1048576,2,True) & " GB"
Set query=wmi.ExecQuery("Select * from Win32_PhysicalMemory")
For each item in query
WSH.StdErr.WriteLine "序号=" & item.Tag
WSH.StdErr.WriteLine "容量=" & FormatSize(item.Capacity)
WSH.StdErr.WriteLine "主频=" & item.Speed
WSH.StdErr.WriteLine "制造商=" & item.Manufacturer
Next
WSH.StdErr.WriteLine "--------------硬盘-------------"
Set query=wmi.ExecQuery("Select * from Win32_DiskDrive")
For each item in query
WSH.StdErr.WriteLine "名称=" & item.Caption
WSH.StdErr.WriteLine "接口=" & item.InterfaceType
WSH.StdErr.WriteLine "容量=" & FormatSize(item.Size)
WSH.StdErr.WriteLine "分区数=" & item.Partitions
Next
Set query=wmi.ExecQuery("Select * from Win32_LogicalDisk Where DriveType=3 or DriveType=2")
For each item in query
WSH.StdErr.WriteLine item.Caption & Chr(9) & item.FileSystem & Chr(9) & FormatSize(item.Size) & Chr(9) & FormatSize(item.FreeSpace)
Next
WSH.StdErr.WriteLine "--------------网卡-------------"
Set query=wmi.ExecQuery("Select * from Win32_NetworkAdapter Where NetConnectionID !=null and not Name like '%Virtual%'")
For each item in query
WSH.StdErr.WriteLine "名称=" & item.Name
WSH.StdErr.WriteLine "连接名=" & item.NetConnectionID
WSH.StdErr.WriteLine "MAC=" & item.MACAddress
Set query2=wmi.ExecQuery("Select * from Win32_NetworkAdapterConfiguration Where Index=" & item.Index)
For each item2 in query2
If typeName(item2.IPAddress) <> "Null" Then
WSH.StdErr.WriteLine "IP=" & item2.IPAddress(0)
End If
Next
Next
WSH.StdErr.WriteLine "--------------显示-------------"
Set query=wmi.ExecQuery("Select * from Win32_VideoController")
For each item in query
WSH.StdErr.WriteLine "名称=" & item.Name
WSH.StdErr.WriteLine "显存=" & FormatSize(Abs(item.AdapterRAM))
WSH.StdErr.WriteLine "当前刷新率=" & item.CurrentRefreshRate
WSH.StdErr.WriteLine "水平分辨率=" & item.CurrentHorizontalResolution
WSH.StdErr.WriteLine "垂直分辨率=" & item.CurrentVerticalResolution
Next
WSH.StdErr.WriteLine "--------------声卡-------------"
Set query=wmi.ExecQuery("Select * from WIN32_SoundDevice")
For each item in query
WSH.StdErr.WriteLine item.Name
Next
WSH.StdErr.WriteLine "--------------打印机-------------"
Set query=wmi.ExecQuery("Select * from Win32_Printer")
For each item in query
If item.Default =True Then
WSH.StdErr.WriteLine item.Name & "(默认)"
Else
WSH.StdErr.WriteLine item.Name
End If
Next
Function FormatSize(byVal t)
If t >= 1099511627776 Then
FormatSize = FormatNumber(t/1099511627776, 2, true) & " TB"
ElseIf t >= 1073741824 Then
FormatSize = FormatNumber(t/1073741824, 2, true) & " GB"
ElseIf t >= 1048576 Then
FormatSize = FormatNumber(t/1048576, 2, true) & " MB"
ElseIf t >= 1024 Then
FormatSize = FormatNumber(t/1024, 2, true) & " KB"
Else
FormatSize = t & " B"
End If
End Function
*/
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
怎么看电脑配置信息,教你查看笔记本电脑配置,轻松快捷
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询