| 
 
hanxingsilent 
新手上路
 
 
 
  
  
积分 6 
发帖 1 
注册 2006-1-7 
状态 离线
 | 
『楼 主』:
 能不能用dos命令查出电脑的配置
 
使用 LLM 解释/回答一下
  
各位好: 
请问能不能用dos命令查出电脑的各种配置? 
请各位帮忙,谢谢!!! 
Hello everyone: 
Can you use DOS commands to find out various configurations of the computer? 
Please help everyone, thank you!!! 
    
 
  
 |   
 | 
  2006-1-7 14:33 | 
  
 | 
 | 
 
electronixtar 
铂金会员
 
       
 
  
  
积分 7493 
发帖 2672 
注册 2005-9-2 
状态 离线
 | 
 | 
  2006-1-7 14:50 | 
  
 | 
 | 
 
electronixtar 
铂金会员
 
       
 
  
  
积分 7493 
发帖 2672 
注册 2005-9-2 
状态 离线
 | 
 | 
  2006-1-7 14:51 | 
  
 | 
 | 
 
wl00560 
银牌会员
 
     
 
  
  
积分 1384 
发帖 709 
注册 2005-10-29 
状态 离线
 | 
『第 4 楼』:
 
 
使用 LLM 解释/回答一下
  
纯dos吗?键入msd看怎样。不过可能老一点。也可以用hwinfo软件 
Is it pure DOS? Type in msd to see. But it might be older. You can also use the hwinfo software 
    
 
  
 |   
 | 
  2006-1-7 16:59 | 
  
 | 
 | 
 
Wengier 
系统支持
 
              “新DOS时代”站长
  
 
积分 27736 
发帖 10521 
注册 2002-10-9 
状态 离线
 | 
『第 5 楼』:
 
 
使用 LLM 解释/回答一下
  
HWINFO、NSSI、PCI等软件比较新。 
HWINFO, NSSI, PCI and other software are relatively new. 
    
 
  
  |  
                  
  
                    Wengier - 新DOS时代 
 
欢迎大家来到我的“新DOS时代”网站,里面有各类DOS软件和资料,地址: 
http://wendos.mycool.net/ 
 
E-Mail & MSN: wengierwu AT hotmail.com (最近比较忙,有事请联系DOSroot和雨露,谢谢!) 
 
  |   
 | 
  2006-1-8 00:04 | 
  
 | 
 | 
 
3742668 
荣誉版主
 
       
 
  
  
积分 2013 
发帖 718 
注册 2006-2-18 
状态 离线
 | 
『第 6 楼』:
 
 
使用 LLM 解释/回答一下
  
XP下通过WMIC可以查看到比较详细的信息。 
Under XP, relatively detailed information can be viewed through WMIC. 
    
 
  
 |   
 | 
  2006-2-19 00:32 | 
  
 | 
 | 
 
zouqsh9511 
初级用户
 
  
 
  
  
积分 30 
发帖 9 
注册 2006-3-22 
状态 离线
 | 
『第 7 楼』:
 这个东东怎么用啊?
 
使用 LLM 解释/回答一下
  
怎么输入什么它都提示找不到另名 
How to input anything, it prompts that the alias is not found 
    
 
  
 |   
 | 
  2006-3-22 17:20 | 
  
 | 
 | 
 
3742668 
荣誉版主
 
       
 
  
  
积分 2013 
发帖 718 
注册 2006-2-18 
状态 离线
 | 
『第 8 楼』:
 
 
使用 LLM 解释/回答一下
  
wmic baseboard get product | findstr /i /v "product" 
wmic cpu       get name    | findstr /i /v "name" 
wmic diskdrive get model   | findstr /i /v "model" 
wmic cdrom     get name    | findstr /i /v "name" 
wmic desktopmonitor get name | findstr /i /v "name" 
wmic memlogical get TotalPhysicalMemory | findstr /i /v "TotalPhysicalMemory" 
wmic nic  where NetConnectionID="本地连接" get name 
wmic sounddev get name | findstr /i /v "name" 
 
试试看吧,好久以前写的,好象有一小点错误吧,忘了。 
如果你不用生成记录文件的话更简单直观: 
start C:\WINDOWS\PCHealth\HelpCtr\System\sysinfo\sysComponentInfo.htm 
测试系统为SP2。 
wmic baseboard get product | findstr /i /v "product" 
wmic cpu       get name    | findstr /i /v "name" 
wmic diskdrive get model   | findstr /i /v "model" 
wmic cdrom     get name    | findstr /i /v "name" 
wmic desktopmonitor get name | findstr /i /v "name" 
wmic memlogical get TotalPhysicalMemory | findstr /i /v "TotalPhysicalMemory" 
wmic nic  where NetConnectionID="Local Area Connection" get name 
wmic sounddev get name | findstr /i /v "name" 
 
Give it a try, I wrote this a long time ago, seems there's a small mistake, forgot. 
If you don't use generating a record file, it's simpler and more intuitive: 
start C:\WINDOWS\PCHealth\HelpCtr\System\sysinfo\sysComponentInfo.htm 
The tested system is SP2. 
    
 
  
 |   
 | 
  2006-3-22 19:19 | 
  
 | 
 | 
 
linson 
中级用户
 
   
 
  
 
积分 283 
发帖 31 
注册 2004-3-6 
状态 离线
 | 
『第 9 楼』:
 
 
使用 LLM 解释/回答一下
  
