Unable to Make Bootable USB Stick From ISO
up vote
32
down vote
favorite
I'm trying to use the Windows 7 USB/DVD Download Tool from the Microsoft Store to make my new 16 GB USB Flash drive bootable to install Windows. It worked the first time that I did this (for Windows 7 Pro 32-bit), but now it keeps failing at the end. (I'm trying to make it bootable with the Windows 7 Pro 64-bit installation DVD ISO.) I've tried to do this on two different computers (Windows XP Pro 32-bit & Windows 7 Pro 32-bit) with the same error:
Files copied successfully. However, we were unable to run bootsect to make the USB device bootable. If you need assistance with bootsect, please click the "Online Help" link above for more information.
Clicking the link just takes me to the Microsoft store homepage, and a search for bootsect
from there yields no search results. I've tried to burn a DVD twice using Sonic RecordNow!, but even though it finishes without "errors," the disk is unreadable. :( Does anyone know why this keeps failing and how I may fix it?
windows usb-flash-drive iso-image bootable-media
add a comment |
up vote
32
down vote
favorite
I'm trying to use the Windows 7 USB/DVD Download Tool from the Microsoft Store to make my new 16 GB USB Flash drive bootable to install Windows. It worked the first time that I did this (for Windows 7 Pro 32-bit), but now it keeps failing at the end. (I'm trying to make it bootable with the Windows 7 Pro 64-bit installation DVD ISO.) I've tried to do this on two different computers (Windows XP Pro 32-bit & Windows 7 Pro 32-bit) with the same error:
Files copied successfully. However, we were unable to run bootsect to make the USB device bootable. If you need assistance with bootsect, please click the "Online Help" link above for more information.
Clicking the link just takes me to the Microsoft store homepage, and a search for bootsect
from there yields no search results. I've tried to burn a DVD twice using Sonic RecordNow!, but even though it finishes without "errors," the disk is unreadable. :( Does anyone know why this keeps failing and how I may fix it?
windows usb-flash-drive iso-image bootable-media
add a comment |
up vote
32
down vote
favorite
up vote
32
down vote
favorite
I'm trying to use the Windows 7 USB/DVD Download Tool from the Microsoft Store to make my new 16 GB USB Flash drive bootable to install Windows. It worked the first time that I did this (for Windows 7 Pro 32-bit), but now it keeps failing at the end. (I'm trying to make it bootable with the Windows 7 Pro 64-bit installation DVD ISO.) I've tried to do this on two different computers (Windows XP Pro 32-bit & Windows 7 Pro 32-bit) with the same error:
Files copied successfully. However, we were unable to run bootsect to make the USB device bootable. If you need assistance with bootsect, please click the "Online Help" link above for more information.
Clicking the link just takes me to the Microsoft store homepage, and a search for bootsect
from there yields no search results. I've tried to burn a DVD twice using Sonic RecordNow!, but even though it finishes without "errors," the disk is unreadable. :( Does anyone know why this keeps failing and how I may fix it?
windows usb-flash-drive iso-image bootable-media
I'm trying to use the Windows 7 USB/DVD Download Tool from the Microsoft Store to make my new 16 GB USB Flash drive bootable to install Windows. It worked the first time that I did this (for Windows 7 Pro 32-bit), but now it keeps failing at the end. (I'm trying to make it bootable with the Windows 7 Pro 64-bit installation DVD ISO.) I've tried to do this on two different computers (Windows XP Pro 32-bit & Windows 7 Pro 32-bit) with the same error:
Files copied successfully. However, we were unable to run bootsect to make the USB device bootable. If you need assistance with bootsect, please click the "Online Help" link above for more information.
Clicking the link just takes me to the Microsoft store homepage, and a search for bootsect
from there yields no search results. I've tried to burn a DVD twice using Sonic RecordNow!, but even though it finishes without "errors," the disk is unreadable. :( Does anyone know why this keeps failing and how I may fix it?
windows usb-flash-drive iso-image bootable-media
windows usb-flash-drive iso-image bootable-media
asked Apr 24 '12 at 20:52
Jim Fell
2,859134470
2,859134470
add a comment |
add a comment |
7 Answers
7
active
oldest
votes
up vote
32
down vote
accepted
It would seem that bootsect
was failing because the device was already bootable.
This morning I decided to try using it to boot with the Windows 7 Professional 64-bit installer image loaded on it, despite the failure, just to see what would happen. Surprise-surprise, it worked. -_-
I just had the exact same "surprise". However, if you follow Ahmed's answer below from the start, it should work as well and the error message isn't shown—I did it on my sister's computer. :)
– agarie
Jul 8 '14 at 23:54
So in the future you can just delete the old files from the USB and simply extract/copy the new files.
– jiggunjer
Dec 30 '15 at 5:18
add a comment |
up vote
25
down vote
Warning: This will erase all data on this USB stick.
Launch a command prompt with admin rights and run the diskpart tool:
diskpart
list disk
select disk #
clean
create partition primary
select partition 1
active
format quick fs=fat32
assign
exit
The “list disk” command will show you the connected drives and with “select disk”, you can choose your USB stick. Be careful to select the right drive or else your day won’t have a happy end. The crucial step here is the “clean” command. It overwrites the MBR and the partition table (thereby, deleting everything on the stick).
2
Thanks Ahmed Ghoneim it help me making a pendrive bootable which was showing error at first.
– Namshum
Jul 2 '14 at 9:24
3
Once you have selected a disk you can run the "disk detail" command to help confirm that you have selected the correct disk. This command shows you the size, make and type of disk selected.
– Andy Davies
Dec 28 '14 at 14:41
1
@AndyDavies not sure if this has changed over the years, but on my Windows build 6.1.7601 the command is "detail disk".
– Mikael Falkvidd
Sep 16 '17 at 19:03
2
I have found 5 different versions of this list of commands online and this is the only one that included the crucialassign
command. Thank you.
– 2cents
Jul 6 at 21:12
1
This will format the disk (obvious once you think about it) but might want to add a warning at the top.
– aolszowka
Sep 20 at 15:22
|
show 1 more comment
up vote
2
down vote
I was trying to create Win7x64 bootable USB stick. Using WinXPx32 SP3, the tool failed for me as described. Luckily, I was able to get access to a Win7x64 machine instead, and there it worked just fine.
Same with Windows 10... looks like it only works on Windows 7.
– Dean Kuga
Nov 27 '15 at 1:20
+1 from me. That was exactly the problem. Please can you make it clearer in your answer that the tool doesn't work in Win10, as that would help a lot of people (and probably get you more votes!).
– Avrohom Yisroel
Mar 8 at 18:07
add a comment |
up vote
2
down vote
http://www.kossboss.com/windows64from32 Copy the bootsect.exe into the folder Windows 7 USB DVD Download Tool is installed on and it should work.
add a comment |
up vote
2
down vote
The following description is taken from the tool's online help:
When creating a bootable USB device, I am getting an error about bootsect
To make the USB device bootable, you need to run a tool named bootsect.exe. In some cases, this tool needs to be downloaded from your Microsoft Store account. This may happen if you're trying to create a 64-bit bootable USB device from a 32-bit version of Windows. To download bootsect:
Login to your Microsoft Store account to view your purchase history
Look for your Windows 7 purchase.
Next to Windows 7, there is an "Additional download options" drop-down menu.
In the drop-down menu, select "32-bit ISO."
Right-click the link, and then save the bootsect.exe file to the location where you installed the Windows 7 USB/DVD Download Tool (e.g.
%UserProfile%AppDataLocalAppsWindows 7 USB DVD Download Tool
).Once the file has been saved, go back to the Windows 7 USB/DVD Download tool to create your bootable USB device.
Archive.org link: https://web.archive.org/web/20130130224114/http://www.sevenforums.com/attachments/installation-setup/47060d1263222191-32-bit-bootsect-bootsect7600x86.zip
add a comment |
up vote
0
down vote
Try to format (FAT32) your USB drive but not using quick option !
You can then check again (using explorer or chkdsk) to see if all sectors are readable.
After formating (from Windows 7) the USB drive will have proper Windows 7 MBR and PBR.
Never had problems with Windows 7 USB/DVD Download Tool.
Help for bootsect.exe - http://technet.microsoft.com/en-us/library/cc749177(v=ws.10).aspx
add a comment |
up vote
0
down vote
I had this issue when trying to create a bootable Windows 7 USB stick for an older laptop (Thinkpad T410).
Even with this warning, it still should boot as far as I understand, but the reason it didn't for me was because I had an older BIOS, so what I ended up doing was using the Rufus USB tool with the following settings:
Notice the 'Partition scheme' and 'Target system'.
I guess the Windows USB tool assumes UEFI and uses the wrong partition scheme? I don't really know, but this worked for me.
add a comment |
protected by Community♦ May 16 '14 at 13:42
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?
7 Answers
7
active
oldest
votes
7 Answers
7
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
32
down vote
accepted
It would seem that bootsect
was failing because the device was already bootable.
This morning I decided to try using it to boot with the Windows 7 Professional 64-bit installer image loaded on it, despite the failure, just to see what would happen. Surprise-surprise, it worked. -_-
I just had the exact same "surprise". However, if you follow Ahmed's answer below from the start, it should work as well and the error message isn't shown—I did it on my sister's computer. :)
– agarie
Jul 8 '14 at 23:54
So in the future you can just delete the old files from the USB and simply extract/copy the new files.
– jiggunjer
Dec 30 '15 at 5:18
add a comment |
up vote
32
down vote
accepted
It would seem that bootsect
was failing because the device was already bootable.
This morning I decided to try using it to boot with the Windows 7 Professional 64-bit installer image loaded on it, despite the failure, just to see what would happen. Surprise-surprise, it worked. -_-
I just had the exact same "surprise". However, if you follow Ahmed's answer below from the start, it should work as well and the error message isn't shown—I did it on my sister's computer. :)
– agarie
Jul 8 '14 at 23:54
So in the future you can just delete the old files from the USB and simply extract/copy the new files.
– jiggunjer
Dec 30 '15 at 5:18
add a comment |
up vote
32
down vote
accepted
up vote
32
down vote
accepted
It would seem that bootsect
was failing because the device was already bootable.
This morning I decided to try using it to boot with the Windows 7 Professional 64-bit installer image loaded on it, despite the failure, just to see what would happen. Surprise-surprise, it worked. -_-
It would seem that bootsect
was failing because the device was already bootable.
This morning I decided to try using it to boot with the Windows 7 Professional 64-bit installer image loaded on it, despite the failure, just to see what would happen. Surprise-surprise, it worked. -_-
answered Apr 25 '12 at 14:28
Jim Fell
2,859134470
2,859134470
I just had the exact same "surprise". However, if you follow Ahmed's answer below from the start, it should work as well and the error message isn't shown—I did it on my sister's computer. :)
– agarie
Jul 8 '14 at 23:54
So in the future you can just delete the old files from the USB and simply extract/copy the new files.
– jiggunjer
Dec 30 '15 at 5:18
add a comment |
I just had the exact same "surprise". However, if you follow Ahmed's answer below from the start, it should work as well and the error message isn't shown—I did it on my sister's computer. :)
– agarie
Jul 8 '14 at 23:54
So in the future you can just delete the old files from the USB and simply extract/copy the new files.
– jiggunjer
Dec 30 '15 at 5:18
I just had the exact same "surprise". However, if you follow Ahmed's answer below from the start, it should work as well and the error message isn't shown—I did it on my sister's computer. :)
– agarie
Jul 8 '14 at 23:54
I just had the exact same "surprise". However, if you follow Ahmed's answer below from the start, it should work as well and the error message isn't shown—I did it on my sister's computer. :)
– agarie
Jul 8 '14 at 23:54
So in the future you can just delete the old files from the USB and simply extract/copy the new files.
– jiggunjer
Dec 30 '15 at 5:18
So in the future you can just delete the old files from the USB and simply extract/copy the new files.
– jiggunjer
Dec 30 '15 at 5:18
add a comment |
up vote
25
down vote
Warning: This will erase all data on this USB stick.
Launch a command prompt with admin rights and run the diskpart tool:
diskpart
list disk
select disk #
clean
create partition primary
select partition 1
active
format quick fs=fat32
assign
exit
The “list disk” command will show you the connected drives and with “select disk”, you can choose your USB stick. Be careful to select the right drive or else your day won’t have a happy end. The crucial step here is the “clean” command. It overwrites the MBR and the partition table (thereby, deleting everything on the stick).
2
Thanks Ahmed Ghoneim it help me making a pendrive bootable which was showing error at first.
– Namshum
Jul 2 '14 at 9:24
3
Once you have selected a disk you can run the "disk detail" command to help confirm that you have selected the correct disk. This command shows you the size, make and type of disk selected.
– Andy Davies
Dec 28 '14 at 14:41
1
@AndyDavies not sure if this has changed over the years, but on my Windows build 6.1.7601 the command is "detail disk".
– Mikael Falkvidd
Sep 16 '17 at 19:03
2
I have found 5 different versions of this list of commands online and this is the only one that included the crucialassign
command. Thank you.
– 2cents
Jul 6 at 21:12
1
This will format the disk (obvious once you think about it) but might want to add a warning at the top.
– aolszowka
Sep 20 at 15:22
|
show 1 more comment
up vote
25
down vote
Warning: This will erase all data on this USB stick.
Launch a command prompt with admin rights and run the diskpart tool:
diskpart
list disk
select disk #
clean
create partition primary
select partition 1
active
format quick fs=fat32
assign
exit
The “list disk” command will show you the connected drives and with “select disk”, you can choose your USB stick. Be careful to select the right drive or else your day won’t have a happy end. The crucial step here is the “clean” command. It overwrites the MBR and the partition table (thereby, deleting everything on the stick).
2
Thanks Ahmed Ghoneim it help me making a pendrive bootable which was showing error at first.
– Namshum
Jul 2 '14 at 9:24
3
Once you have selected a disk you can run the "disk detail" command to help confirm that you have selected the correct disk. This command shows you the size, make and type of disk selected.
– Andy Davies
Dec 28 '14 at 14:41
1
@AndyDavies not sure if this has changed over the years, but on my Windows build 6.1.7601 the command is "detail disk".
– Mikael Falkvidd
Sep 16 '17 at 19:03
2
I have found 5 different versions of this list of commands online and this is the only one that included the crucialassign
command. Thank you.
– 2cents
Jul 6 at 21:12
1
This will format the disk (obvious once you think about it) but might want to add a warning at the top.
– aolszowka
Sep 20 at 15:22
|
show 1 more comment
up vote
25
down vote
up vote
25
down vote
Warning: This will erase all data on this USB stick.
Launch a command prompt with admin rights and run the diskpart tool:
diskpart
list disk
select disk #
clean
create partition primary
select partition 1
active
format quick fs=fat32
assign
exit
The “list disk” command will show you the connected drives and with “select disk”, you can choose your USB stick. Be careful to select the right drive or else your day won’t have a happy end. The crucial step here is the “clean” command. It overwrites the MBR and the partition table (thereby, deleting everything on the stick).
Warning: This will erase all data on this USB stick.
Launch a command prompt with admin rights and run the diskpart tool:
diskpart
list disk
select disk #
clean
create partition primary
select partition 1
active
format quick fs=fat32
assign
exit
The “list disk” command will show you the connected drives and with “select disk”, you can choose your USB stick. Be careful to select the right drive or else your day won’t have a happy end. The crucial step here is the “clean” command. It overwrites the MBR and the partition table (thereby, deleting everything on the stick).
edited Nov 27 at 19:16
answered Aug 21 '12 at 23:38
Ahmed Ghoneim
3711511
3711511
2
Thanks Ahmed Ghoneim it help me making a pendrive bootable which was showing error at first.
– Namshum
Jul 2 '14 at 9:24
3
Once you have selected a disk you can run the "disk detail" command to help confirm that you have selected the correct disk. This command shows you the size, make and type of disk selected.
– Andy Davies
Dec 28 '14 at 14:41
1
@AndyDavies not sure if this has changed over the years, but on my Windows build 6.1.7601 the command is "detail disk".
– Mikael Falkvidd
Sep 16 '17 at 19:03
2
I have found 5 different versions of this list of commands online and this is the only one that included the crucialassign
command. Thank you.
– 2cents
Jul 6 at 21:12
1
This will format the disk (obvious once you think about it) but might want to add a warning at the top.
– aolszowka
Sep 20 at 15:22
|
show 1 more comment
2
Thanks Ahmed Ghoneim it help me making a pendrive bootable which was showing error at first.
– Namshum
Jul 2 '14 at 9:24
3
Once you have selected a disk you can run the "disk detail" command to help confirm that you have selected the correct disk. This command shows you the size, make and type of disk selected.
– Andy Davies
Dec 28 '14 at 14:41
1
@AndyDavies not sure if this has changed over the years, but on my Windows build 6.1.7601 the command is "detail disk".
– Mikael Falkvidd
Sep 16 '17 at 19:03
2
I have found 5 different versions of this list of commands online and this is the only one that included the crucialassign
command. Thank you.
– 2cents
Jul 6 at 21:12
1
This will format the disk (obvious once you think about it) but might want to add a warning at the top.
– aolszowka
Sep 20 at 15:22
2
2
Thanks Ahmed Ghoneim it help me making a pendrive bootable which was showing error at first.
– Namshum
Jul 2 '14 at 9:24
Thanks Ahmed Ghoneim it help me making a pendrive bootable which was showing error at first.
– Namshum
Jul 2 '14 at 9:24
3
3
Once you have selected a disk you can run the "disk detail" command to help confirm that you have selected the correct disk. This command shows you the size, make and type of disk selected.
– Andy Davies
Dec 28 '14 at 14:41
Once you have selected a disk you can run the "disk detail" command to help confirm that you have selected the correct disk. This command shows you the size, make and type of disk selected.
– Andy Davies
Dec 28 '14 at 14:41
1
1
@AndyDavies not sure if this has changed over the years, but on my Windows build 6.1.7601 the command is "detail disk".
– Mikael Falkvidd
Sep 16 '17 at 19:03
@AndyDavies not sure if this has changed over the years, but on my Windows build 6.1.7601 the command is "detail disk".
– Mikael Falkvidd
Sep 16 '17 at 19:03
2
2
I have found 5 different versions of this list of commands online and this is the only one that included the crucial
assign
command. Thank you.– 2cents
Jul 6 at 21:12
I have found 5 different versions of this list of commands online and this is the only one that included the crucial
assign
command. Thank you.– 2cents
Jul 6 at 21:12
1
1
This will format the disk (obvious once you think about it) but might want to add a warning at the top.
– aolszowka
Sep 20 at 15:22
This will format the disk (obvious once you think about it) but might want to add a warning at the top.
– aolszowka
Sep 20 at 15:22
|
show 1 more comment
up vote
2
down vote
I was trying to create Win7x64 bootable USB stick. Using WinXPx32 SP3, the tool failed for me as described. Luckily, I was able to get access to a Win7x64 machine instead, and there it worked just fine.
Same with Windows 10... looks like it only works on Windows 7.
– Dean Kuga
Nov 27 '15 at 1:20
+1 from me. That was exactly the problem. Please can you make it clearer in your answer that the tool doesn't work in Win10, as that would help a lot of people (and probably get you more votes!).
– Avrohom Yisroel
Mar 8 at 18:07
add a comment |
up vote
2
down vote
I was trying to create Win7x64 bootable USB stick. Using WinXPx32 SP3, the tool failed for me as described. Luckily, I was able to get access to a Win7x64 machine instead, and there it worked just fine.
Same with Windows 10... looks like it only works on Windows 7.
– Dean Kuga
Nov 27 '15 at 1:20
+1 from me. That was exactly the problem. Please can you make it clearer in your answer that the tool doesn't work in Win10, as that would help a lot of people (and probably get you more votes!).
– Avrohom Yisroel
Mar 8 at 18:07
add a comment |
up vote
2
down vote
up vote
2
down vote
I was trying to create Win7x64 bootable USB stick. Using WinXPx32 SP3, the tool failed for me as described. Luckily, I was able to get access to a Win7x64 machine instead, and there it worked just fine.
I was trying to create Win7x64 bootable USB stick. Using WinXPx32 SP3, the tool failed for me as described. Luckily, I was able to get access to a Win7x64 machine instead, and there it worked just fine.
answered May 19 '13 at 15:04
k0pernikus
77621425
77621425
Same with Windows 10... looks like it only works on Windows 7.
– Dean Kuga
Nov 27 '15 at 1:20
+1 from me. That was exactly the problem. Please can you make it clearer in your answer that the tool doesn't work in Win10, as that would help a lot of people (and probably get you more votes!).
– Avrohom Yisroel
Mar 8 at 18:07
add a comment |
Same with Windows 10... looks like it only works on Windows 7.
– Dean Kuga
Nov 27 '15 at 1:20
+1 from me. That was exactly the problem. Please can you make it clearer in your answer that the tool doesn't work in Win10, as that would help a lot of people (and probably get you more votes!).
– Avrohom Yisroel
Mar 8 at 18:07
Same with Windows 10... looks like it only works on Windows 7.
– Dean Kuga
Nov 27 '15 at 1:20
Same with Windows 10... looks like it only works on Windows 7.
– Dean Kuga
Nov 27 '15 at 1:20
+1 from me. That was exactly the problem. Please can you make it clearer in your answer that the tool doesn't work in Win10, as that would help a lot of people (and probably get you more votes!).
– Avrohom Yisroel
Mar 8 at 18:07
+1 from me. That was exactly the problem. Please can you make it clearer in your answer that the tool doesn't work in Win10, as that would help a lot of people (and probably get you more votes!).
– Avrohom Yisroel
Mar 8 at 18:07
add a comment |
up vote
2
down vote
http://www.kossboss.com/windows64from32 Copy the bootsect.exe into the folder Windows 7 USB DVD Download Tool is installed on and it should work.
add a comment |
up vote
2
down vote
http://www.kossboss.com/windows64from32 Copy the bootsect.exe into the folder Windows 7 USB DVD Download Tool is installed on and it should work.
add a comment |
up vote
2
down vote
up vote
2
down vote
http://www.kossboss.com/windows64from32 Copy the bootsect.exe into the folder Windows 7 USB DVD Download Tool is installed on and it should work.
http://www.kossboss.com/windows64from32 Copy the bootsect.exe into the folder Windows 7 USB DVD Download Tool is installed on and it should work.
answered Dec 30 '13 at 7:04
Pat
212
212
add a comment |
add a comment |
up vote
2
down vote
The following description is taken from the tool's online help:
When creating a bootable USB device, I am getting an error about bootsect
To make the USB device bootable, you need to run a tool named bootsect.exe. In some cases, this tool needs to be downloaded from your Microsoft Store account. This may happen if you're trying to create a 64-bit bootable USB device from a 32-bit version of Windows. To download bootsect:
Login to your Microsoft Store account to view your purchase history
Look for your Windows 7 purchase.
Next to Windows 7, there is an "Additional download options" drop-down menu.
In the drop-down menu, select "32-bit ISO."
Right-click the link, and then save the bootsect.exe file to the location where you installed the Windows 7 USB/DVD Download Tool (e.g.
%UserProfile%AppDataLocalAppsWindows 7 USB DVD Download Tool
).Once the file has been saved, go back to the Windows 7 USB/DVD Download tool to create your bootable USB device.
Archive.org link: https://web.archive.org/web/20130130224114/http://www.sevenforums.com/attachments/installation-setup/47060d1263222191-32-bit-bootsect-bootsect7600x86.zip
add a comment |
up vote
2
down vote
The following description is taken from the tool's online help:
When creating a bootable USB device, I am getting an error about bootsect
To make the USB device bootable, you need to run a tool named bootsect.exe. In some cases, this tool needs to be downloaded from your Microsoft Store account. This may happen if you're trying to create a 64-bit bootable USB device from a 32-bit version of Windows. To download bootsect:
Login to your Microsoft Store account to view your purchase history
Look for your Windows 7 purchase.
Next to Windows 7, there is an "Additional download options" drop-down menu.
In the drop-down menu, select "32-bit ISO."
Right-click the link, and then save the bootsect.exe file to the location where you installed the Windows 7 USB/DVD Download Tool (e.g.
%UserProfile%AppDataLocalAppsWindows 7 USB DVD Download Tool
).Once the file has been saved, go back to the Windows 7 USB/DVD Download tool to create your bootable USB device.
Archive.org link: https://web.archive.org/web/20130130224114/http://www.sevenforums.com/attachments/installation-setup/47060d1263222191-32-bit-bootsect-bootsect7600x86.zip
add a comment |
up vote
2
down vote
up vote
2
down vote
The following description is taken from the tool's online help:
When creating a bootable USB device, I am getting an error about bootsect
To make the USB device bootable, you need to run a tool named bootsect.exe. In some cases, this tool needs to be downloaded from your Microsoft Store account. This may happen if you're trying to create a 64-bit bootable USB device from a 32-bit version of Windows. To download bootsect:
Login to your Microsoft Store account to view your purchase history
Look for your Windows 7 purchase.
Next to Windows 7, there is an "Additional download options" drop-down menu.
In the drop-down menu, select "32-bit ISO."
Right-click the link, and then save the bootsect.exe file to the location where you installed the Windows 7 USB/DVD Download Tool (e.g.
%UserProfile%AppDataLocalAppsWindows 7 USB DVD Download Tool
).Once the file has been saved, go back to the Windows 7 USB/DVD Download tool to create your bootable USB device.
Archive.org link: https://web.archive.org/web/20130130224114/http://www.sevenforums.com/attachments/installation-setup/47060d1263222191-32-bit-bootsect-bootsect7600x86.zip
The following description is taken from the tool's online help:
When creating a bootable USB device, I am getting an error about bootsect
To make the USB device bootable, you need to run a tool named bootsect.exe. In some cases, this tool needs to be downloaded from your Microsoft Store account. This may happen if you're trying to create a 64-bit bootable USB device from a 32-bit version of Windows. To download bootsect:
Login to your Microsoft Store account to view your purchase history
Look for your Windows 7 purchase.
Next to Windows 7, there is an "Additional download options" drop-down menu.
In the drop-down menu, select "32-bit ISO."
Right-click the link, and then save the bootsect.exe file to the location where you installed the Windows 7 USB/DVD Download Tool (e.g.
%UserProfile%AppDataLocalAppsWindows 7 USB DVD Download Tool
).Once the file has been saved, go back to the Windows 7 USB/DVD Download tool to create your bootable USB device.
Archive.org link: https://web.archive.org/web/20130130224114/http://www.sevenforums.com/attachments/installation-setup/47060d1263222191-32-bit-bootsect-bootsect7600x86.zip
edited Jun 23 at 1:40
bertieb
5,537112342
5,537112342
answered Oct 30 '13 at 19:25
M.S. Dousti
349311
349311
add a comment |
add a comment |
up vote
0
down vote
Try to format (FAT32) your USB drive but not using quick option !
You can then check again (using explorer or chkdsk) to see if all sectors are readable.
After formating (from Windows 7) the USB drive will have proper Windows 7 MBR and PBR.
Never had problems with Windows 7 USB/DVD Download Tool.
Help for bootsect.exe - http://technet.microsoft.com/en-us/library/cc749177(v=ws.10).aspx
add a comment |
up vote
0
down vote
Try to format (FAT32) your USB drive but not using quick option !
You can then check again (using explorer or chkdsk) to see if all sectors are readable.
After formating (from Windows 7) the USB drive will have proper Windows 7 MBR and PBR.
Never had problems with Windows 7 USB/DVD Download Tool.
Help for bootsect.exe - http://technet.microsoft.com/en-us/library/cc749177(v=ws.10).aspx
add a comment |
up vote
0
down vote
up vote
0
down vote
Try to format (FAT32) your USB drive but not using quick option !
You can then check again (using explorer or chkdsk) to see if all sectors are readable.
After formating (from Windows 7) the USB drive will have proper Windows 7 MBR and PBR.
Never had problems with Windows 7 USB/DVD Download Tool.
Help for bootsect.exe - http://technet.microsoft.com/en-us/library/cc749177(v=ws.10).aspx
Try to format (FAT32) your USB drive but not using quick option !
You can then check again (using explorer or chkdsk) to see if all sectors are readable.
After formating (from Windows 7) the USB drive will have proper Windows 7 MBR and PBR.
Never had problems with Windows 7 USB/DVD Download Tool.
Help for bootsect.exe - http://technet.microsoft.com/en-us/library/cc749177(v=ws.10).aspx
answered Apr 24 '12 at 21:42
snayob
3,82911018
3,82911018
add a comment |
add a comment |
up vote
0
down vote
I had this issue when trying to create a bootable Windows 7 USB stick for an older laptop (Thinkpad T410).
Even with this warning, it still should boot as far as I understand, but the reason it didn't for me was because I had an older BIOS, so what I ended up doing was using the Rufus USB tool with the following settings:
Notice the 'Partition scheme' and 'Target system'.
I guess the Windows USB tool assumes UEFI and uses the wrong partition scheme? I don't really know, but this worked for me.
add a comment |
up vote
0
down vote
I had this issue when trying to create a bootable Windows 7 USB stick for an older laptop (Thinkpad T410).
Even with this warning, it still should boot as far as I understand, but the reason it didn't for me was because I had an older BIOS, so what I ended up doing was using the Rufus USB tool with the following settings:
Notice the 'Partition scheme' and 'Target system'.
I guess the Windows USB tool assumes UEFI and uses the wrong partition scheme? I don't really know, but this worked for me.
add a comment |
up vote
0
down vote
up vote
0
down vote
I had this issue when trying to create a bootable Windows 7 USB stick for an older laptop (Thinkpad T410).
Even with this warning, it still should boot as far as I understand, but the reason it didn't for me was because I had an older BIOS, so what I ended up doing was using the Rufus USB tool with the following settings:
Notice the 'Partition scheme' and 'Target system'.
I guess the Windows USB tool assumes UEFI and uses the wrong partition scheme? I don't really know, but this worked for me.
I had this issue when trying to create a bootable Windows 7 USB stick for an older laptop (Thinkpad T410).
Even with this warning, it still should boot as far as I understand, but the reason it didn't for me was because I had an older BIOS, so what I ended up doing was using the Rufus USB tool with the following settings:
Notice the 'Partition scheme' and 'Target system'.
I guess the Windows USB tool assumes UEFI and uses the wrong partition scheme? I don't really know, but this worked for me.
answered Jul 12 at 17:43
Shahin Dohan
53947
53947
add a comment |
add a comment |
protected by Community♦ May 16 '14 at 13:42
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?