Re: Missing Hard Disk space on the C drive




"spacemancw" <spacemancw@xxxxxxxxx> wrote in message
news:1b8ed3fe-6f21-4a1e-928f-7b2390657c51@xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
I have a Dell PowerEdge 860 running Windows Server 2003 Standard
Edition SP1.
Built in RAM 1GB.
It has 2 x 73GB SATA disks configured in a RAID1 array.

The RAID set has been partitioned into

C Drive - 20GB
D Drive - 20GB
E Drive - 33GB


The swap file of 2048MB is on the D drive
no swap on the C or E

It is now showing something very bizzare

In Windows Explorer (double clicking on 'My Computer') it shows
C Drive - 3.99GB - 50MB free
D Drive - 20GB - 13GB free
D Drive - 33GB - 33GB free

In Computer Management > Disk Management under 'Disk 0' it shows
31MB EISA (Utility Drive)
C 20GB
D 20GB
E 33GB

Where is my 17GB of space on my C drive?
Disk Management shows it correctly, but Windows Explorer shows it
incorrectly.
This has happened on two other servers recently and I had to rebuild
them.
I would prefer not to have to rebuild this one.

Things that it is NOT
it's not me expecting space based on 1024MB per gig when they are sold
at 1000MB per gig
it's not a page file or hidden files.
If it was hidden files explorer would say "C Drive - 20GB - 50MB free"
- but it doesn't, it says
"C Drive - 3.99GB - 50MB free" It thinks my C drive is a 4GB
partition.

Anyone have ideas?

Let's have some hard evidence of your claim. As a first step,
copy & paste the code below in the file c:\DiskParms.vbs,
then do this:
- Click Start / Run / cmd {OK}
- Type these commands:
cscript //nologo c:\DiskParms.vbs > c:\DiskParms.txt {Enter}
notepad c:\DiskParms.txt {Enter}
- Paste the tex into your reply

Code starts below the divider line
==========================
Const Removable = 1
Const Fixed = 2
Const Network = 3
Const CDROM = 4
Const RAMDisk = 5
Dim fso, drive, drives, S, TabStop, NewLine, aux
Set fso = CreateObject("Scripting.FileSystemObject")
Set drives = fso.Drives

NewLine=Chr(10)
S = ""

For Each drive In drives
' S = S & drive.DriveLetter
S = S & "Drive " & drive.Path
S = S & " " & ShowDriveType(Drive)
If drive.IsReady Then S = S & ", ready" Else S = S & ", not ready"

If drive.IsReady Then
If drive.DriveType=Network Then
S = S & ", Label=" & drive.ShareName
Else
S = S & ", Label=" & drive.VolumeName
End If

S = S & ", FS=" & drive.FileSystem
S = S & ", Total=" & Int(drive.TotalSize/1000000)
S = S & ", Free=" & Int(drive.FreeSpace/1000000)
S = S & ", Available=" & Int(drive.AvailableSpace/1000000)
S = S & ", Serial=" & Hex(drive.SerialNumber)
End If

S = S & NewLine
Next

wscript.echo S

'===================================================

Function ShowDriveType(Drive)
Dim S

Select Case drive.DriveType
Case Removable
S = "Removable"
Case Fixed
S = "Fixed"
Case Network
S = "Network"
Case CDROM
S = "CD-ROM"
Case RAMDisk
S = "RAM Disk"
Case Else
S = "Unknown"
End Select

ShowDriveType = S
End Function


.



Relevant Pages

  • Re: Dual Boot Instructions
    ... the PHYSICAL DISK number, ... Partition and Boot Volume as well as other things. ... You should, at any one time, see ONE System Partition and ONE Boot Volume - ... for the typical two floppy drives and assigning Drive C: ...
    (microsoft.public.windows.vista.hardware_devices)
  • Re: Boot Problem
    ... Right mouse click the dest disk> Advanced> Edit ... but it should eventually boot to Windows. ... I see a lot of posts in here about the ability of Acronis to clone drives. ... I have managed to successfully copy by DELETING partition, ...
    (microsoft.public.windowsxp.hardware)
  • Re: Dual Boot Instructions
    ... OS on a separate partition. ... the PHYSICAL DISK number, ... You should, at any one time, see ONE System Partition and ONE Boot ... The name stuck when we added hard disk drives, ...
    (microsoft.public.windows.vista.hardware_devices)
  • Re: A Dual-boot question; I thought C was always the partition with the running OS
    ... The Server 2003 will then call its partion "C:" Local Disk. ... When Server 2003 starts up, it will call itself "C:" and it will call the WinXP partition "E:", but again, who cares? ... The OS then assigns drive letters to the first primary partition recognized on each successive hard disk. ... Because they're on separate hard drives, ...
    (microsoft.public.windowsxp.setup_deployment)
  • Re: Dual Boot Instructions
    ... If "drive" means a single partition or logical drive, then the negatives you've heard are very true. ... But if "drive" means a physical hard disk drive, then I'm in big trouble because I have SIX versions of Windows installed on my 1 TB Disk 1, my second HDD! ... The name stuck when we added hard disk drives, ...
    (microsoft.public.windows.vista.hardware_devices)

Loading