Originally posted by 3742668 at 2006-3-22 07:19 PM: 
wmic baseboard get product | findstr /i /v "product" 
wmic cpu       get name    | findstr /i /v "name" 
wmic diskdrive get model   | findstr /i /v "model" 
wmic cdrom ...  
我以前都是用WMI脚本来查硬件信息!想不到windows也有CMD命令,多了一种选择,谢了。又学了一招!  
Originally posted by 3742668 at 2006-3-22 07:19 PM: 
wmic baseboard get product | findstr /i /v "product" 
wmic cpu       get name    | findstr /i /v "name" 
wmic diskdrive get model   | findstr /i /v "model" 
wmic cdrom ...  
I used to use WMI scripts to check hardware information! I didn't expect Windows to have CMD commands, which gives more options. Thanks. Learned another trick!  
    
 
  
 |   
 | 
  2006-3-22 23:22 | 
  
 | 
 | 
 
286-486 
中级用户
 
   
 
  
 
积分 214 
发帖 40 
注册 2004-2-25 
状态 离线
 | 
『第 10 楼』:
 
 
使用 LLM 解释/回答一下
  
用PCTOOLS或NORTON等工具软件 
Use tools such as PCTOOLS or NORTON 
    
 
  
 |   
 | 
  2006-3-27 16:54 | 
  
 | 
 | 
 
iaide007 
初级用户
 
  
 
  
 
积分 36 
发帖 12 
注册 2006-9-8 
状态 离线
 | 
『第 11 楼』:
 
 
使用 LLM 解释/回答一下
  
start C:\WINDOWS\PCHealth\HelpCtr\System\sysinfo\sysComponentInfo.htm 
 
今天才发现有这么一个好东东,。哈哈 
start C:\WINDOWS\PCHealth\HelpCtr\System\sysinfo\sysComponentInfo.htm 
 
Just discovered such a good thing today. Haha 
    
 
  
  |  
                  
  
                     QQ群名称:◥◣批处理时代◢◤  
QQ群号码:6702314 |   
 | 
  2006-9-10 18:02 | 
  
 | 
 | 
 
hymm2008 
初级用户
 
  
 
  
  
积分 102 
发帖 43 
注册 2006-9-7 
状态 离线
 | 
『第 12 楼』:
 
 
使用 LLM 解释/回答一下
  
Originally posted by iaide007 at 2006-9-10 18:02: 
start C:\WINDOWS\PCHealth\HelpCtr\System\sysinfo\sysComponentInfo.htm 
 
今天才发现有这么一个好东东,。哈哈  
果然,好東西 ,夠簡單。  
Originally posted by iaide007 at 2006-9-10 18:02: 
start C:\WINDOWS\PCHealth\HelpCtr\System\sysinfo\sysComponentInfo.htm 
 
Just discovered such a good thing today. Haha  
Indeed, good stuff, simple enough.  
    
 
  
 |   
 | 
  2006-9-11 04:29 | 
  
 | 
 | 
 
mobo 
初级用户
 
  
 
  
  
积分 73 
发帖 30 
注册 2006-9-18 
状态 离线
 | 
『第 13 楼』:
 使用WMI别名获取PC主要信息.bat
 
使用 LLM 解释/回答一下
  
::使用WMI别名获取PC主要信息.bat 
::使用WMI别名获取主要信息,输出为网页格式 
::--------by MOBO[墨伯] at 2006-09-16: 
wmic baseboard list brief /format:hform >MyPC.htm 
wmic cpu list brief /format:hform >>MyPC.htm 
wmic bios list brief /format:hform >>MyPC.htm 
 
wmic diskdrive list brief /format:hform >>MyPC.htm 
wmic cdrom  list brief /format:hform >>MyPC.htm 
wmic desktopmonitor list brief /format:hform >>MyPC.htm 
wmic memlogical list brief /format:hform >>MyPC.htm 
wmic nic list brief /format:hform >>MyPC.htm 
wmic sounddev list brief /format:hform >>MyPC.htm 
 
wmic  group brief /format:hform >>MyPC.htm 
wmic os list brief /format:hform >>MyPC.htm 
wmic startup list brief /format:hform >>MyPC.htm 
::Get PC Main Information Using WMI Alias.bat 
::Get main information using WMI alias, output in web page format 
::--------by MOBO at 2006-09-16: 
wmic baseboard list brief /format:hform >MyPC.htm 
wmic cpu list brief /format:hform >>MyPC.htm 
wmic bios list brief /format:hform >>MyPC.htm 
 
wmic diskdrive list brief /format:hform >>MyPC.htm 
wmic cdrom  list brief /format:hform >>MyPC.htm 
wmic desktopmonitor list brief /format:hform >>MyPC.htm 
wmic memlogical list brief /format:hform >>MyPC.htm 
wmic nic list brief /format:hform >>MyPC.htm 
wmic sounddev list brief /format:hform >>MyPC.htm 
 
wmic  group brief /format:hform >>MyPC.htm 
wmic os list brief /format:hform >>MyPC.htm 
wmic startup list brief /format:hform >>MyPC.htm 
    
 
  
 |   
 | 
  2006-9-18 09:00 | 
  
 | 
 | 
 
nxcgh2006 
初级用户
 
  
 
  
  
积分 42 
发帖 22 
注册 2006-10-19 
状态 离线
 | 
 | 
  2006-10-23 12:51 | 
  
 | 
 | 
 
xingyun206 
新手上路
 
 
 
  
  
积分 14 
发帖 6 
注册 2008-1-10 
状态 离线
 | 
 | 
  2008-1-10 17:02 | 
  
 |