Windows 7 Sandisk SSD

Venturadan

New Member
I have a Sandisk SSD that has Ubuntu loaded on it. I built a pc and loaded Windows 7 and both hard drives work. The SSD drive shows up in device manager and bios setup. Clicking on my computer the SSD drive does not show up. I look at the ssd using device manager and it gives me the option to disable or uninstall. I have uninstalled it and then when I restart it tells me the drive was successfully installed but still does not show up as a drive when I open the 'computer' icon. I am hoping to format it to get rid ubuntu and use it as a system drive. If I install just the ssd drive then the pc will boot into ubuntu.
 
I have a Sandisk SSD that has Ubuntu loaded on it. I built a pc and loaded Windows 7 and both hard drives work. The SSD drive shows up in device manager and bios setup. Clicking on my computer the SSD drive does not show up. I look at the ssd using device manager and it gives me the option to disable or uninstall. I have uninstalled it and then when I restart it tells me the drive was successfully installed but still does not show up as a drive when I open the 'computer' icon. I am hoping to format it to get rid ubuntu and use it as a system drive. If I install just the ssd drive then the pc will boot into ubuntu.

Windows won't recognize the filesystem types used by Linux, and won't display the volumes or provide access to the files. There isn't anything that will get Windows to display the existing Linux volumes in File Explorer. Instead, open a Command Prompt as administrator and input the following commands to clear the Linux filesystems entirely, and create a single new NTFS partition.

diskpart
list disk
select disk # (replace # with number of the SSD)
clean
create partition primary offset=8192
select partition 1
assign letter=H
format H: /FS:NTFS
exit

All files on the selected disk will be cleared. Ensure the correct disk number is selected. Use list partition after select disk # to ensure the correct disk number is selected, by looking for partitions that do not match what you expect is on the SSD.

The create partition primary has an offset, because Windows treats any partitions starting at the exact beginning of the disk like boot partitions, which are hidden by default.
 
Thank you, Callistemon!!! Everything went as it should until I got to the format line. Then it kept giving me an error. I tried everything I could think of and exited. There Windows was waiting patiently and telling me the drive needed to be formatted before I could use it and it offered to format it for me. I thought that was so nice of Windows to offer so I let it. I thought that the file sys might be the problem but it has been years since I've used a command prompt. You gave me exactly what I needed. Thank you again.
 
I had a serious problem that I was able to solve with your instructions. From my own experience, I can advise you to transfer all important files from the problematic SSD. Yes, you can do recover permanently deleted files, but it will not be a simple procedure. Therefore, make a backup in advance.
 
Last edited:
Back
Top