求一个Windows 2003系统的镜像文件
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了求一个Windows 2003系统的镜像文件相关的知识,希望对你有一定的参考价值。
谁给我一个WIN2003服务器版的镜像文件,要能安IIS的,我在网上下了很多,都不能安IIS。请用过的朋友给一个负责的回答,谢谢。最好是正在用的,我的QQ:75095097,可以发到我的邮箱里。
正版的买不起,盗版的又买不到,找了很多地方。主要是要做WEB服务器,在网上下了很多个,下了安,安了没有IIS,又重新下,重新安,还是没有IIS(添加或删除WINDOWS组件里根本就没有INTERNET信息服务(IIS)),在网上搜了一些处理办法,但又觉得麻烦。。。。我都崩溃了,不知道下一次下的还有IIS没有?去年用过一个2003,有IIS的,但那网址打不开了。想有一个安装后就可以直接用的就好了。
比如说你可以到verycd里面搜索下载,序列号嘛,网上一大堆。
如果你只是想装IIS,你可以下载一个IIS6.0装一下
如有疑问请发邮件到redheartjs@163.com咨询
当然,如果你不差钱的话,买一个盗版的也就5块钱,买一个正版的也就几千块钱。 参考技术A 我来回答
你可以到多特网站里去查找一下 我现在用的就是2003 不过是GHO版的 安装版的我也用过 ISO的我也用过 都是在多特下的 所以IIS也应该有的 参考技术B 直接下载IIS6.0嘛
怎么用python实现电脑cpu温度监控,最好有代码,windows平台,求大神
怎么用python实现电脑cpu温度监控,最好有代码,windows平台,求大神
from __future__ import divisionimport os
from collections import namedtuple
_nt_cpu_temp = namedtuple(\'cputemp\', \'name temp max critical\')
def get_cpu_temp(fahrenheit=False):
"""Return temperatures expressed in Celsius for each physical CPU
installed on the system as a list of namedtuples as in:
>>> get_cpu_temp()
[cputemp(name=\'atk0110\', temp=32.0, max=60.0, critical=95.0)]
"""
# http://www.mjmwired.net/kernel/Documentation/hwmon/sysfs-interface
cat = lambda file: open(file, \'r\').read().strip()
base = \'/sys/class/hwmon/\'
ls = sorted(os.listdir(base))
assert ls, "%r is empty" % base
ret = []
for hwmon in ls:
hwmon = os.path.join(base, hwmon)
label = cat(os.path.join(hwmon, \'temp1_label\'))
assert \'cpu temp\' in label.lower(), label
name = cat(os.path.join(hwmon, \'name\'))
temp = int(cat(os.path.join(hwmon, \'temp1_input\'))) / 1000
max_ = int(cat(os.path.join(hwmon, \'temp1_max\'))) / 1000
crit = int(cat(os.path.join(hwmon, \'temp1_crit\'))) / 1000
digits = (temp, max_, crit)
if fahrenheit:
digits = [(x * 1.8) + 32 for x in digits]
ret.append(_nt_cpu_temp(name, *digits))
return ret追问
在吗?大哥
追答就是读系统文件而已。系统里面有记录温度的文件
追问刚睡着了
要用到哪几个包,我python不会,学安卓的,
我今天回家去下载
你说的是在windows系统还是linun系统
linus
追答其实我把整个代码都给了你了。。。你只需要复制粘贴。。但是你连python都不懂。。连运行也不会吧。。还是先自学吧
追问简单的会,呵呵
运行那些不是跟java差不多吧
你这是linux系统下的吧
追答好吧。。。windows应该就是:
import wmi
w = wmi.WMI(namespace="root\\OpenHardwareMonitor")
temperature_infos = w.Sensor()
for sensor in temperature_infos:
if sensor.SensorType==u\'Temperature\':
print(sensor.Name)
print(sensor.Value)
呵呵,不过你这个wmi的包只能获取到电脑系统的信息,获取不到cpu温度
追答其实说真的 你除了会说呵呵还会说什么。自己不会用脑?不会想想为什么读不到? wmi是可以读到温度的 你自己不会就不要说不行 我怎么就能读到呢? 呵呵
(其实我也不想呵呵 只是你这种人 呵呵)
有意思,好吧,我再查下这个包,今天再去实现它,谢谢
参考技术A 大哥在吗你这个问题解决没啊,我急着等你啊,我用wmi死活取不出温度和风扇转速以上是关于求一个Windows 2003系统的镜像文件的主要内容,如果未能解决你的问题,请参考以下文章