Re: Missing Hard Disk space on the C drive



On Feb 17, 5:00 pm, "Pegasus \(MVP\)" <I....@xxxxxxxxxx> wrote:
"spacemancw" <spacema...@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- Hide quoted text -

- Show quoted text -


Thanx for the reply. It's definitely NTFS
here's the output of your script

Drive C: Fixed, ready, Label=System, FS=NTFS, Total=4293, Free=52,
Available=52, Serial=641C1DE5
Drive D: Fixed, ready, Label=Swap, FS=NTFS, Total=21476, Free=14214,
Available=14214, Serial=2815108D
Drive E: Fixed, ready, Label=DATA, FS=NTFS, Total=36010, Free=35846,
Available=35846, Serial=84C72343
Drive R: CD-ROM, not ready


.



Relevant Pages

  • Re: Determine CD-ROM drive letter
    ... drive letter associated with a HostAdpater, ... drives returned. ... Private Const DRIVE_CDROM = 5 ...     Debug.Print GetCDDriveLetters ...
    (microsoft.public.vb.winapi)
  • Re: vb script - mapping drives help
    ... drives based on an Active Directory User's group membership. ... username is a member of the MGT IT Services group. ... script below, I should get the Y drive. ...     But, not only do I get the ...
    (microsoft.public.scripting.vbscript)
  • Re: Asus A7A266
    ... If your drives are in PIO mode, I would consider placing the hard ... cables, ...    cumulative total of six time-out or cyclical redundancy check ... the driver reduces the communications speed (the ...
    (alt.comp.periphs.mainboard.asus)
  • Re: NTFS - directory listing missing an existing folder
    ...   At the end a cygwin script runs to produce a report of the ... latest files in the total backup. ... cygwin report indicates the data is where it should be. ... drives. ...
    (microsoft.public.win2000.general)
  • Re: Computer too slow for my liking.
    ... to be fiddling around with my screwdriver in order to add more RAM. ... memory' of the computer to increase the RAM? ...   Its looks like its Acronis backup, ... swap drives and use the old drive for backup. ...
    (microsoft.public.windowsxp.general)

Loading