חל עלWindows Server, version 23H2

סיכום

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

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

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

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

זמין

השלב הבא

כן

עדכון זה זמין באמצעות Windows Update. ההורדה וההתקנה יתבצעו באופן אוטומטי.

דרישות מוקדמות

אין דרישות מוקדמות להחלת עדכון זה.

מידע אודות הפעלה מחדש

אין צורך להפעיל מחדש את המכשיר לאחר החלת עדכון זה.

מידע על הסרה

אין אפשרות להסיר עדכון זה לאחר החלתו על תמונת Windows. 

מידע על החלפת עדכון

עדכון זה מחליף את עדכון העדכון הקודם KB5041593.

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

לאחר התקנת עדכון זה, גירסת WinRE המותקנת במכשיר צריכה להיות 10.0.25398.1121.

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

קובץ 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

זקוק לעזרה נוספת?

מעוניין באפשרויות נוספות?

גלה את יתרונות המנוי, עיין בקורסי הדרכה, למד כיצד לאבטח את המכשיר שלך ועוד.