적용 대상
Windows Server, version 23H2

요약​​

이 업데이트는 Windows Server 버전 23H2의 Windows 복구 환경을 개선합니다.

이 업데이트를 받는 방법

이 업데이트 설치

이 업데이트를 설치하려면 다음 릴리스 채널 중 하나를 사용하세요.

사용 가능

다음 단계

이 업데이트는 Windows 업데이트를 통해 제공됩니다. 이 업데이트는 자동으로 다운로드되고 설치됩니다.

사전 요건

이 업데이트를 적용하기 위한 전제 조건은 없습니다.

다시 시작 정보

이 업데이트를 적용한 후에 컴퓨터를 다시 시작할 필요가 없습니다.

제거 정보

이 업데이트는 Windows 이미지에 적용되면 제거할 수 없습니다. 

업데이트 대체 정보

이 업데이트는 이전에 릴리스된 업데이트 KB5041593 대체합니다.

이 업데이트 설치 확인

이 업데이트를 설치한 후 디바이스에 설치된 WinRE 버전은 10.0.25398.1121이어야 합니다.

설치된 Windows 복구 환경 버전을 확인하려면 관리자 자격 증명을 사용하여 PowerShell 스크립트 "GetWinReVersion.ps1"을 실행하세요. 스크립트를 실행한 후 다음 예와 같이 설치된 Windows 복구 환경 버전을 확인할 수 있습니다.

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 소프트웨어 업데이트를 설명하는 데 사용되는 표준 용어에 대한 설명

쿼리 단어: safeos du

도움이 더 필요하세요?

더 많은 옵션을 원하세요?

구독 혜택을 살펴보고, 교육 과정을 찾아보고, 디바이스를 보호하는 방법 등을 알아봅니다.