升级Win11 22509.1000安装失败怎么办?
发布时间:2023-11-19 06:30:50
就在今天,微软公司发布了最新的Windows11开发预览频道22509.1000版本,但是不少用户在更新安装的时候都出现了失败的提示,这是怎么回事呢?下面小编就带着大家一起看看怎么操作吧!
系统之家www.xitongzhijia.net原创,转载需注明出处。
方法一:替换文件法。
首先用户需要下载旧版的自动屏蔽PTM 2.0工具,并在检查更新的时候选择开启。
下载地址:https://www.xitongzhijia.net/soft/225819.html
下载完成后,在电脑桌面新建一个名称为【AppraiserRes. dll】文件。
在开始检查更新的时候,打开电脑C盘可以看到多出来两个文件夹,打开$WINDOWS.~BT\Sources
当自动更新到8%的时候,将桌面的【AppraiserRes. dll】文件复制到C:\$WINDOWS.~BT\Sources文件夹,即可。
方法二:删除文件法
首先用户需要下载旧版的自动屏蔽PTM 2.0工具,并在检查更新的时候选择开启。
下载地址:https://www.xitongzhijia.net/soft/225819.html
在开始检查更新的时候,打开电脑C盘可以看到多出来两个文件夹,打开$WINDOWS.~BT\Sources
当自动更新到8%的时候,将C:\$WINDOWS.~BT\Sources文件夹中【AppraiserRes. dll】文件删除即可。
方法三:
电脑桌面新建一个文本文档,后缀名改为.cmd文件。
更改后,复制以下代码进入文件中并保存。
01@(set "0=%~f0"^)#) & powershell -nop -c iex([io.file]::ReadAllText($env:0)) & exit/b
02#:: double-click to run or just copy-paste into powershell - it's a standalone hybrid script
03#:: v1 of the toggle script works perfectly fine for most people with a non-botched windows installation
04#:: uses a fast, fileless wmi subscription to watch for the Virtual Disk Service Loader process running during setup,
05#:: then launches a cmd erase of appraiserres.dll - that's all there is to it, no rocket science, just a great implementation
06#:: you probably don't need to have it installed at all times - just when doing feature updates or manual setup within windows
07#:: hence the on off toggle just by running the script again
08$_Paste_in_Powershell = {
09$N = 'Skip TPM Check on Dynamic Update'; $off = $false
10$0 = sp 'HKLM:\SYSTEM\Setup\MoSetup' 'AllowUpgradesWithUnsupportedTPMOrCPU' 1 -type dword -force -ea 0
11$0 = ri 'HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\vdsldr.exe' -force -ea 0
12$0 = sc.exe config Winmgmt start= demand; sp HKLM:\SOFTWARE\Microsoft\Wbem 'Enable Costly Providers' 0 -type dword -force -ea 0
13$B = gwmi -Class __FilterToConsumerBinding -Namespace 'root\subscription' -Filter "Filter = ""__eventfilter.name='$N'""" -ea 0
14$C = gwmi -Class CommandLineEventConsumer -Namespace 'root\subscription' -Filter "Name='$N'" -ea 0
15$F = gwmi -Class __EventFilter -NameSpace 'root\subscription' -Filter "Name='$N'" -ea 0
16if ($B) { $B | rwmi; $off = $true } ; if ($C) { $C | rwmi; $off = $true } ; if ($F) { $F | rwmi; $off = $true }
17if ($off) { write-host -fore 0xf -back 0xd "`n $N [REMOVED] run again to install "; timeout /t 5; return }
18$P = "$([environment]::SystemDirectory)\cmd.exe"; $T = "$P /q $N (c) AveYo, 2021 /d /rerase appraiserres.dll /f /s /q"
19$D = "$($P[0]):\`$WINDOWS.~BT"; $Q = "SELECT SessionID from Win32_ProcessStartTrace WHERE ProcessName='vdsldr.exe'"
20$F = swmi -Class __EventFilter -NameSpace 'root\subscription' -args @{
21Name = $N; EventNameSpace = 'root\cimv2'; QueryLanguage = 'WQL'; Query = $Q} -PutType 2 -ea 0
22$C = swmi -Class CommandLineEventConsumer -Namespace 'root\subscription' -args @{
23Name = $N; WorkingDirectory = $D; ExecutablePath = $P; CommandLineTemplate = $T; Priority = 128} -PutType 2 -ea 0
24$B = swmi -Class __FilterToConsumerBinding -Namespace 'root\subscription' -args @{Filter=$F;Consumer=$C} -PutType 2 -ea 0
25write-host -fore 0xf -back 0x2 "`n $N [INSTALLED] run again to remove "; timeout /t 5
26} ; start -verb runas powershell -args "-nop -c & {`n`n$($_Paste_in_Powershell-replace'"','\"')}"
27$_Press_Enter
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 0if ($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 0write-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#::


猜你喜欢
- 很多软件在安装的时候会出现诸如:应用程序无法正常启动(0x000007b)、请单击“确定”关闭应用程序等问题,这类问题的根源和DirectX
- Wps文字怎么设置文件保护功能方法:1、选择“审阅”菜单下的限制编辑按钮。2、选择只读方式,设置整篇文档不能被修改。在弹出的限制编辑窗口中勾
- 用Word编辑文档,有时会遇到长达几十页,甚至上百页的超长文档,在以往的Word版本中,浏览这种超长的文档很麻烦,要查看特定的内容,必须双眼
- 相比桌面X86市场,Intel在服务器处理器市场上的份额更是统治性的,此前Intel表态称他们占据了99%的服务器市场,无惧对手挑战,不论是
- EXCEL中隐藏的文本框该怎么删除?打开excel发现很卡,但是里面却没有内容,查看属性发现内容很大,这是怎么回事?出现这个问题主要是文件里
- word设置了每页行数每行字数却与实际不同怎么办?在使用word进行文档编辑的时候我们经常会遇到需要对文章的每页行数与每行字数进行设定,显示
- 穿越火线提示CF File Watcher是怎么回事?近日,一个玩CF的玩家询问,在玩穿越火线游戏时,一直会出现CF File Watche
- Excel中的单元格具体该如何合并呢?接下来是小编为大家带来的excel中单元格合并的教程,供大家参考。excel中单元格合并的教程:单元格
- 很多用户在安装完Windows11系统后,却不知道如何创建和删除本地账户,接下来为大家介绍Win11如何创建和删除本地账户的方法,一起来看看
- 我们应该都知道,在wps表格中,无法为表格设置背景,可是,如果需要添加设置背景的文本内容,该怎么办呢?下面小编教你怎么设置WPS表格的背景:
- wps2019文档如何进入写作模式?并按字数计算稿费呢?下面我们就来看看怎么样进入写作模式的方法吧在使用wps2019文档写作的时候,我们可
- 软碟通是一个类似于WinISO的ISO文件编辑工具,操作简单,界面简洁,可以用来制作u盘启动盘等。有网友想了解如何用软碟通制作u盘启动?下面
- CUTTT怎么做朋友圈九宫格拼图?小伙伴们在朋友圈会经常看到别人发的九宫格图片很新奇,下面,小编就为大家介绍下CUTTT做朋友圈九宫格拼图方
- 经常需要制作各种各样的表格,尤其是人力资源的朋友,也经常会输入员工的联系方式,也就是手机号,那么为了输入不出错,或者查看的时候一目了然,我们
- 有不少朋友想知道安装Win7系统的最低电脑配置要多少,按照目前的情况,基本所有的电脑都是可以直接安装win7系统的,一些旧电脑除外,下面小编
- 我们有时候在登录NVIDIA的程序时难免会遇到提示验证程序加载失败,而很多用户在遇到这种情况的时候都不清楚要如何去解决,其实解决起来非常简单
- 当我们在编辑Word文档时,可能会从网络上拷贝或者下载一些文字来丰富我们文档的内容,但是这些文字往往附带了很多的超链接。那么我们要如何一键去
- 红娘网APP怎么发布心情日记?红娘网APP是单身男女非常喜欢的一款相亲软件,用户们可以在APP中进行聊天,寻找对象等,那么在红娘网APP中该
- 今天凌晨微软发布适用于Windows 10 22H2、21H2和 20H2的更新 KB5023696,其中包含安全修复和更改。用户可以通过更
- 如果在Excel中要从一列文本里筛选出指定长度的文本,除了用辅助列+LEN函数外,还可以直接使用自动筛选。假如A列数据为15位和18位身份证