Windows 11金鑰查詢的保姆級教程

本文將介紹幾種找回並激活Windows 11的產品金鑰的方法。

Daisy

作者 Daisy / 更新於 2023年07月13日

分享到: instagram reddit

Windows 11 產品金鑰概述

「我剛買了一臺筆記型電腦,並在上面安裝了最新版本的 Windows 11,但在安裝過程中沒有使用產品金鑰。在最初的幾天裡,我可以正常使用所有系統功能。然而,當我嘗試變更桌布或進行任何個性化相關操作時,這些選項都變成了灰色。後來,我得知需要產品金鑰。請問Windows 11如何查詢產品金鑰?」

產品金鑰是一個由25個字元組成的代碼,用於激活 Windows,讓您無限制地使用所有功能,並幫助驗證 Windows 未在超出 Microsoft 軟體許可條款允許的電腦上使用。如果您不知道或忘記了產品金鑰,Windows 11 將無法激活,因此您可能無法使用個性化相關的 Windows 功能,例如變更桌布、自訂顏色和預設主題。

檢查 Windows 11 是否已激活

首先,讓我們確保是否需要Windows 11金鑰查詢,因為只有在作業系統未激活時,才需要產品金鑰。

1. 打開 Windows 11 的開始菜單,點擊「設定」。

activation check

2. 選擇「更新與安全性」。

update security

3. 點擊「啟用」。

activation

4. 檢查啟用狀態。如果您看到產品金鑰,表示 Windows 11 已成功激活;否則,您需要輸入這25個字元的代碼。

status

Windows 11金鑰查詢的基本方法

方法1. 檢查包裝盒上的貼紙

如果您購買的電腦已經預裝了 Windows 11,那麼您很有可能可以在電腦的包裝盒上找到相關信息。

筆記型電腦 - 檢查裝支架底部。

桌上型電腦 - 檢查顯示器或機箱背面。

方法2. 檢視郵件或收據

如果您在線上購買了 Windows,您可能會收到一封郵件,其中可能包含 Windows 11 的產品金鑰。

Windows 11金鑰查詢的進階方法?

Windows 為您準備了3個產品金鑰查詢的實用工具,下面我們一起深入了解這些方法。

方法1:使用命令提示字元

CMD(又稱命令提示字元)是微軟 Windows 系統的預設命令列解釋器,它幫助 Windows 使用者完成很多事情,如管理磁碟和分割區,以及Windows 11金鑰查詢。

1.在 Windows 11 上,按下「Windows + S」或選擇搜尋框以啟動 Windows 搜尋。

2.在搜尋框中輸入「cmd」。右擊命令提示字元,選擇「以系統管理員身份執行」。

3.輸入以下命令並按下「ENTER」鍵。

wmic path SoftwareLicensingService get OA3xOriginalProductKey

4.然後,Windows 11 產品金鑰將顯示在下一行的許可證號碼。

product key cmd

方法2:使用VBScript

VBScript 是由微軟開發的一種基於 Visual Basic 的 Active Scripting 語言,它支援 Microsoft Windows 系統管理員生成強大的工具來管理個人電腦。下面我們將學習使用這個工具來定位Windows 11 的產品金鑰。

1.在桌面的搜尋框中,輸入「記事本」。

2.在「最佳匹配」下,右鍵點擊「記事本」並選擇「以系統管理員身份執行」。

3.將以下代碼復制到記事本中:

Option Explicit

Dim objshell,path,DigitalID, Result

Set objshell = CreateObject("WScript.Shell")

'Set registry key path

Path = "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion"

'Registry key value

DigitalID = objshell.RegRead(Path & "DigitalProductId")

Dim ProductName,ProductID,ProductKey,ProductData

'Get ProductName, ProductID, ProductKey

ProductName = "Product Name: " & objshell.RegRead(Path & "ProductName")

ProductID = "Product ID: " & objshell.RegRead(Path & "ProductID")

ProductKey = "Installed Key: " & ConvertToKey(DigitalID)

ProductData = ProductName & vbNewLine & ProductID & vbNewLine & ProductKey

'Show messbox if save to a file

If vbYes = MsgBox(ProductData & vblf & vblf & "Save to a file?", vbYesNo + vbQuestion, "BackUp Windows Key Information") then

Save ProductData

End If

'Convert binary to chars

Function ConvertToKey(Key)

Const KeyOffset = 52

