KB5043239: עדכון דינאמי של מערכת ההפעלה הבטוחה עבור Windows Server, גרסה 23H2: 10 בספטמבר 2024

חל על
Windows Server, version 23H2

Summary

עדכון זה מבצע שיפורים בסביבת השחזור של Windows ב- Windows Server, גירסה 23H2.

כיצד לקבל עדכון זה

התקנת עדכון זה

כדי להתקין עדכון זה, השתמש באחד מערוצי ההפצה הבאים.


זמין השלב הבא
כן עדכון זה זמין באמצעות Windows Update. ההורדה וההתקנה יתבצעו באופן אוטומטי.
דרישות מוקדמות אין דרישות מוקדמות להחלת עדכון זה.
פרטי הפעלה מחדש אין צורך לבצע הפעלה מחדש של המכשיר לאחר החלת העדכון.
מידע על הסרה לא ניתן להסיר עדכון זה לאחר החלתו על תמונה של Windows.
מידע על החלפת עדכון עדכון זה מחליף את העדכון הקודם שהופץ KB5041593.
אמת את התקנת עדכון זה לאחר התקנת עדכון זה, הגירסה של WinRE המותקנת במכשיר אמורה להיות 10.0.25398.1121.
שיטות לאימות הגירסה המותקנת של WinRE

הפעל את קובץ ה- Script הבא של PowerShell: ‏"GetWinReVersion.ps1" עם אישורי מנהל מערכת. לאחר הפעלת קובץ ה- Script, אתה אמור לקבל את הגירסה המותקנת של סביבת השחזור של Windows, כמו בדוגמה הבאה:

צילום מסך של GetWinREVersion

קובץ Script של Windows PowerShell: ‏GetWinReVersion.ps1


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

#

# 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

מילות שאילתה: safeos du