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 nameVolumnName オブジェクト名

が決定したら、コマンド ラインでVolumnName入力してディスクをチェックできます 。chkdsk /f \\?\Volume{bd293852-3b82-428b-aa50-081f26aad78c}

関連情報