求一SQL获取服务器CPU 序列号脚本,或者c#获取服务器CPU型号源码
http://blogcsdnnet/greystar/article/details/46723409
参考下C#代码吧。
create table #sysinfo
(
[index] int null,
[Name] varchar(255) null,
[Internal_Value] varchar(255) null,
[Character_Value] varchar(255) null,
)
insert into #sysinfo
exec xp_msver
select Internal_Value from #sysinfo where [name]='ProcessorCount'
drop table #sysinfo
很多人在默认安装Windows Server 2008时没有输入Win2008序列号,由于Windows Server 2008作为服务器家族需要使用KMS在线激活。如果你已经申请了Win2008 cdkey但是安装后忘记了,可以使用Vista地带的ooVista系统必备来查看。
打开ooVista系统必备,单击“百宝箱”-“CD-Key查看”即可查看Win2008序列号。我们可以单击右边的“复制到剪切板”即可自动复制Win2008 CD-KEY如图所示: 相关软件下载地址
http://wwwonlinedownnet/soft/59262htm
0条评论