pc-pc doctorr dos coprocessor cpu怎么用

PC-Doctor for Windows - Hardware Diagnostics to Lower Support Costs by Reducing No Trouble Found (NTF) Returns
PC-Doctor for Windows
PC-Doctor for Windows delivers lower support costs by reducing the frequency of No Trouble Found (NTF) product returns and speeding resolution of customer-reported problems. Leading manufacturers have installed over 100 million copies of PC-Doctor for Windows on computer systems worldwide.
PC-Doctor for Windows deflects service calls by giving end users the tools they need to diagnose hardware problems. When service calls occur, PC-Doctor for Windows provides support technicians with powerful hardware diagnostics and system information tools to speed call resolution and increase first-call resolution rates.
the list of tests available in Windows.
Features and Benefits
Reduces No Trouble Found (NTF) rates.
Increases customer satisfaction and brand value.
Deflects call center support calls.
Reduces support call duration.
Increases support first-call resolution rates.
Easy deployment.
Easily integrates support for emerging standards in hardware development.
Localized in 24 languages.
Small footprint on end user hard drives.
Custom company branding including company logos and support contact information
More than 200 diagnostic tests cover all major PC subsystems including CPU, memory, system board, storage, audio, graphics, networking, and peripherals I/O.
Direct System Information collects data from multiple sources to provide an accurate and thorough system view.
Customizable test scripts support specific system configurations and customer requirements.
Can be used to solve problems remotely.
Easy-to-use graphical interface can be customized to simplify the user experience and advance the PC manufacturers brand.
Common technology base with PC-Doctor Factory and PC-Doctor Service Center products for improved failure and trend analysis.
Value-added services available from PC-Doctor include OEM customer support and training, diagnostic library updates, application and development consulting.
Compatible with current versions of Microsoft Windows, including Windows Server 2003, Windows Server 2008, Windows XP, Windows Vista, Windows 7, Windows 8, and Windows PE.
Alternative versions available for DOS, Linux, and newly available diagnostics for .
DOS and Windows PE versions can test systems that fail to boot into Windows.
Key User Communities
PC manufacturers
Original Equipment Manufacturers (OEMs)
Original Design Manufacturers (ODMs)
System integrators and IT service providers
System builders and Value-Added Resellers (VARs)
Customer support and field service organizations
Enterprise IT departments
Product Deliverables
PC-Doctor for Windows software product master for pre-installation on end-user systems
Reproduction and distribution license agreement to install PC-Doctor for Windows on computer systems
Customizable on-line documentation content for installation with PC-Doctor for Windows
Multilingual versions available in 24 languages for major PC market regions
Optional consulting and professional services available to speed field delivery of PC-Doctor for Windows solutions
If you are a small OEM/system builder or an end-user, you may wish to explore our联想PC故障诊断解决方案(Lenovo PC-Doctor) 7.56简体中文免费版
你的位置: &
> 联想PC故障诊断解决方案(Lenovo PC-Doctor) 7.56简体中文免费版
联想PC故障诊断解决方案(Lenovo PC-Doctor) 7.56简体中文免费版
不好用:(0)
Lenovo联想(IBM) ThinkPad笔记本PC-Doctor测试软件最新2.0.1712版For DOS(日发布)PC-Doctor是ThinkPad的预装软件之一,提供了一种完善的计算机诊断解决方案。它可以检测并收集有关信息,测试从处理器到音频在内的所有计算机组件,并可以解决硬件问题并确保正常工作。该工具目前提供自动测试和交互式测试两种类型的完全测试。其中交互式测试要求用户输入信息。比如:交互式键盘测试要求按所有键。在您指出测试通过或失败之后,才会报告测试结果。自动测试则无须用户参与。此款软件具体支持笔记本型号包括:ThinkPad R400, R500, T400, T500, W500, W700, X200, X300, X301
(您的评论需要经过审核才能显示,请文明发言!)&&剩余字数:
点击图片更换
系统工具分类
本站资源均收集整理于互联网,其著作权归原作者所有,如果有侵犯您权利的资源,请来信告知,我们将及时撤销相应资源。
Copy . All Rights Reserved.批处理怎么检测CPU使用率并执行指定命令? - BAT求助&讨论 -
批处理之家 批处理_BAT_CMD_DOS_VBS_Perl_Python_PowerShell - Powered by Discuz!
帖子3&积分25&技术0 &捐助0 &注册时间&
批处理怎么检测CPU使用率并执行指定命令?
我做数值模拟的时候,需要大量的计算,晚上想在电脑空闲的时候计算一些东西!
所以现在的问题是上面一些程序不知道会在什么时候结束,时间不确定。
所以我想通过检测CPU使用率的方法来判断前面的程序是否结束了!
我想在使用率低于20%超过15分钟的时候执行下一条命令,不知道这个批处理判断起来好不好实现,
望高手们支支招,帮帮忙!
谢谢楼下两位的热心回答,主要是上面程序结束了他不会自动退出,在任务里面任然在,
只是CPU占用率降低了而已,应该怎么办呢?
[ 本帖最后由 timothy 于
18:29 编辑 ]
帖子1739&积分4955&技术255 &捐助0 &注册时间&
wmic path Win32_PerfFormattedData_PerfOS_Processor get PercentProcessorTime /value
不推荐用批处理来实现对cpu使用率的监控。
[ 本帖最后由 hanyeguxing 于
23:51 编辑 ]
寒夜孤星:在没有说明的情况下,本人所有代码均运行在 XP SP3 下 (有问题请发贴,QQ临时会话已关闭)
帖子125&积分172&技术12 &捐助0 &注册时间&
既然程序结束&&可以用&&TASKLIST&&查找程序名&&定时查看是否程序结束& &程序结束& &就执行下一个程序
帖子3&积分25&技术0 &捐助0 &注册时间&
原帖由 hanyeguxing 于
22:29 发表
wmic path Win32_PerfFormattedData_PerfOS_Processor get PercentProcessorTime /value
不推荐用批处理来实现对cpu使用率的监控。
这位大侠,为什么不推荐用批处理啊
帖子1739&积分4955&技术255 &捐助0 &注册时间&
@echo off
:获取PercentProcessorTime平均值
for /f &skip=1 tokens=2 delims==& %%a in ('wmic path Win32_PerfFormattedData_PerfOS_Processor get PercentProcessorTime /value') do set/a Han+=%%a
set/a Han/=3
:获取标志文件
for %%a in (*.h) do set Ye=%%~na
if &%Ye%&==&#& exit
if &%Ye%&==&& set Ye=0
if %Ye% gtr 15 goto:end
if %Han% lss 20 (set/a Ye+=1) else set Ye=0
cd/d&%Ye%.h
exit
:end:启动程序后退出
start && &d:\程序.exe&
del /q *.h
cd/d&#.h复制代码1,在任务计划中启动该批处理,要求重复为每1分钟一次
2,通过计划是否启用来控制本批处理是否被执行
3,每次开始计划前,需要先手工删除批处理同目录下的 .h 文件
[ 本帖最后由 hanyeguxing 于
00:35 编辑 ]
寒夜孤星:在没有说明的情况下,本人所有代码均运行在 XP SP3 下 (有问题请发贴,QQ临时会话已关闭)
帖子3&积分25&技术0 &捐助0 &注册时间&
谢谢寒夜孤星,这两天出差去了
太高深了,看不懂啊,
这个怎么检测,怎么计时间?
再麻烦您一次吧,谢谢大侠
[通过 QQ、MSN 分享给朋友]dos下通过wmic命令查看硬盘和内存/CPU信息(windows自带命令查看硬件信
来源:易贤网&& 阅读:7099 次&&日期: 16:28:57
温馨提示:易贤网小编为您整理了“dos下通过wmic命令查看硬盘和内存/CPU信息(windows自带命令查看硬件信”,方便广大网友查阅!
这篇文章主要介绍了windows系统自带命令查看硬件信息,怎样dos命令查看硬盘和内存/CPU信息的方法,需要的朋友可以参考下
如何在windows系统自带命令查看硬件信息,怎样dos命令查看硬盘和内存/CPU信息?最直接的是:开始→运行→CMD打开命令提示符,在该窗口下输入systeminfo执行,即可看到几乎所有想知道的系统信息,甚至包括机器上已安装的网卡及其IP。
问题描述: 如何从系统中 查看主板上内存条的数量。
最佳答案: 在cmd命令下 输入:wmic memorychip list brief 或者 wmic MEMPHYSICAL list brief 就会看到内存条的数量
rem 查看cpu
wmic cpu list brief
rem 查看物理内存
wmic memphysical list brief
rem 查看逻辑内存
wmic memlogical list brief
rem 查看缓存内存
wmic memcache list brief
rem 查看虚拟内存
wmic pagefile list brief
rem 查看网卡
wmic nic list brief
rem 查看网络协议
wmic netprotocal list brief
如何在windows系统自带命令查看硬件信息?
对于在windows下查看系统信息大家一定不陌生了,我现在说几个最常用的方法,对命令感兴趣的朋友看看,(给菜鸟看的,老手就不要笑话我了,大家都是从那个时候过来的,^_^)。
一.图新Shell下:
1.&&& 最直观的:(在运行里面输入CMD,以下命令都是在CMD下输入的:)
输入 sysdm.cpl, 系统属性.
2.&&& 输入dxdiag
3.输入 start msinfo32,winmsd系统信息
3.&&& 输入 devmgmt.msc,设备管理:
4.&&& 输入 taskmgr (或按Ctrl+Alt+Esc) 在性能选项卡看物理内存和pagefile
5.&&& 输入 winver 也可以查看内存大小&
怎样dos命令(cmd命令)查看硬盘和内存/CPU信息?
1.查看磁盘信息:freedisk 可以查看每一个盘的剩余空间
wmic diskdrive
可以看出来牌子和大小.
Wmic logicaldisk
可以看到有几个盘,每一个盘的文件系统和剩余空间
wmic volume
每个盘的剩余空间量,其实上一个命令也可以查看的
fsutil volume diskfree c:
这个命令查看每一个卷的容量信息是很方便
上面显示的有位宽,最大始终频率, 生产厂商,二级缓存等信息
3.内存信息
&&& wmic memorychip
可以显示出来三条内存,两条256,一条1G的,速度400MHz
4.BIOS信息
&&& wmic bios
某台服务器的 systeminfo 命令结果
Host Name:&&&&&&&&&&&&&&&& WIN669
OS Name:&&&&&&&&&&&&&&&&&& Microsoft(R) Windows(R) Server 2003, Standard Edition
OS Version:&&&&&&&&&&&&&&& 5.2.3790 Service Pack 2 Build 3790
OS Manufacturer:&&&&&&&&&& Microsoft Corporation
OS Configuration:&&&&&&&&& Standalone Server
OS Build Type:&&&&&&&&&&&& Multiprocessor Free
Registered Owner:&&&&&&&&&
Registered Organization:&&
Product ID:&&&&&&&&&&&&&&&
Original Install Date:&&&& 2/21/:25 PM
System Up Time:&&&&&&&&&&& N/A
System Manufacturer:&&&&&& RackableSystems
System Model:&&&&&&&&&&&&& 99-02-08062
System Type:&&&&&&&&&&&&&& X86-based PC
Processor(s):&&&&&&&&&&&&& 4 Processor(s) Installed.
&&&&&&&&&&&&&&&&&&&&&&&&&& [01]: x86 Family 6 Model 15 Stepping 11 GenuineIntel~2327 Mhz
&&&&&&&&&&&&&&&&&&&&&&&&&& [02]: x86 Family 6 Model 15 Stepping 11 GenuineIntel~2327 Mhz
&&&&&&&&&&&&&&&&&&&&&&&&&& [03]: x86 Family 6 Model 15 Stepping 11 GenuineIntel~2327 Mhz
&&&&&&&&&&&&&&&&&&&&&&&&&& [04]: x86 Family 6 Model 15 Stepping 11 GenuineIntel~2327 Mhz
BIOS Version:&&&&&&&&&&&&& INTEL& - 0
Windows Directory:&&&&&&&& C:\WINDOWS
System Directory:&&&&&&&&& C:\WINDOWS\system32
Boot Device:&&&&&&&&&&&&&& \Device\HarddiskVolume1
System Locale:&&&&&&&&&&&& en-English (United States)
Input Locale:&&&&&&&&&&&&& en-English (United States)
Time Zone:&&&&&&&&&&&&&&&& (GMT-08:00) Pacific Time (US & Canada)
Total Physical Memory:&&&& 4,096 MB
Available Physical Memory: 3,790 MB
Page File: Max Size:&&&&&& 5,968 MB
Page File: Available:&&&&& 5,844 MB
Page File: In Use:&&&&&&&& 124 MB
Page File Location(s):&&&& C:\pagefile.sys
Domain:&&&&&&&&&&&&&&&&&&& WORKGROUP
Logon Server:&&&&&&&&&&&&& \\WIN669
Hotfix(s):&&&&&&&&&&&&&&&& 309 Hotfix(s) Installed.
&&&&&&&&&&&&&&&&&&&&&&&&&& [01]: File 1
&&&&&&&&&&&&&&&&&&&&&&&&&& [02]: File 1
&&&&&&&&&&&&&&&&&&&&&&&&&& [03]: File 1
Network Card(s):&&&&&&&&&& 1 NIC(s) Installed.
&&&&&&&&&&&&&&&&&&&&&&&&&& [01]: Intel(R) PRO/1000 EB Network Connection with I/O Acceleration
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& Connection Name: Local Area Connection 4
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& DHCP Enabled:&&& No
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& IP address(es)
更多信息请查看
更多信息请查看
【】&&&&&【点此处查询各地各类考试咨询QQ号码及交流群】
易贤网手机网站地址:
由于各方面情况的不断调整与变化,易贤网提供的所有考试信息和咨询回复仅供参考,敬请考生以权威部门公布的正式信息和咨询为准!
相关阅读 & & &
&&& &nbsp&nbsp&nbsp会员注册
本站不参与评论!()
自觉遵守:爱国、守法、自律、真实、文明的原则
尊重网上道德,遵守中华人民共和国各项有关法律法规
严禁发表危害国家安全,破坏民族团结、国家宗教政策和社会稳定,含侮辱、诽谤、教唆、淫秽等内容的评论
承担一切因您的行为而直接或间接导致的民事或刑事法律责任
您在本站发表的评论,本站有权保留、转载、引用或者删除
参与本评论即表明您已经阅读并接受上述条款

我要回帖

更多关于 pc doctor 的文章

 

随机推荐