如何查看电脑是台式电脑还是移动电脑

发布于 2024-12-03 07:57:24 字数 350 浏览 1 评论 0原文

可能的重复:
如何检查机器类型?笔记本电脑还是台式机?

如何检查计算机是台式机还是移动设备, 在WIN7中- 从HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\pcmcia读取注册表项,“Start”值,笔记本电脑中的值不=0,值=3,还有台式机中的值=3。 这样就无法知道计算机的类型

Possible Duplicate:
How to check the machine type? laptop or desktop?

How can I check if the computer is desktop or mobile,
in WIN7 -
read registry key from HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\pcmcia, the ‘Start’ value, the value in laptop is not =0, value = 3, Also the value in desktop =3.
This way there is no way of knowing the type of the computer

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

注定孤独终老 2024-12-10 07:57:24

如果可能,避免直接访问注册表。您可以尝试:

System.OperatingSystem osVersion = System.Environment.OSVersion;
// ...
PlatformID yourPlatform = osVersion.Platform;
// ...

If possible avoid direct access to registry. You may try:

System.OperatingSystem osVersion = System.Environment.OSVersion;
// ...
PlatformID yourPlatform = osVersion.Platform;
// ...
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文