升级Win11 22509.1000安装失败如何是好?

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

升级Win11 22509.1000安装失败如何办?

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

  教程一:替换文件法。

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

  下载地址:https://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工具,并在检查更新的时候选择开启。

  下载地址:https://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($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
#::

  之后,以管理员的身份运行.cmd文件。

升级Win11 22509.1000安装失败如何办?

  运行结束后,点击检查更新。

  然后再电脑桌面新建一个空白的【AppraiserRes.dll】文件。

升级Win11 22509.1000安装失败如何办?

  等待更新到8%时,电脑C盘将会多出两个文件夹。

升级Win11 22509.1000安装失败如何办?

  迅速打开C:\$WINDOWS.~BT\Sources并将【AppraiserRes.dll】文件复制到该目录即可。

返回神马指导员首页>>

转载出处标题:升级Win11 22509.1000安装失败如何是好?

网站链接:https://www.smzdy.com/win11course/2818.html

免责声明:根据《计算机软件保护条例》第十七条规定“为了学习和研究软件内含的设计思想和原理,通过安装、显示、传输或者存储软件等方式使用软件的,可以不经软件著作权人许可,不向其支付报酬。”
本站所发布的一切Windows教程,教程文章,破解补丁、注册机和注册信息及软件的文章等图文资源仅限用于学习和研究目的;本站并不贩卖软件,不存在任何商业目的及用途,网站会员捐赠是您喜欢本站而产生的赞助支持行为,仅为维持服务器的开支与维护,全凭自愿无任何强求。你不得将上述内容用于商业或者非法用途,否则,一切后果请用户自负。
本站信息来自网络,不承担任何由于内容的版权、合法性等所引起的争议与法律责任!您必须在下载后的24个小时之内,从您的电脑中彻底删除上述内容。访问和下载本站内容,说明您已同意上述条款。
本站为个人博客非盈利性站点,所有软件信息均来自网络,所有资源仅供学习参考研究目的。如您喜欢该程序,请支持正版软件,购买注册,得到更好的正版服务。本站如果侵犯你的利益,携带权利证明请发送邮箱到 s7web888#gmail.com,我们会很快的为您处理。

发表回复

登录后才能评论