Removing Debian Installation Prompt
Clash Royale CLAN TAG#URR8PPP
up vote
4
down vote
favorite
I attempted to install Debian through a CD, with the initial .exe working fine. However, when I rebooted and went through the installation procedure, my system could not tell that there was a disk there (or the media was unreadable). Now whenever I boot up my computer, I get the choice between continuing on to windows or to complete my installation. How do I remove that choice? Do I have to go through BIOS or are the files on my Windows partition?
debian system-installation data-cd
add a comment |Â
up vote
4
down vote
favorite
I attempted to install Debian through a CD, with the initial .exe working fine. However, when I rebooted and went through the installation procedure, my system could not tell that there was a disk there (or the media was unreadable). Now whenever I boot up my computer, I get the choice between continuing on to windows or to complete my installation. How do I remove that choice? Do I have to go through BIOS or are the files on my Windows partition?
debian system-installation data-cd
3
What initial .exe? AFAIK Debian doesn't supply Windows executables, and I don't see it listed on their downloads page (although I'll admit I only skimmed it). Where did you get it?
â Michael Kjörling
Jan 26 '13 at 23:11
add a comment |Â
up vote
4
down vote
favorite
up vote
4
down vote
favorite
I attempted to install Debian through a CD, with the initial .exe working fine. However, when I rebooted and went through the installation procedure, my system could not tell that there was a disk there (or the media was unreadable). Now whenever I boot up my computer, I get the choice between continuing on to windows or to complete my installation. How do I remove that choice? Do I have to go through BIOS or are the files on my Windows partition?
debian system-installation data-cd
I attempted to install Debian through a CD, with the initial .exe working fine. However, when I rebooted and went through the installation procedure, my system could not tell that there was a disk there (or the media was unreadable). Now whenever I boot up my computer, I get the choice between continuing on to windows or to complete my installation. How do I remove that choice? Do I have to go through BIOS or are the files on my Windows partition?
debian system-installation data-cd
debian system-installation data-cd
asked Jan 26 '13 at 22:54
Timidger
185129
185129
3
What initial .exe? AFAIK Debian doesn't supply Windows executables, and I don't see it listed on their downloads page (although I'll admit I only skimmed it). Where did you get it?
â Michael Kjörling
Jan 26 '13 at 23:11
add a comment |Â
3
What initial .exe? AFAIK Debian doesn't supply Windows executables, and I don't see it listed on their downloads page (although I'll admit I only skimmed it). Where did you get it?
â Michael Kjörling
Jan 26 '13 at 23:11
3
3
What initial .exe? AFAIK Debian doesn't supply Windows executables, and I don't see it listed on their downloads page (although I'll admit I only skimmed it). Where did you get it?
â Michael Kjörling
Jan 26 '13 at 23:11
What initial .exe? AFAIK Debian doesn't supply Windows executables, and I don't see it listed on their downloads page (although I'll admit I only skimmed it). Where did you get it?
â Michael Kjörling
Jan 26 '13 at 23:11
add a comment |Â
2 Answers
2
active
oldest
votes
up vote
10
down vote
accepted
Although, via msconfig
I couldn't find the "continue with the installation" partition in my disk as a start up thread, nor with disk management, the solution is really simple:
- Open command prompt:
cmd
- Type
bcdedit
(as Marcos suggested) - You will find the booting partitions (this term doesn't really exist)
- Spot the partition that says "Continue with installation" as a description
- Copy its
identifier
(yeah, that long number) - Finally, type
bcdedit /delete identifier
, where in the place of identifier you have to put the identifier you selected. (Make sure to keep the identifier between braces..
).
This worked for me in Windows 7 so I guess it can do the job in most of the systems.
2
don't forget to put the curled braces around the number number
â Ismail Marmoush
Dec 31 '13 at 7:28
1
I am always wondering why answers like these are so hard to find if not for stackexchange.
â halfpastfour.am
Mar 22 '14 at 16:56
I had to put double quotes around the identifier
â Soichi Hayashi
Sep 1 at 3:08
add a comment |Â
up vote
3
down vote
Looks like Debian puts an entry into the Windows Boot Manager for itself and it's partitions. You will need to edit the Windows Boot Configuration Store to remove the incomplete Debian entry. You should be able to edit the Store via msconfig (GUI) or bcdedit (Command line).
add a comment |Â
protected by Community⦠Jul 16 '17 at 6:45
Thank you for your interest in this question.
Because it has attracted low-quality or spam answers that had to be removed, posting an answer now requires 10 reputation on this site (the association bonus does not count).
Would you like to answer one of these unanswered questions instead?
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
10
down vote
accepted
Although, via msconfig
I couldn't find the "continue with the installation" partition in my disk as a start up thread, nor with disk management, the solution is really simple:
- Open command prompt:
cmd
- Type
bcdedit
(as Marcos suggested) - You will find the booting partitions (this term doesn't really exist)
- Spot the partition that says "Continue with installation" as a description
- Copy its
identifier
(yeah, that long number) - Finally, type
bcdedit /delete identifier
, where in the place of identifier you have to put the identifier you selected. (Make sure to keep the identifier between braces..
).
This worked for me in Windows 7 so I guess it can do the job in most of the systems.
2
don't forget to put the curled braces around the number number
â Ismail Marmoush
Dec 31 '13 at 7:28
1
I am always wondering why answers like these are so hard to find if not for stackexchange.
â halfpastfour.am
Mar 22 '14 at 16:56
I had to put double quotes around the identifier
â Soichi Hayashi
Sep 1 at 3:08
add a comment |Â
up vote
10
down vote
accepted
Although, via msconfig
I couldn't find the "continue with the installation" partition in my disk as a start up thread, nor with disk management, the solution is really simple:
- Open command prompt:
cmd
- Type
bcdedit
(as Marcos suggested) - You will find the booting partitions (this term doesn't really exist)
- Spot the partition that says "Continue with installation" as a description
- Copy its
identifier
(yeah, that long number) - Finally, type
bcdedit /delete identifier
, where in the place of identifier you have to put the identifier you selected. (Make sure to keep the identifier between braces..
).
This worked for me in Windows 7 so I guess it can do the job in most of the systems.
2
don't forget to put the curled braces around the number number
â Ismail Marmoush
Dec 31 '13 at 7:28
1
I am always wondering why answers like these are so hard to find if not for stackexchange.
â halfpastfour.am
Mar 22 '14 at 16:56
I had to put double quotes around the identifier
â Soichi Hayashi
Sep 1 at 3:08
add a comment |Â
up vote
10
down vote
accepted
up vote
10
down vote
accepted
Although, via msconfig
I couldn't find the "continue with the installation" partition in my disk as a start up thread, nor with disk management, the solution is really simple:
- Open command prompt:
cmd
- Type
bcdedit
(as Marcos suggested) - You will find the booting partitions (this term doesn't really exist)
- Spot the partition that says "Continue with installation" as a description
- Copy its
identifier
(yeah, that long number) - Finally, type
bcdedit /delete identifier
, where in the place of identifier you have to put the identifier you selected. (Make sure to keep the identifier between braces..
).
This worked for me in Windows 7 so I guess it can do the job in most of the systems.
Although, via msconfig
I couldn't find the "continue with the installation" partition in my disk as a start up thread, nor with disk management, the solution is really simple:
- Open command prompt:
cmd
- Type
bcdedit
(as Marcos suggested) - You will find the booting partitions (this term doesn't really exist)
- Spot the partition that says "Continue with installation" as a description
- Copy its
identifier
(yeah, that long number) - Finally, type
bcdedit /delete identifier
, where in the place of identifier you have to put the identifier you selected. (Make sure to keep the identifier between braces..
).
This worked for me in Windows 7 so I guess it can do the job in most of the systems.
edited Aug 15 at 11:49
slmâ¦
238k65492662
238k65492662
answered Apr 21 '13 at 12:44
Peter Benos
11612
11612
2
don't forget to put the curled braces around the number number
â Ismail Marmoush
Dec 31 '13 at 7:28
1
I am always wondering why answers like these are so hard to find if not for stackexchange.
â halfpastfour.am
Mar 22 '14 at 16:56
I had to put double quotes around the identifier
â Soichi Hayashi
Sep 1 at 3:08
add a comment |Â
2
don't forget to put the curled braces around the number number
â Ismail Marmoush
Dec 31 '13 at 7:28
1
I am always wondering why answers like these are so hard to find if not for stackexchange.
â halfpastfour.am
Mar 22 '14 at 16:56
I had to put double quotes around the identifier
â Soichi Hayashi
Sep 1 at 3:08
2
2
don't forget to put the curled braces around the number number
â Ismail Marmoush
Dec 31 '13 at 7:28
don't forget to put the curled braces around the number number
â Ismail Marmoush
Dec 31 '13 at 7:28
1
1
I am always wondering why answers like these are so hard to find if not for stackexchange.
â halfpastfour.am
Mar 22 '14 at 16:56
I am always wondering why answers like these are so hard to find if not for stackexchange.
â halfpastfour.am
Mar 22 '14 at 16:56
I had to put double quotes around the identifier
â Soichi Hayashi
Sep 1 at 3:08
I had to put double quotes around the identifier
â Soichi Hayashi
Sep 1 at 3:08
add a comment |Â
up vote
3
down vote
Looks like Debian puts an entry into the Windows Boot Manager for itself and it's partitions. You will need to edit the Windows Boot Configuration Store to remove the incomplete Debian entry. You should be able to edit the Store via msconfig (GUI) or bcdedit (Command line).
add a comment |Â
up vote
3
down vote
Looks like Debian puts an entry into the Windows Boot Manager for itself and it's partitions. You will need to edit the Windows Boot Configuration Store to remove the incomplete Debian entry. You should be able to edit the Store via msconfig (GUI) or bcdedit (Command line).
add a comment |Â
up vote
3
down vote
up vote
3
down vote
Looks like Debian puts an entry into the Windows Boot Manager for itself and it's partitions. You will need to edit the Windows Boot Configuration Store to remove the incomplete Debian entry. You should be able to edit the Store via msconfig (GUI) or bcdedit (Command line).
Looks like Debian puts an entry into the Windows Boot Manager for itself and it's partitions. You will need to edit the Windows Boot Configuration Store to remove the incomplete Debian entry. You should be able to edit the Store via msconfig (GUI) or bcdedit (Command line).
answered Jan 27 '13 at 0:33
Marcos Velazquez
1311
1311
add a comment |Â
add a comment |Â
protected by Community⦠Jul 16 '17 at 6:45
Thank you for your interest in this question.
Because it has attracted low-quality or spam answers that had to be removed, posting an answer now requires 10 reputation on this site (the association bonus does not count).
Would you like to answer one of these unanswered questions instead?
3
What initial .exe? AFAIK Debian doesn't supply Windows executables, and I don't see it listed on their downloads page (although I'll admit I only skimmed it). Where did you get it?
â Michael Kjörling
Jan 26 '13 at 23:11