跳转到主要内容
HWID Checker

下载 HWID Checker Windows 版

获取适用于 Windows 10 和 11 的便携命令行工具。它会读取 Windows 和固件暴露的标识符,生成复合 SHA-256 HWID,并可在本地导出文本或 JSON。

便携 Windows CLI

推荐

单文件 x64 可执行文件约 2.4 MB,无需安装。它会报告可用的主板、BIOS、磁盘、CPU、网络和 Windows 标识符,然后将稳定值哈希成一个复合 HWID。

Windows 10 和 11(x64)

下载可执行文件后,打开命令提示符或 PowerShell,在保存文件的文件夹中运行它。

下载 Windows 版~2.4 MB · .exe · Windows 10/11 x64

用法

# Double-click hwid-checker.exe
# Or run in Command Prompt / PowerShell:
hwid-checker.exe

# Save the result to a timestamped .txt file
hwid-checker.exe -save

# Output as JSON (great for scripts and CI)
hwid-checker.exe -json

不下载 EXE 也能读取标识符

当你只需要某个特定标识符而非完整报告时,可使用 Windows、macOS 或 Linux 的内置工具:

无需安装
reg query "HKLM\SOFTWARE\Microsoft\Cryptography" /v MachineGuid

MachineGuid — an installation-specific Windows identifier

Get-CimInstance Win32_ComputerSystemProduct | Select-Object UUID

SMBIOS UUID — from your motherboard firmware

Get-CimInstance Win32_DiskDrive | Select-Object Model, SerialNumber

Disk drive serial numbers

Get-CimInstance Win32_BaseBoard | Select-Object SerialNumber

Motherboard serial number

getmac

MAC addresses of all network adapters

PowerShell CIM commands work on current Windows releases. Use the Windows download above to collect available values and export a composite report.

每条命令返回一个特定的标识符。上面的 Windows 工具会合并多个可用值,并支持文本或 JSON 导出。

工具只读取本地标识符,并仅在你使用 -save 选项时写入文件。它不会上传报告。