[系统教程]升级Win11 22509.1000安装失败怎么办?

  • A+
所属分类:系统教程

  就在今天,微软公司发布了最新的Windows11开发预览频道22509.1000版本,但是不少用户在更新安装的时候都出现了失败的提示,这是怎么回事呢?下面小编就带着大家一起看看怎么操作吧!

升级Win11 22509.1000安装失败怎么办?

  系统之家www.xitongzhijia.net原创,转载需注明出处。

  方法一:替换文件法。

  首先用户需要下载旧版的自动屏蔽PTM 2.0工具,并在检查更新的时候选择开启。

  下载地址:http://www.xitongzhijia.net/soft/225819.html

  下载完成后,在电脑桌面新建一个名称为【AppraiserRes. dll】文件。

升级Win11 22509.1000安装失败怎么办?

  在开始检查更新的时候,打开电脑C盘可以看到多出来两个文件夹,打开$WINDOWS.~BT\Sources

升级Win11 22509.1000安装失败怎么办?

  当自动更新到8%的时候,将桌面的【AppraiserRes. dll】文件复制到C:\$WINDOWS.~BT\Sources文件夹,即可。

升级Win11 22509.1000安装失败怎么办?

  方法二:删除文件法

  首先用户需要下载旧版的自动屏蔽PTM 2.0工具,并在检查更新的时候选择开启。

  下载地址:http://www.xitongzhijia.net/soft/225819.html

  在开始检查更新的时候,打开电脑C盘可以看到多出来两个文件夹,打开$WINDOWS.~BT\Sources

升级Win11 22509.1000安装失败怎么办?

  当自动更新到8%的时候,将C:\$WINDOWS.~BT\Sources文件夹中【AppraiserRes. dll】文件删除即可。

  方法三:

  电脑桌面新建一个文本文档,后缀名改为.cmd文件。

升级Win11 22509.1000安装失败怎么办?

  更改后,复制以下代码进入文件中并保存。

  1. 01@(set "0=%~f0"^)#) & powershell -nop -c iex([io.file]::ReadAllText(: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= {
  9. 09= 'Skip TPM Check on Dynamic Update'; =
  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= gwmi -Class __FilterToConsumerBinding -Namespace 'root\subscription' -Filter "Filter = ""__eventfilter.name=''""" -ea 0
  14. 14= gwmi -Class CommandLineEventConsumer -Namespace 'root\subscription' -Filter "Name=''" -ea 0
  15. 15= gwmi -Class __EventFilter -NameSpace 'root\subscription' -Filter "Name=''" -ea 0
  16. 16if () { | rwmi; = } ; if () { | rwmi; = } ; if () { | rwmi; = }
  17. 17if () { write-host -fore 0xf -back 0xd "`n [REMOVED] run again to install "; timeout /t 5; return }
  18. 18= "$([environment]::SystemDirectory)\cmd.exe"; = " /q (c) AveYo, 2021 /d /rerase appraiserres.dll /f /s /q"
  19. 19= "$():\`.~BT"; = "SELECT SessionID from Win32_ProcessStartTrace WHERE ProcessName='vdsldr.exe'"
  20. 20= swmi -Class __EventFilter -NameSpace 'root\subscription' -args @{
  21. 21Name = ; EventNameSpace = 'root\cimv2'; QueryLanguage = 'WQL'; Query = } -PutType 2 -ea 0
  22. 22= swmi -Class CommandLineEventConsumer -Namespace 'root\subscription' -args @{
  23. 23Name = ; WorkingDirectory = ; ExecutablePath = ; CommandLineTemplate = ; Priority = 128} -PutType 2 -ea 0
  24. 24= swmi -Class __FilterToConsumerBinding -Namespace 'root\subscription' -args @{Filter=;Consumer=} -PutType 2 -ea 0
  25. 25write-host -fore 0xf -back 0x2 "`n [INSTALLED] run again to remove "; timeout /t 5
  26. 26} ; start -verb runas powershell -args "-nop -c & {`n`n$(-replace'"','\"')}"
  27. 27#::

复制代码

@(set "0=%~f0"^)#) & powershell -nop -c iex([io.file]::ReadAllText(: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
= {
= 'Skip TPM Check on Dynamic Update'; =
$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
= gwmi -Class __FilterToConsumerBinding -Namespace 'root\subscription' -Filter "Filter = ""__eventfilter.name=''""" -ea 0
= gwmi -Class CommandLineEventConsumer -Namespace 'root\subscription' -Filter "Name=''" -ea 0
= gwmi -Class __EventFilter -NameSpace 'root\subscription' -Filter "Name=''" -ea 0
if () { | rwmi; = } ; if () { | rwmi; = } ; if () { | rwmi; = }
if () { write-host -fore 0xf -back 0xd "`n [REMOVED] run again to install "; timeout /t 5; return }
= "$([environment]::SystemDirectory)\cmd.exe"; = " /q (c) AveYo, 2021 /d /rerase appraiserres.dll /f /s /q"
= "$():\`.~BT"; = "SELECT SessionID from Win32_ProcessStartTrace WHERE ProcessName='vdsldr.exe'"
= swmi -Class __EventFilter -NameSpace 'root\subscription' -args @{
Name = ; EventNameSpace = 'root\cimv2'; QueryLanguage = 'WQL'; Query = } -PutType 2 -ea 0
= swmi -Class CommandLineEventConsumer -Namespace 'root\subscription' -args @{
Name = ; WorkingDirectory = ; ExecutablePath = ; CommandLineTemplate = ; Priority = 128} -PutType 2 -ea 0
= swmi -Class __FilterToConsumerBinding -Namespace 'root\subscription' -args @{Filter=;Consumer=} -PutType 2 -ea 0
write-host -fore 0xf -back 0x2 "`n [INSTALLED] run again to remove "; timeout /t 5
} ; start -verb runas powershell -args "-nop -c & {`n`n$(-replace'"','\"')}"
#::
希望本文对遇到此故障的朋友有所帮助,如有需要可以在下方留言,进行互动,或者留下您的联系方式,方便沟通交流。欢迎大家分享经典维修案例,软件使用教程技巧等,投稿邮箱:smailmeng2018@163.com.斯维智能科技@恩腾技术圈 WWW.RVIBO.COM.

  • 扫一扫关注抖音
  • weinxin
  • 扫一扫关注我们
  • weinxin
Tips:由于近期添加小编微信,进行咨询的朋友越来越多,为了方便日后的管理与沟通,烦请朋友们在扫码添加微信或QQ时,请按以下格式进行备注:姓名+学校名称,否则小编有权拒绝通过,感谢理解!
希沃内置电脑改造
希沃内置电脑改造

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: