套用到
Windows 10 Enterprise LTSC 2021 Windows 10 ESU

Windows 10 將於 2025 年 10 月終止支援

2025 年 10 月 14 日之後,Microsoft 將不再提供 Windows Update、技術協助或 Windows 10 安全性問題修正的免費軟體更新。 您的電腦仍可運作,但我們建議您移至 Windows 11。

深入了解

Windows 安全開機憑證到期 

重要: 大部分 Windows 裝置使用的安全開機憑證設定為從 2026 年 6 月開始到期。 如果未及時更新,這可能會影響某些個人和商務裝置安全開機的能力。 為避免中斷,建議您檢閱指導方針,並採取行動事先更新憑證。  

如需 Windows 裝置的詳細資料和準備步驟,請參閱 Windows 安全開機憑證到期和 CA 更新

如需 Windows 伺服器的詳細資料與準備步驟,請參閱以下資源:

重要 若您的 Windows 復原環境 (WinRE) 符合以下任何條件,則不會提供此更新:

  • 如果 WinRE 復原分割區沒有足夠的空間,請參考「摘要」區塊中的 備註 。 說明中提供了如何增加 WinRE 復原分割區可用空間的說明。

  • 如果 WinRE 修復磁碟分割已使用 將更新套件新增至 Windows RE 中的程序手動更新,且已更新到最新狀態。

  • 如果 WinRE 映像檔的版本大於或等於 版本 10.0.19041.6807, 要確定你的 WinRE 映像版本,請參閱「驗證已安裝 WinRE 版本的方法」章節。

  • 如果您執行的電腦沒有 WinRE 修復磁碟分割。 若要確認您是否已啟用 WinRE,請在提升權限的命令提示字元中執行下列命令: reagentc /info。 如果已啟用 WinRE,您會在輸出中看到 Windows RE 狀態,並顯示 [已啟用] 值。 在此案例中,可能需要進行此更新。

變更日期

變更描述

2026年3月3日

在上一次更新KB5068164新增了已知問題的解決方案

摘要

此更新會自動將安全作業系統動態更新 (KB5073933) 套用於運行中的電腦上的 Windows 復原環境 (WinRE) 。 這次更新安裝了 Windows 復原功能的改進。

以下是安裝更新後,這個更新會解決的已知問題摘要。

  • [Windows 復原環境 (WinRE) ] 已修復:安裝 2025 年 10 月 14 日更新 KB5068164後,WinRE 無法啟動。

注意事項 此更新需要修復磁碟分割區中有 250 MB 的可用空間才可成功安裝。

如果您想確保裝置能獲得此更新,請依照說明手動調整分割區大小 ,或使用 範例腳本 擴大 WinRE 復原分割區大小。

當磁碟分割有足夠的磁碟空間後,請點擊 [開始] > [設定] > [Windows Update] > [檢查是否有更新] 以獲取更新,然後再進行安裝。

如何取得此更新

此更新可透過下列發行版本通道取得。

發行管道

可供使用

Windows Update

Microsoft Update Catalog

Windows Server Update Services (WSUS) 和 Microsoft Endpoint 設定管理員。

必要條件

電腦必須在修復磁碟分割區中有 250 MB 的可用空間,才可成功套用此更新。

重新啟動資訊

套用此更新之後,您不需要重新啟動裝置。

移除資訊

此更新套用至 Windows 映像後,即無法移除。

更新取代資訊

此更新取代先前發布的更新 KB5068164

確認此更新的安裝

安裝此更新後,裝置上安裝的 WinRE 版本應大於或等於 版本 10.0.19041.6807

請使用系統管理員認證執行下列 PowerShell 指令碼 "GetWinReVersion.ps1"。 執行指令碼後,您應該會收到已安裝的 WinRE 版本,如下列範例所示:

GetWinReVersion.ps1 PowerShell 指令碼

################################################################################################

#

# Copyright (c) Microsoft Corporation.

# Licensed under the MIT License.

#

# THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR

# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,

# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE

# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER

# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,

# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE

# SOFTWARE.

#

################################################################################################
# Function to get WinRE path

function GetWinREPath {

    $WinRELocation = (reagentc /info | Select-String "Windows RE location")

    if ($WinRELocation) {

        return $WinRELocation.ToString().Split(':')[-1].Trim()

    } else {

        Write-Host "Failed to find WinRE path" -ForegroundColor Red

        exit 1

    }

}

 
# Creates and needs to be return the mount directory
function GetMountDir {
    # systemdirve\mnt
    $MountDir = "$env:SystemDrive\mnt"
    if (-not (Test-Path $MountDir)) {
        New-Item -ItemType Directory -Path $MountDir -Force | Out-Null
    }
    return $MountDir
}  

# Function to get WinRE version
function GetWinREVersion {

    $mountedPath = GetMountDir
    $filePath = "$mountedPath\Windows\System32\winpeshl.exe"

    $WinREVersion = (Get-Item $filePath).VersionInfo.FileVersionRaw.Revision

    return [int]$WinREVersion

}


# Main Execution

$WinREPath = GetWinREPath


# Make dir C:\mnt if not exists

$TempDir = GetMountDir


# Get the read write permission for this directory

if (-not (Test-Path $TempDir)) {

    New-Item -ItemType Directory -Path $TempDir -Force | Out-Null

}


# Mount WinRE image

dism /Mount-Image /ImageFile:"$WinREPath\winre.wim" /Index:1 /MountDir:"$TempDir"


$WinREVersion = GetWinREVersion

Write-Host "WinRE Version: $WinREVersion" -ForegroundColor Cyan

dism /Unmount-Image /MountDir:"$TempDir" /Discard

Remove-Item -Path $TempDir -Force -Recurse

參考

描述 Microsoft 軟體更新所使用的標準術語說明

需要更多協助嗎?

想要其他選項嗎?

探索訂閱權益、瀏覽訓練課程、瞭解如何保護您的裝置等等。