web-dev-qa-db-ja.com

ディスクの管理とWindowsエクスプローラーに異なる割り当てサイズが表示される

メインのブートキャンプNTFSパーティションから50GBを縮小しました。再起動後、WindowsエクスプローラーにドライブCの合計サイズが90 GBと表示されますが、Windows(およびEaseUS Partition Manager)のディスクの管理ツールには140 GBと表示されます(割り当てられていない領域はありません)。

50GBを取り戻すにはどうすればよいですか?

ディスク0は500GBである必要があります。

DISKPART> list disk

  Disk ###  Status         Size     Free     Dyn  Gpt
  --------  -------------  -------  -------  ---  ---
* Disk 0    Online          465 GB      0 B

DISKPART> list partition

  Partition ###  Type              Size     Offset
  -------------  ----------------  -------  -------
  Partition 1    Primary            200 MB    512 B
  Partition 2    Primary            325 GB   200 MB
  Partition 3    Primary            619 MB   325 GB
  Partition 4    Primary            140 GB   325 GB

さらに100MBを縮小しようとすると(おそらくリロードを強制しますか?)、次のメッセージが表示されます。

パラメータが正しくありません。

パーティション4はCとしてマウントされます:しかし、90GB:

(screenshot)

TotalCommanderも合計90GBを表示します。

私はchkdskとEaseUSのエラーチェックをうまく使用していません。

C:\Users\JorisWin>chkdsk
The type of the file system is NTFS.
Volume label is BOOTCAMP.

WARNING!  F parameter not specified.
Running CHKDSK in read-only mode.

CHKDSK is verifying files (stage 1 of 3)...
  187648 file records processed.
File verification completed.
  262 large file records processed.
  0 bad file records processed.
  2 EA records processed.
  66 reparse records processed.
CHKDSK is verifying indexes (stage 2 of 3)...
  259512 index entries processed.
Index verification completed.
  0 unindexed files scanned.
  0 unindexed files recovered.
CHKDSK is verifying security descriptors (stage 3 of 3)...
  187648 file SDs/SIDs processed.
Security descriptor verification completed.
  35933 data files processed.
CHKDSK is verifying Usn Journal...
  37017704 USN bytes processed.
Usn Journal verification completed.
Windows has checked the file system and found no problems.

  95691775 KB total disk space.
  68771188 KB in 139744 files.
     85044 KB in 35934 indexes.
         0 KB in bad sectors.
    293491 KB in use by the system.
     65536 KB occupied by the log file.
  26542052 KB available on disk.

      4096 bytes in each allocation unit.
  23922943 total allocation units on disk.
   6635513 allocation units available on disk.
11
Jojo

これは、次のようにdiskpart内で修正できます。

list volume
select volume #
extend filesystem

「#」はもちろん、ボリュームリストに表示される影響を受けるボリュームを表します。

6
Acrklor