Partition is missing in My computer

Page 1 of 2 12 LastLast

  1. Posts : 6
    Windows 7 Ultimate 32bit
       #1

    Partition is missing in My computer


    In my computer, I can't find one of my partition... And in disk management i can find the partition with missing driveletter and name and shows as empty drive and it doesn't show any filesystem name .... And i used to easeus partition recovery to find the partition status , There i find my partition(missed) partition as *(NTFS) and amount of free space with correct attributes and i can see all the files and folders through that software.. But this software did not show recovery option as the partition is already exists in the system..... Tell me how can i get my partition back without losing any data
      My Computer


  2. Posts : 211
    Windows 7 Ultimate x64
       #2

    right click my computer click manage tab
    go to storage
    go to disk management
    If you can see it there then tell me !
      My Computer


  3. Posts : 6
    Windows 7 Ultimate 32bit
    Thread Starter
       #3

    ya i can see it in disk management as a partition with no name and drive letter. and the disk management doesnot show any filesystem name to this partition. and when i right click on it, only delete the partition option comes... Remaining options not enabled....
      My Computer


  4. Posts : 10,200
    MS Windows 7 Ultimate SP1 64-bit
       #4

    I would like for you to run a PowerShell script and then upload the file which the script places on your desktop.

    # **********************INSTRUCTIONS**************************
    # STEP 1 ** RUN POWERSHELL AS ADMINISTRATOR ******************
    # ************************************************************
    #
    # WIN key | type POWERSHELL | do NOT hit ENTER |
    # in the PROGRAMS list, right-click on WINDOWS POWERSHELL |
    # choose "Run as administrator" |
    # Click on the YES button (if such appears)
    #
    # WIN key = key with Microsoft log on top
    #
    # for the guru:
    # WIN | type POWERSHELL | CTRL+SHIFT+ENTER key combo | ALT+Y keycombo
    # ************************************************************
    # STEP 2 ** COPY AND PASTE ***********************************
    # ************************************************************
    #
    # COPY the script using CTRL+C,
    # COPY every line of script down thru both EXIT statements
    #
    # PASTE into Powershell
    #----Right-Click at the PowerShell Prompt
    #----(Ctrl+V does not work)
    #
    # Start copying with first script line without a # at start of the line
    # Note: Actually, you can paste the entire file if you rather
    #-------Lines starting with a # are ignored by PowerShell
    # ************************************************************
    # STEP 3 ** SCRIPT OUTPUT & SCRIPT PURPOSE *******************
    # ************************************************************
    # --The script output and purpose is given at the very front of the script
    #
    # --The script output and purpose is given at the very front of the script
    #
    # ************************************************************
    # ***************** NOTE - POWERSHELL VERSION*****************
    # if you receive this error msg:
    #--The system can not find the path specified
    # you may need to update your PowerShell
    # you must be using Powershell 2.0 or later.
    #
    # To determine your Powershell version:
    #---Run PowerShell
    #---enter $host.version
    #---you should see at least:
    # Major Minor Build Revision
    # ----- ----- ----- --------
    # 2......0......-1.....-1
    #
    # If you do not see the above, update your Vista/Win 7.
    # ************************************************************
    # *************** NOTE - EXECUTION POLICY*********************
    # If you haven't set the execution policy, you may need to:
    #---Run PowerShell
    #---enter SET-EXECUTIONPOLICY -EXECUTIONPOLICY REMOTESIGNED
    # ************************************************************

    Script:
    # *************************************************************************
    # ############################### DISK VOLUMES ############################
    # Places Disk Volumes.txt on the desktop
    # Contains info about your disk volumes (partitions)
    # *************************************************************************
    # Create an array to hold the result
    $arr = @()
    # Create an array of managementobjects
    $dskvol gwmi win32_volume -filter "NOT(drivetype= 2) OR  NOT(capacity=null)" 
    $dskrmv $dskvol | ? {$_.drivetype -eq 2}
    $dskodd $dskvol | ? {$_.drivetype -eq 5}
    $dsk    $dskvol | ? {$_.drivetype -eq 3}

    # Process the array
    foreach ($e in $dsk) {
      
    # Create a hash array
      
    $hash = @{
      
    "DISK PARTITION"   "*" 40
      
    "Caption"       $e.caption
      
    "Drive Letter"  $e.driveletter
      
    "Label"         $e.label
      
    "Capacity"      "{0:n2} GB = {1:n0} MB" -(($e.capacity/1GB),($e.capacity/1MB))
      
    "Free Space"    "{0:n2} GB = {1:n0} MB" -(($e.freespace/1GB),($e.freespace/1MB))
      
    "Volume Type"   "Partition"
      "Boot Volume"   
    $e.bootvolume
      
    "System Volume" $e.systemvolume
      
    "Compressed"    $e.compressed
      
    "Serial Number" $e.serialnumber
      
    "Device ID"     $e.deviceid
      
    "File System"   $e.filesystem
      
    "Block Size"    $e.blocksize
      
    "Indexing Enabled" $e.indexingenabled
      
    "Auto Mount"    $e.automount
      
    "Dirty Bit Set" $e.dirtybitset
      
    # end Hash table
      
      # Create obj based upon  hash; use select to specify order
      
    $obj = New-Object -TypeName PSObject -Property $hash |
      
    SELECT "DISK PARTITION"label,"Drive Letter",  capacity,"free space", `
      "volume type", "file system","block size","boot volume", 
    `
      
    "system volume"compressed,"indexing enabled""auto mount""serial number"  
     
     
    # add to obj to the result array
     
    $arr += $obj
    # end of foreach

    foreach ($e in $dskodd) {
      
    # Create a hash array
      
    $hash = @{
      
    "CDROM"         "*" 40
      
    "Caption"       $e.caption
      
    "Drive Letter"  $e.driveletter
      
    "Label"         $e.label
      
    "Capacity"      "{0:n2} GB = {1:n0} MB" -(($e.capacity/1GB),($e.capacity/1MB))
      
    "Free Space"    "{0:n2} GB = {1:n0} MB" -(($e.freespace/1GB),($e.freespace/1MB))
      
    "Volume Type"   "CDROM"
      "Boot Volume"   
    $e.bootvolume
      
    "System Volume" $e.systemvolume
      
    "Compressed"    $e.compressed
      
    "Serial Number" $e.serialnumber
      
    "Device ID"     $e.deviceid
      
    "File System"   $e.filesystem
      
    "Block Size"    $e.blocksize
      
    "Indexing Enabled" $e.indexingenabled
      
    "Auto Mount"    $e.automount
      
    "Dirty Bit Set" $e.dirtybitset
      
    # end Hash table
      
      # Create obj based upon  hash; use select to specify order
      
    $obj = New-Object -TypeName PSObject -Property $hash |
      
    SELECT "CDROM"label,"Drive Letter",  capacity,"free space", `
      "volume type", "file system","block size","boot volume", 
    `
      
    "system volume"compressed,"indexing enabled""auto mount""serial number"  
     
     
    # add to obj to the result array
     
    $arr += $obj
    # end of foreach

    foreach ($e in $dskRMV) {
      
    # Create a hash array
      
    $hash = @{
      
    "REMOVABLE DISK" "*" 40
      
    "Caption"       $e.caption
      
    "Drive Letter"  $e.driveletter
      
    "Label"         $e.label
      
    "Capacity"      "{0:n2} GB = {1:n0} MB" -(($e.capacity/1GB),($e.capacity/1MB))
      
    "Free Space"    "{0:n2} GB = {1:n0} MB" -(($e.freespace/1GB),($e.freespace/1MB))
      
    "Volume Type"   "Removable"
      "Boot Volume"   
    $e.bootvolume
      
    "System Volume" $e.systemvolume
      
    "Compressed"    $e.compressed
      
    "Serial Number" $e.serialnumber
      
    "Device ID"     $e.deviceid
      
    "File System"   $e.filesystem
      
    "Block Size"    $e.blocksize
      
    "Indexing Enabled" $e.indexingenabled
      
    "Auto Mount"    $e.automount
      
    "Dirty Bit Set" $e.dirtybitset
      
    # end Hash table
      
      # Create obj based upon  hash; use select to specify order
      
    $obj = New-Object -TypeName PSObject -Property $hash |
      
    SELECT "REMOVABLE DISK"label,"Drive Letter",  capacity,"free space", `
      "volume type", "file system","block size","boot volume", 
    `
      
    "system volume"compressed,"indexing enabled""auto mount""serial number"  
     
     
    # add to obj to the result array
     
    $arr += $obj
    # end of foreach

    $arr $env:userprofile\desktop\"DISK VOLUMES.TXT"

    EXIT
    EXIT 

    ==============================================
      My Computer

  5.    #5

    Please post back a screenshot of your maximized Disk Management drive map and listings:

    1. Type Disk Management in Start Search box.
    2. Open Disk Mgmt. window and maximize it.
    3. Type Snipping Tool in Start Search box.
    4. Open Snipping Tool, choose Rectangular Snip, draw a box around full map and all listings.
    5, Save Snip, attach using paper clip in Reply Box.

    Tell us what is on each partition.
      My Computer


  6. Posts : 6
    Windows 7 Ultimate 32bit
    Thread Starter
       #6

    Thanks for the reply karlsnooks, i ran the script and opened the text file ..... It did not show the missed partition details in the text file thank you
      My Computer


  7. Posts : 6
    Windows 7 Ultimate 32bit
    Thread Starter
       #7

    Thanks for the reply Mr.Gregrocker The partition which is missing is the partition with 105 GB storage capacity
    When i use easeus partition recovery it shows everything right about the partition the amount free space, occupied space and can see the contents of the partition.... I want to recover the partition without losing the data in the partition
    Attached Thumbnails Attached Thumbnails Partition is missing in My computer-diskmgmt.png   Partition is missing in My computer-diskmgmt1.png   Partition is missing in My computer-easeus1.png   Partition is missing in My computer-easuus.png   Partition is missing in My computer-easeus3.png  

    Last edited by yogeswark999; 15 Sep 2012 at 23:39. Reason: Want to add another screenshot
      My Computer

  8.    #8

    The Disk Mgmt listings show that partition is empty.

    If empty as shown I would use free Partition Wizard bootable CD which is the only disk manager besides Disk Mgmt which will not fail. Partition Wizard Partition Recovery Wizard - Video Help.

    After you recover that last partition ask back if you'd like help apportioning more space to C which is absurdly small. We will show you how to do this while resizing and moving over the other partitions.
    Last edited by gregrocker; 16 Sep 2012 at 00:49.
      My Computer


  9. Posts : 6
    Windows 7 Ultimate 32bit
    Thread Starter
       #9

    Thanks for the reply Mr. Gregrocker No, I am not deleted the partition data ... In the screenshots it shows the partition is exists when i explore the partiton using this software ,i can see the data stored in it exactly how it was when everything is fine... The problem occured due to " i install ubuntu and windows 7 in dual boot" and deleted the ubuntu partition without making changes to MBR " so i am not able to boot, I tried recover using norton ghost using the recovery point but it is failed" so i performed a clean installation of win 7 again... After that i lost that partition ..... see the screenshots clearly , I dont know the problem correctly whether it is due partition table corruption or file system corruption.....
      My Computer

  10.    #10

    The Disk Mgmt listings show the partition is empty. Easeus is not more reliable than Disk Mgmt, but PW boot CD can be so I would compare it now.

    See if in PW you can assign a drive letter and it should be accessible via Explorer.

    That PC shipped with Vista. How are you activating Windows 7 Ultimate?
    Last edited by gregrocker; 16 Sep 2012 at 00:51.
      My Computer


 
Page 1 of 2 12 LastLast

  Related Discussions
Our Sites
Site Links
About Us
Windows 7 Forums is an independent web site and has not been authorized, sponsored, or otherwise approved by Microsoft Corporation. "Windows 7" and related materials are trademarks of Microsoft Corp.

© Designer Media Ltd
All times are GMT -5. The time now is 20:15.
Find Us