這適用於想要執行手動啟動的使用者。如果需要協助, 為您執行此操作的工具,然後檢查此處。
我們可以將手動啟動過程分為兩部分。
1-從現成的批次檔
- #確保已啟用網路。
- 以管理員身分開啟 Windows Powershell,然後輸入以下內容 依照給予指令的順序列出指令。
- 輸入金鑰,(替換為金鑰從上面的清單)使用以下指令
<key></key>
slmgr /ipk < ;key>
- 從這裡下載通用門票並提取下載的檔案。
- 現在在Powershell中輸入以下程式碼
##(Get-ItemProperty HKLM:\SYSTEM\CurrentControlSet\Control\ProductOptions).OSProductPfn
- #此命令將向您顯示一些文本,例如
- Microsoft.Windows.48.X19-98841_8wekyb3d8bbwe
- 複製該票證檔案並將其貼上到以下資料夾中
C:\ProgramData\Microsoft\Windows\ClipSVC\GenuineTicket
##現在在Powershell中執行以下命令以應用票證
-
完成
-
2-從頭開始
在此過程中,我們將從頭開始執行啟動。這是 基於通用票證方法。在這裡,我們將創建相同的票證 在MAS HWID腳本中使用並使用它來啟動系統。
從下面的官方MS鏈接下載檔案並解壓縮 .cab檔。 - https://download.microsoft.com/download/9/A/E/9AE69DD5-BA93-44E0-864E-180F5E700AB4/adk/Installers/14f4df8a2a7fc82a4f415cf6a341415f4df8a2a7fc82a4f415cf6a341415f#d.其重新命名為 filf8377e82b29deadca67bc4858ed3fba9
- gatherosstate.exe
-
##建立一個以C盤命名的資料夾,並複製檔案在該資料夾中。
Files
gatherosstate.exe
- 確保已啟用網路。
以管理員身分開啟 Windows Powershell,然後輸入以下內容 依照給予指令的順序列出指令。
輸入金鑰,(替換為金鑰從上面的清單)使用以下指令
- 一次複製以下程式碼並將其輸入到PowerShell中以進行修改該檔案。此程式碼修改檔案是 基於GamersOsState。
- gatherosstate.exe
$bytes= [System.IO.File]::ReadAllBytes("C:\Files\gatherosstate.exe")$bytes[320] = 0xf8$bytes[321] = 0xfb$bytes[322] = 0x05$bytes[324] = 0x03$bytes[13672] = 0x25$bytes[13674] = 0x73$bytes[13676] = 0x3b$bytes[13678] = 0x00$bytes[13680] = 0x00$bytes[13682] = 0x00$bytes[13684] = 0x00$bytes[32748] = 0xe9$bytes[32749] = 0x9e$bytes[32750] = 0x00$bytes[32751] = 0x00$bytes[32752] = 0x00$bytes[32894] = 0x8b$bytes[32895] = 0x44$bytes[32897] = 0x64$bytes[32898] = 0x85$bytes[32899] = 0xc0$bytes[32900] = 0x0f$bytes[32901] = 0x85$bytes[32902] = 0x1c$bytes[32903] = 0x02$bytes[32904] = 0x00$bytes[32906] = 0xe9$bytes[32907] = 0x3c$bytes[32908] = 0x01$bytes[32909] = 0x00$bytes[32910] = 0x00$bytes[32911] = 0x85$bytes[32912] = 0xdb$bytes[32913] = 0x75$bytes[32914] = 0xeb$bytes[32915] = 0xe9$bytes[32916] = 0x69$bytes[32917] = 0xff$bytes[32918] = 0xff$bytes[32919] = 0xff$bytes[33094] = 0xe9$bytes[33095] = 0x80$bytes[33096] = 0x00$bytes[33097] = 0x00$bytes[33098] = 0x00$bytes[33449] = 0x64$bytes[33576] = 0x8d$bytes[33577] = 0x54$bytes[33579] = 0x24$bytes[33580] = 0xe9$bytes[33581] = 0x55$bytes[33582] = 0x01$bytes[33583] = 0x00$bytes[33584] = 0x00$bytes[33978] = 0xc3$bytes[34189] = 0x59$bytes[34190] = 0xeb$bytes[34191] = 0x28$bytes[34238] = 0xe9$bytes[34239] = 0x4f$bytes[34240] = 0x00$bytes[34241] = 0x00$bytes[34242] = 0x00$bytes[34346] = 0x24$bytes[34376] = 0xeb$bytes[34377] = 0x63[System.IO.File]::WriteAllBytes("C:\Files\gatherosstatemodified.exe", $bytes)
現在右鍵單擊該檔案並前往屬性,並將相容性設為Windows XP SP3。 gatherosstatemodified.exe
- 現在我們需要產生票證,為此,輸入以下內容 指令。
$value = (Get-ItemProperty HKLM:\SYSTEM\CurrentControlSet\Control\ProductOptions).OSProductPfnC:\Files\gatherosstatemodified.exe /c Pfn=$value`;PKeyIID=465145217131314304264339481117862266242033457260311819664735280
現在應該在資料夾中建立一個 GenuineTicket.xml 文件,讓我們應用它。 C:\Files\
- clipup -v -o -altto C:\Files\
使用下列指令啟動視窗
- slmgr /ato
#使用下列指令檢查啟動狀態
- ##slmgr /xpr
-
完成
筆記:
#########如果系統已經激活,那麼建立的票證將是一個密碼箱票證,如果不是,那麼它將是下層票證。 ######要製作 MAS HWID 腳本中使用的確切票證,請確保 系統已激活,並使用以下電源外殼修復時間 命令,然後按照上述方式啟動票證生成過程 提到的步驟。 ######Set-TimeZone -Id "UTC"; $date=[datetime]"2022/10/11 12:00";while($true){set-date $date; start-sleep -milliseconds 10 }################以上是HWID V 2.2手動啟動的方法和教程的詳細內容。更多資訊請關注PHP中文網其他相關文章!

熱AI工具

Undresser.AI Undress
人工智慧驅動的應用程序,用於創建逼真的裸體照片

AI Clothes Remover
用於從照片中去除衣服的線上人工智慧工具。

Undress AI Tool
免費脫衣圖片

Clothoff.io
AI脫衣器

Video Face Swap
使用我們完全免費的人工智慧換臉工具,輕鬆在任何影片中換臉!

熱門文章

熱工具

Dreamweaver CS6
視覺化網頁開發工具

SublimeText3 英文版
推薦:為Win版本,支援程式碼提示!

mPDF
mPDF是一個PHP庫,可以從UTF-8編碼的HTML產生PDF檔案。原作者Ian Back編寫mPDF以從他的網站上「即時」輸出PDF文件,並處理不同的語言。與原始腳本如HTML2FPDF相比,它的速度較慢,並且在使用Unicode字體時產生的檔案較大,但支援CSS樣式等,並進行了大量增強。支援幾乎所有語言,包括RTL(阿拉伯語和希伯來語)和CJK(中日韓)。支援嵌套的區塊級元素(如P、DIV),

EditPlus 中文破解版
體積小,語法高亮,不支援程式碼提示功能

SAP NetWeaver Server Adapter for Eclipse
將Eclipse與SAP NetWeaver應用伺服器整合。