Get-WmiObject -query 'select * from SoftwareLicensingProduct' 是一个 PowerShell 命令,它通过 Windows Management Instrumentation (WMI) 查询系统中关于软件许可的信息。 解
get-wmiobject -query "select * from win32_product where name like '%Microsoft%'" 接下来,在PowerShell中执行这个查询语句: powershell Get-WmiObject -Query "select * from win32_product where name like '%Microsoft%'" 执行这条命令后,PowerShell将会查询WMI,并返回所有名称中包含"Microsoft"字符串的...
免费| 找出 windows 序列号:wmic path softwareLicensingService get OA3xOriginalProductKeypowershell "(Get-WmiObject -query 'select * from SoftwareLicensingService').OA3xOriginalProductKey"Computer\HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\SoftwareProtectionPlatform 发布于 2023-05-01 16...