Dim isWin8, Maps, i, j, Current, KeyOutput, Last, keypart1, insert

'Check if OS is Windows 8

isWin8 = (Key(66) \ 6) And 1

Key(66) = (Key(66) And &HF7) Or ((isWin8 And 2) * 4)

i = 24

Maps = "BCDFGHJKMPQRTVWXY2346789"

Do

Current= 0

j = 14

Do

Current = Current* 256

Current = Key(j + KeyOffset) + Current

Key(j + KeyOffset) = (Current \ 24)

Current=Current Mod 24

j = j -1

Loop While j >= 0

i = i -1

KeyOutput = Mid(Maps,Current+ 1, 1) & KeyOutput

Last = Current

Loop While i >= 0

keypart1 = Mid(KeyOutput, 2, Last)

insert = "N"

KeyOutput = Replace(KeyOutput, keypart1, keypart1 & insert, 2, 1, 0)

If Last = 0 Then KeyOutput = insert & KeyOutput

ConvertToKey = Mid(KeyOutput, 1, 5) & "-" & Mid(KeyOutput, 6, 5) & "-" & Mid(KeyOutput, 11, 5) & "-" & Mid(KeyOutput, 16, 5) & "-" & Mid(KeyOutput, 21, 5)

End Function

'Save data to a file

Function Save(Data)

Dim fso, fName, txt,objshell,UserName

Set objshell = CreateObject("wscript.shell")

'Get current user name

UserName = objshell.ExpandEnvironmentStrings("%UserName%")

'Create a text file on desktop

fName = "C:\Users" & UserName & "\Desktop\WindowsKeyInfo.txt"

Set fso = CreateObject("Scripting.FileSystemObject")

Set txt = fso.CreateTextFile(fName)

txt.Writeline Data

txt.Close

End Function

4.點擊「檔案」並選擇「另存為」。

5.將「存檔類型」設定為「所有檔案」。將編碼設定為ANSI。將檔案名稱命名為「Non-OA3-ProductKey.vbs」。建議將此檔案保存在桌面上,以便以後輕鬆訪問。最後點擊「存檔」按鈕。

6.輕按兩下桌面上的 VBS 檔案以打開它。

7.現在,您可以看到 Windows 11 的產品金鑰。點擊「」將其保存到檔案中。

方法3:使用 PowerShell

PowerShell 是一個來自微軟的任務自動化和配置管理程式,包括一個命令列 shell 和相關的腳本語言。下面教您使用 PowerShell 查找 Windows 11 的產品金鑰。

1.在搜尋框中輸入「powershell」。

2.以系統管理員身份執行 PowerShell。

3.點擊「是」繼續操作。

4.輸入以下命令列並按下「ENTER」鍵。

powershell "Get-WmiObject - query ‘select * from SoftwareLicensingService’).OA3xOriginalProductKey"

然後,金鑰將出現。

在 Windows 11 激活後輕鬆管理硬碟和分割區

在安裝並激活 Windows 11 之後,下一步要做的是管理硬碟和分割區。例如,很多人在安裝完 Windows 11 後只有一個 C 槽。這種情況下,他們必須建立其他分割區,以便將作業系統與程式分開;或者有時他們發現系統磁碟過小/過大,因此需要延伸/壓縮磁碟。

那麼,在 Windows 11 PC 上如何管理硬碟和分割區呢?AOMEI Partition Assistant Standard是一個介面簡潔、操作簡單、功能強大的磁碟管理工具,可以幫助您進行調整分割區大小、創建分割區和合併分割區等操作,只需點擊幾下即可完成。

免費下載Win 11/10/8.1/8/7/XP
安全下載

Windows 11金鑰查詢

結論

本文介紹了三種Windows金鑰查詢的詳細操作指南。現在,您可以激活 Windows 11,並享受其獨特的功能,再也沒有任何限制。同時,在文章的最後部分,推薦了 AOMEI Partition Assistant Standard。它如此多功能,幾乎可以做到關於磁碟管理的所有事情。如果您想嘗試其他功能,包括分割分割區和空間配置,您可以升級到AOMEI Partition Assistant Professional版。

Daisy
Daisy · 專業編輯
Daisy是AOMEI科技的編輯,她對磁碟分割、硬碟空間管理、數據備份和還原以及其他數據保護措施有深入的了解。她喜歡閱讀、觀賞電影和欣賞一切美麗的事物。她也樂於協助讀者解決電腦問題。