Page 2 of 2

Re: Install windows 7 From Pen drive

Posted: Thu Jan 26, 2012 12:04 pm
by Nandika
Quick boot menu
Photo-0047.jpg
Photo-0047.jpg (270.29 KiB) Viewed 7604 times
[ Post made via Mobile Device ] Image

Re: Install windows 7 From Pen drive

Posted: Thu Jan 26, 2012 12:12 pm
by Nandika
he...
now booting by pen drive.
no problem.:)
Photo-0049.jpg
Photo-0049.jpg (212.08 KiB) Viewed 7604 times
[ Post made via Mobile Device ] Image

Re: Install windows 7 From Pen drive

Posted: Thu Jan 26, 2012 12:19 pm
by Nandika
Photo-0050.jpg
Photo-0050.jpg (205.26 KiB) Viewed 7604 times
[ Post made via Mobile Device ] Image

Re: Install windows 7 From Pen drive

Posted: Thu Jan 26, 2012 6:47 pm
by SemiconductorCat
i cant describe inside activities of this methord.it also not in magazine.
i dont know about boot secter well.if you can,describe me.i think boot sector has data and instruction for give to BIOS program.
some time,at formating automatically creat it as Sandun saied.
The boot sector uses the BIOS calls to read disks and do other I/O. It's nothing more than a very low level
API. It's not protected mode it's real mode. There is a extension for this called EFI, Extensible firmware Interface,
which replaces the BIOS calls and it let you to run in protected mode. EFI is used in newer systems.


Formatting does place those 17 sectors , but what does those 17 sectors do is locate the NTLDR in the
root file system and load it. Nothing more than that. So if NTLDR doesn't found, it will report a error message
"NTLDR not found" and reboot the computer.

It's not magical thing, you can dissemble and see what's on your boot sector.
http://bootmaster.filerecovery.biz/appnote3.html
disassemble the code and read the code , have the fun ;)

Old days [windows 95 days, my golden days in computing] we did it using the command 'sys C:\' now just formatting
will do the job.

please note that those 17 sectors is just for locating the NTLDR and load it to the memory and jump to it.
It's won't function as a bootmanager. I don't think somebody can write a complete boot manager inside
17 sectors of code+data space.