Win10系统之家 - 专注分享最好用的电脑系统

当前位置: Win10系统之家 >  系统教程 >  win7系统教程 >  w7更新补丁批量删除的方法

w7更新补丁批量删除的方法 Windows 7更新补丁批量删除教程

更新时间:2024-03-24 17:32:05作者:yang

  Windows 7更新补丁批量删除方法是许多用户在管理系统更新时常用的技巧之一,在日常使用电脑的过程中,我们经常会遇到一些更新补丁安装后导致系统出现问题的情况,此时就需要批量删除这些更新来解决。通过学习和掌握这一技巧,可以更有效地管理系统更新,提高系统稳定性和性能。接下来我们将详细介绍Windows 7更新补丁批量删除的教程,帮助大家更好地操作和维护自己的电脑系统。


具体方法如下:

1、在e盘,新建记事本,把以下代码复制其中,然后保存为文件名为a.ps1。

$KBID = "KB958488"

$KBID1 = "KB976902"

cls

function Remove-Update {

$HotFixes = Get-HotFix

[int]$count = 0;

foreach ($HotFix in $HotFixes)

{

$count = $count + 1

Write-Host $count / $HotFixes.Count

if (($KBID -ne $HotFix.HotfixId) -and ($KBID1 -ne $HotFix.HotfixId))

{

"Inside first if"

$KBID = $HotFix.HotfixId.Replace("KB", "")

$RemovalCommand = "wusa.exe /uninstall /kb:$KBID /quiet /norestart"

Write-Host "Removing $KBID from the target."

Invoke-Expression $RemovalCommand

}

if ($KBID -match "All")

{

$KBNumber = $HotFix.HotfixId.Replace("KB", "")

$RemovalCommand = "wusa.exe /uninstall /kb:$KBNumber /quiet /norestart"

Write-Host "Removing update $KBNumber from the target."

Invoke-Expression $RemovalCommand

}

if ($KBID -match "Security")

{

if ($HotFix.Description -match "Security")

{

$KBSecurity = $HotFix.HotfixId.Replace("KB", "")

$RemovalCommand = "wusa.exe /uninstall /kb:$KBSecurity /quiet /norestart"

Write-Host "Removing Security Update $KBSecurity from the target."

Invoke-Expression $RemovalCommand

}

}

while (@(Get-Process wusa -ErrorAction SilentlyContinue).Count -ne 0)

{

Start-Sleep 3

Write-Host "Waiting for update removal to finish ..."

}

}

}

Remove-Update

w7更新补丁批量删除的方法 Windows 7更新补丁批量删除教程

w7更新补丁批量删除的方法 Windows 7更新补丁批量删除教程

2、点开开始-找到搜索-输入cmd-右键选择管理员打开。

w7更新补丁批量删除的方法 Windows 7更新补丁批量删除教程

3、输入PowerShell ,然后回车。

w7更新补丁批量删除的方法 Windows 7更新补丁批量删除教程

4、输入Set-ExecutionPolicy RemoteSigned ,然后回车。

w7更新补丁批量删除的方法 Windows 7更新补丁批量删除教程

5、输入E:a.ps1,然后回车。

w7更新补丁批量删除的方法 Windows 7更新补丁批量删除教程

6、以上代码的核心思想:windows 的"wusa.exe"和ps1批处理文件,全部步骤操作完,最后重启电脑即可,因为补丁的配置,所以关机和开机都要挺久的。请不要断电,直到电脑回到系统桌面。


  以上就是w7更新补丁批量删除的方法的全部内容,还有不懂得用户就可以根据小编的方法来操作吧,希望能够帮助到大家。