Windows Server 백업 드라이브에서 chkdsk를 실행하는 방법

Windows Server 백업 드라이브에서 chkdsk를 실행하는 방법

Windows Server 백업을 사용하여 USB 연결 드라이브에 파일을 백업하고 있습니다. 드라이브에 문제가 있어서 chkdsk드라이브를 실행하여 문제가 해결되는지 확인하고 싶습니다 . 그러나 chkdsk드라이브 문자가 필요하지만 이 드라이브에는 드라이브 문자가 없습니다.

이 드라이브에 오류가 있는지 어떻게 확인할 수 있나요?

답변1

Windows Server 백업을 사용하여 USB 연결 드라이브에 백업하는 경우 Windows는 드라이브를 "할당"하며 해당 드라이브는 더 이상 Windows 탐색기에 표시되지 않거나 드라이브 문자가 없습니다. 백업이 잘 작동하면 괜찮지만 문제가 발생하여 디스크 오류를 확인해야 하는 경우 이를 식별할 수 있는 방법이 필요합니다.

VolumnName

VolumnName관리자 권한 명령 프롬프트를 열고 다음을 입력하여 찾을 수 있습니다 mountvol.

Microsoft Windows [Version 6.2.9200]
(c) 2012 Microsoft Corporation. All rights reserved.

C:\Windows\system32>mountvol
Creates, deletes, or lists a volume mount point.

MOUNTVOL [drive:]path VolumeName
MOUNTVOL [drive:]path /D
MOUNTVOL [drive:]path /L
MOUNTVOL [drive:]path /P
MOUNTVOL /R
MOUNTVOL /N
MOUNTVOL /E

    path        Specifies the existing NTFS directory where the mount
                point will reside.
    VolumeName  Specifies the volume name that is the target of the mount
                point.
    /D          Removes the volume mount point from the specified directory.
    /L          Lists the mounted volume name for the specified directory.
    /P          Removes the volume mount point from the specified directory,
                dismounts the volume, and makes the volume not mountable.
                You can make the volume mountable again by creating a volume
                mount point.
    /R          Removes volume mount point directories and registry settings
                for volumes that are no longer in the system.
    /N          Disables automatic mounting of new volumes.
    /E          Re-enables automatic mounting of new volumes.

Possible values for VolumeName along with current mount points are:

    \\?\Volume{50ccdaa8-3de1-11e3-93e8-806e6f6e6963}\
        *** NO MOUNT POINTS ***

    \\?\Volume{5b7a78f7-d4c8-4a4a-9852-42583cfd70a2}\
        L:\

    \\?\Volume{31d79a25-dc92-4d7c-bb81-8d635a7a2681}\
        D:\

    \\?\Volume{bd293852-3b82-428b-aa50-081f26aad78c}\
        *** NO MOUNT POINTS ***

    \\?\Volume{649ccea1-4f8d-11e7-93fe-c81f66ced748}\
        S:\

    \\?\Volume{50ccdaa9-3de1-11e3-93e8-806e6f6e6963}\
        C:\

    \\?\Volume{50ccdab3-3de1-11e3-93e8-806e6f6e6963}\
        H:\


C:\Windows\system32>

그러면 드라이브 문자 대신 사용할 수 있는 가능한 값 목록이 인쇄됩니다. 우리가 찾고 있는 드라이브에는 라벨이 붙어 있습니다 *** NO MOUNT POINTS ***. 그런 다음 해당 레이블이 있는 드라이브가 백업 드라이브인지, 복구 파티션인지 알 수 없는 문제가 발생했습니다.

VolumnName드라이브를 확인하는 또 다른 방법 은 을 열고 Computer Management -> Disk Management드라이브를 마우스 오른쪽 버튼으로 클릭한 다음 속성 창을 여는 것입니다. 보안 탭으로 이동하면 상단에 다음 내용이 Object name포함된 줄이 표시됩니다.VolumnName 개체 이름

디스크가 VolumnName결정되면 chkdsk /f \\?\Volume{bd293852-3b82-428b-aa50-081f26aad78c}명령줄에 입력하여 디스크를 확인할 수 있습니다.

관련 정보