系統家園 - 系統下載更安全,全網最新系統專題大全。
最新更新 系統重裝教程(一看就會視頻+圖文版)
當前位置: 首頁 > 系統教程 > win11教程

升級Win11 22509.1000安裝失敗怎么辦?

更新日期:2023-09-22 11:06:29

來源:系統之家

手機掃碼繼續觀看
升級Win11 22509.1000安裝失敗怎么辦?

  就在今天,微軟公司發布了最新的windows11開發預覽頻道22509.1000版本,但是不少用戶在更新安裝的時候都出現了失敗的提示,這是怎么回事呢?下面小編就帶著大家一起看看怎么操作吧!

升級<a href=/win11/ target=_blank class=infotextkey>win11</a> 22509.1000安裝失敗怎么辦?

  系統之家www.xitongzhijia.net原創,轉載需注明出處。

  方法一:替換文件法。

  首先用戶需要下載舊版的自動屏蔽PTM 2.0工具,并在檢查更新的時候選擇開啟。

  下載地址:https://www.xitongzhijia.net/soft/225819.html

  下載完成后,在電腦桌面新建一個名稱為【AppraiserRes. dll】文件。

升級<a href=/win11/ target=_blank class=infotextkey>win11</a> 22509.1000安裝失敗怎么辦?

  在開始檢查更新的時候,打開電腦C盤可以看到多出來兩個文件夾,打開$WINDOWS.~BT\Sources

升級<a href=/win11/ target=_blank class=infotextkey>win11</a> 22509.1000安裝失敗怎么辦?

  當自動更新到8%的時候,將桌面的【AppraiserRes. dll】文件復制到C:\$WINDOWS.~BT\Sources文件夾,即可。

升級<a href=/win11/ target=_blank class=infotextkey>win11</a> 22509.1000安裝失敗怎么辦?

  方法二:刪除文件法

  首先用戶需要下載舊版的自動屏蔽PTM 2.0工具,并在檢查更新的時候選擇開啟。

  下載地址:https://www.xitongzhijia.net/soft/225819.html

  在開始檢查更新的時候,打開電腦C盤可以看到多出來兩個文件夾,打開$WINDOWS.~BT\Sources

升級<a href=/win11/ target=_blank class=infotextkey>win11</a> 22509.1000安裝失敗怎么辦?

  當自動更新到8%的時候,將C:\$WINDOWS.~BT\Sources文件夾中【AppraiserRes. dll】文件刪除即可。

  方法三:

  電腦桌面新建一個文本文檔,后綴名改為.cmd文件。

升級<a href=/win11/ target=_blank class=infotextkey>win11</a> 22509.1000安裝失敗怎么辦?

  更改后,復制以下代碼進入文件中并保存。

  1. 01@(set "0=%~f0"^)#) & powershell -nop -c iex([io.file]::ReadAllText($env:0)) & exit/b
  2. 02#:: double-click to run or just copy-paste into powershell - it's a standalone hybrid script
  3. 03#:: v1 of the toggle script works perfectly fine for most people with a non-botched windows installation
  4. 04#:: uses a fast, fileless wmi subscription to watch for the Virtual Disk Service Loader process running during setup,
  5. 05#:: then launches a cmd erase of appraiserres.dll - that's all there is to it, no rocket science, just a great implementation
  6. 06#:: you probably don't need to have it installed at all times - just when doing feature updates or manual setup within windows
  7. 07#:: hence the on off toggle just by running the script again
  8. 08$_Paste_in_Powershell = {
  9. 09$N = 'Skip TPM Check on Dynamic Update'; $off = $false
  10. 10$0 = sp 'HKLM:\SYSTEM\Setup\MoSetup' 'AllowUpgradesWithUnsupportedTPMOrCPU' 1 -type dword -force -ea 0
  11. 11$0 = ri 'HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\vdsldr.exe' -force -ea 0
  12. 12$0 = sc.exe config Winmgmt start= demand; sp HKLM:\SOFTWARE\Microsoft\Wbem 'Enable Costly Providers' 0 -type dword -force -ea 0
  13. 13$B = gwmi -Class __FilterToConsumerBinding -Namespace 'root\subscription' -Filter "Filter = ""__eventfilter.name='$N'""" -ea 0
  14. 14$C = gwmi -Class CommandLineEventConsumer -Namespace 'root\subscription' -Filter "Name='$N'" -ea 0
  15. 15$F = gwmi -Class __EventFilter -NameSpace 'root\subscription' -Filter "Name='$N'" -ea 0
  16. 16if ($B) { $B | rwmi; $off = $true } ; if ($C) { $C | rwmi; $off = $true } ; if ($F) { $F | rwmi; $off = $true }
  17. 17if ($off) { write-host -fore 0xf -back 0xd "`n $N [REMOVED] run again to install "; timeout /t 5; return }
  18. 18$P = "$([environment]::SystemDirectory)\cmd.exe"; $T = "$P /q $N (c) AveYo, 2021 /d /rerase appraiserres.dll /f /s /q"
  19. 19$D = "$($P[0]):\`$WINDOWS.~BT"; $Q = "SELECT SessionID from Win32_ProcessStartTrace WHERE ProcessName='vdsldr.exe'"
  20. 20$F = swmi -Class __EventFilter -NameSpace 'root\subscription' -args @{
  21. 21Name = $N; EventNameSpace = 'root\cimv2'; QueryLanguage = 'WQL'; Query = $Q} -PutType 2 -ea 0
  22. 22$C = swmi -Class CommandLineEventConsumer -Namespace 'root\subscription' -args @{
  23. 23Name = $N; WorkingDirectory = $D; ExecutablePath = $P; CommandLineTemplate = $T; Priority = 128} -PutType 2 -ea 0
  24. 24$B = swmi -Class __FilterToConsumerBinding -Namespace 'root\subscription' -args @{Filter=$F;Consumer=$C} -PutType 2 -ea 0
  25. 25write-host -fore 0xf -back 0x2 "`n $N [INSTALLED] run again to remove "; timeout /t 5
  26. 26} ; start -verb runas powershell -args "-nop -c & {`n`n$($_Paste_in_Powershell-replace'"','\"')}"
  27. 27$_Press_Enter
  28. 28#::
