===文件名:Get-WindowsProductKey.ps1===functionGet-WindowsProductKey([string]$computer) { $comments =@'author:fuhj(powershell#live.cn ,http://fuhaijun.com) example: Get-WindowsProductKey .'@ $reg = [WMIClass] ("\\"+ $computer +"\root\default:StdRegProv") $values = [byte[]]($reg...
在左下角输入WINDOWS POWERSHELL,然后点击系统查询结果第一项,在弹出的窗口中输入:(Get-WmiObject -query‘select * from SoftwareLicensingService’).OA3xOriginalProductKey 即可查询到系统密钥。
这段脚本通过调用Get-WmiObject命令来检索计算机上的软件许可服务信息,并提取其中的OA3xOriginalProductKey属性,该属性包含Windows 7产品密钥。 注意,为了运行此脚本,您需要以管理员身份运行PowerShell。 使用Windows 7产品密钥,您可以激活Windows 7操作系统以解锁其全部功能。
Can't get get-adcomputer to filter on Description... Can't Import AD Module Powershell Can't run Get-Acl on files containing a '[' or ']' character. Can't run Import-Module ActiveDirectory Can't use Install-Windowsfeature with the -Source property to install .Net 3.5 Cannot access n...
PowerShell读取Windows产品密钥 之前大多数人可能用过VBS读取Windows产品密钥的VBS脚本,VBS脚本通常都比较隐晦、难懂,今天忙里偷闲,随手写了一个用于读取Windows产品密钥的PowerShell脚本。 代码如下: ===文件名:Get-WindowsProductKey.ps1===functionGet-WindowsProductKey([string]$computer) { $...
Set-WindowsProductKey: 这个命令用于为Windows映像设置产品密钥。 powershellCopy Code Set-WindowsProductKey-ImagePath"C:\path\to\image.wim"-ProductKey"XXXXX-XXXXX-XXXXX-XXXXX-XXXXX" Get-WindowsEditionImage: 这个命令用于获取Windows映像的版本/版本号。
方法如下:第一步、按下Win+R组合键,在菜单中选择“Windows Powershell(管理员)”;第二步、在出现的管理员:Windows Powershell界面,在里面输入(干脆复制粘贴吧)下面的内容;(Get-WmiObject -query‘select * from SoftwareLicensingService’).OA3xOriginalProductKey 回车后,在命令后面Win8.1的产品...
“Windows(徽标)+X”打开“终端管理员”,输入以下命令即可查看密钥:(Get-WmiObject –query ‘select * from SoftwareLicensingService’).OA3xOriginalProductKey 另外一种方法是通过打开“CMD(命令提示符)”,输入以下命令即可查看密钥:wmic path SoftwareLicensingService get OA3xOriginalProductKey ...
cd C:\Windows\System32\ $ProductKey = (Get-WmiObject -query 'select * from SoftwareLicensingService').OA3xOriginalProductKey if ($ProductKey.Length -ne 0) { cscript slmgr.vbs /ipk $ProductKey cscript slmgr.vbs /ato slmgr.vbs -xpr ...
在Powershell中,输入以下命令来激活Windows10: 代码语言:powershell 复制 $ProductKey="XXXXX-XXXXX-XXXXX-XXXXX-XXXXX"# 替换为你的Windows10产品密钥$Activation=Get-WmiObject-Query"SELECT * FROM SoftwareLicensingService"|ForEach-Object{$_.Activate()}if($Activation){Write-Host"Windows10已成功激活!"}else{...