復制代碼
@(set "0=%~f0"^)#) & powershell -nop -c iex([io.file]::ReadAllText($env:0)) & exit/b #:: double-click to run or just copy-paste into powershell - it's a standalone hybrid script #:: v1 of the toggle script works perfectly fine for most people with a non-botched windows installation #:: uses a fast, fileless wmi subscription to watch for the Virtual Disk Service Loader process running during setup, #:: then launches a cmd erase of appraiserres.dll - that's all there is to it, no rocket science, just a great implementation #:: you probably don't need to have it installed at all times - just when doing feature updates or manual setup within windows #:: hence the on off toggle just by running the script again $_Paste_in_Powershell = { $N = 'Skip TPM Check on Dynamic Update'; $off = $false $0 = sp 'HKLM:\SYSTEM\Setup\MoSetup' 'AllowUpgradesWithUnsupportedTPMOrCPU' 1 -type dword -force -ea 0 $0 = ri 'HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\vdsldr.exe' -force -ea 0 $0 = sc.exe config Winmgmt start= demand; sp HKLM:\SOFTWARE\Microsoft\Wbem 'Enable Costly Providers' 0 -type dword -force -ea 0 $B = gwmi -Class __FilterToConsumerBinding -Namespace 'root\subscription' -Filter "Filter = ""__eventfilter.name='$N'""" -ea 0 $C = gwmi -Class CommandLineEventConsumer -Namespace 'root\subscription' -Filter "Name='$N'" -ea 0 $F = gwmi -Class __EventFilter -NameSpace 'root\subscription' -Filter "Name='$N'" -ea 0 if ($B) { $B | rwmi; $off = $true } ; if ($C) { $C | rwmi; $off = $true } ; if ($F) { $F | rwmi; $off = $true } if ($off) { write-host -fore 0xf -back 0xd "`n $N [REMOVED] run again to install "; timeout /t 5; return } $P = "$([environment]::SystemDirectory)\cmd.exe"; $T = "$P /q $N (c) AveYo, 2021 /d /rerase appraiserres.dll /f /s /q" $D = "$($P[0]):\`$WINDOWS.~BT"; $Q = "SELECT SessionID from Win32_ProcessStartTrace WHERE ProcessName='vdsldr.exe'" $F = swmi -Class __EventFilter -NameSpace 'root\subscription' -args @{ Name = $N; EventNameSpace = 'root\cimv2'; QueryLanguage = 'WQL'; Query = $Q} -PutType 2 -ea 0 $C = swmi -Class CommandLineEventConsumer -Namespace 'root\subscription' -args @{ Name = $N; WorkingDirectory = $D; ExecutablePath = $P; CommandLineTemplate = $T; Priority = 128} -PutType 2 -ea 0 $B = swmi -Class __FilterToConsumerBinding -Namespace 'root\subscription' -args @{Filter=$F;Consumer=$C} -PutType 2 -ea 0 write-host -fore 0xf -back 0x2 "`n $N [INSTALLED] run again to remove "; timeout /t 5 } ; start -verb runas powershell -args "-nop -c & {`n`n$($_Paste_in_Powershell-replace'"','\"')}" $_Press_Enter #::
該文章是否有幫助到您?
  • 回到
    頂部
  • 在線客服幫你解決所有電腦問題

    掃一掃關注系統家園微信公眾號

主站蜘蛛池模板: 国内精品久久久久久无码不卡| 亚洲精品无码MV在线观看| 国产午夜无码福利在线看网站| 国精品无码一区二区三区左线| 蜜桃臀无码内射一区二区三区| 免费无码国产V片在线观看| 东京热人妻无码一区二区av| 亚洲成a人无码亚洲成www牛牛| 少妇无码太爽了不卡视频在线看 | 一区二区三区人妻无码 | 亚洲欧洲免费无码| 成人免费无码H在线观看不卡| 亚洲AV无码成人精品区日韩| 亚洲av无码乱码国产精品| 色综合AV综合无码综合网站| 少妇极品熟妇人妻无码| 无码视频一区二区三区在线观看| 国产精品JIZZ在线观看无码| 中文有码无码人妻在线| 无码无遮挡又大又爽又黄的视频| 日韩av无码中文无码电影| 精品无码久久久久久久久水蜜桃 | 无码人妻丝袜在线视频| 国产AV一区二区三区无码野战| 无码人妻精品一区二区蜜桃百度| 亚洲乱人伦中文字幕无码| 无码日韩精品一区二区免费暖暖| 亚洲综合av永久无码精品一区二区 | 人妻少妇精品无码专区二区 | 国产一区二区三区无码免费 | 无码人妻精品一区二区三区99仓本 | 国产福利无码一区在线| 亚洲av无码专区在线观看亚| 亚洲中文字幕在线无码一区二区| 无码人妻精品一区二区三区在线| 少妇人妻偷人精品无码视频| 日韩人妻无码一区二区三区久久| 亚洲av日韩av无码| 无码乱码av天堂一区二区| 亚洲熟妇无码一区二区三区导航| 亚洲国产精品无码第一区二区三区|