How To: Install Windows 7/Vista From USB Drive [Detailed 100% Working Guide]


From 
This guide works 100% for Vista & Windows 7 unlike most of the guides out there. I have seen many sites/blogs that have “Install Vista from USB guide” but either with incomplete steps or not working guide. I have also seen some guides that don’t’ use proper commands in this guide. After spending many hours I have come up with this 100% working guide.
Bootable USB drive
I just did this method on one of my friends machine and installed the new Windows 7 BETA. The main advantage is that by using USB drive you will be able to install Windows 7/Vista in just 15 minutes. You can also use this bootable USB drive on friend’s computer who doesn’t have a DVD optical drive.
The method is very simple and you can use without any hassles. Needless to say that your motherboard should support USB Boot feature to make use of the bootable USB drive.
Requirements:
*USB Flash Drive (Minimum 4GB)
*Windows 7 or Vista installation files.
Follow the below steps to create bootable Windows 7/Vista USB drive using which you can install Windows 7/Vista easily.
1. Plug-in your USB flash drive to USB port and move all the contents from USB drive to a safe location on your system.
2. Open Command Prompt with admin rights. Use any of the below methods to open Command Prompt with admin rights.
*Type cmd in Start menu search box and hit CtrlShiftEnter.
Or
*Go to Start menu > All programs > Accessories, right click on Command Prompt and select Run as administrator.
3. You need to know about the USB drive a little bit. Type in the following commands in the command prompt:
First type DISKPART and hit enter to see the below message.
Bootable USB Drive
Next type LIST DISK command and note down the Disk number (ex: Disk 1) of your USB flash drive. In the below screenshot my Flash Drive Disk no is Disk 1.
4. Next type all the below commands one by one. Here I assume that your disk drive no is “Disk 1”.If you have Disk 2 as your USB flash drive then use Disk 2.Refer the above step to confirm it.
So below are the commands you need to type and execute one by one:
SELECT DISK 1
CLEAN
CREATE PARTITION PRIMARY
SELECT PARTITION 1
ACTIVE
FORMAT FS=NTFS
(Format process may take few seconds)
ASSIGN
EXIT
Don’t close the command prompt as we need to execute one more command at the next step. Just minimize it.
Bootable USB Drive
5. Next insert your Windows7/Vista DVD into the optical drive and check the drive letter of the DVD drive. In this guide I will assume that your DVD drive letter is “D” and USB drive letter is “H” (open my computer to know about it).
6. Maximize the minimized Command Prompt in the 4th step.Type  the following command now:
D: CD BOOT and hit enter.Where “D” is your DVD drive letter.
CD BOOT and hit enter to see the below message.
7. Type another command given below to update the USB drive with BOOTMGR compatible code.
BOOTSECT.EXE /NT60 H:
14
Where “H” is your USB drive letter. Once you enter the above command you will see the below message.
8. Copy your Windows 7/Vista DVD contents to the USB flash drive.
9. Your USB drive is ready to boot and install Windows 7/Vista. Only thing you need to change the boot priority at the BIOS to USB from the HDD or CD ROM drive. I won’t explain it as it’s just the matter the changing the boot priority or enabling the USB boot option in the BIOS.
Note: If you are not able to boot after following this guide means you haven’t set the BIOS priority to USB. If you got any problem in following this guide feel free to ask questions by leaving comment.
Update: If you find this guide difficult to follow, please use the easy-to-use guide to create a bootable USB to install Windows 7 using official tool.

Online Books



كتاب بيتكلم عن الاسئلة الشائعة في البرمجة ومجال الكمبيوتر في ال interview
كتاب بيتكلم عن ال web design
اسم الكتاب شرحه :D
كتاب بيتكلم عن إزاي اطلع ال 3D model  من point cloud
زي اللي قبله :D
بيتكلم عن CSS, HTML, Ajax, web programming, Mootools, Scriptaculous :D


نبذة عن استخدام Grids

من الوسائل المساعدة لتصميم صفحات الويب استخدام شبكات "Grids" حتى تضمن خروج التصميم بشكل منظم ومتوازن ومريح للعين

كل الفكرة انك بتصمم عليه بحيث تتوازى كل عناصر الصفحة فى التصميم ليس إلا عن طريق استخدام هذه الأعمدة كحد لبداية عنصر ما أو نهايتها .


يمكنك إنشاء أعمدة خاصة بك من الفوتوشوب تختارView->New Guide


ويمكنك استخدام قوالب جاهزة وأشهرها 960 Grid System



يمكنك الإطلاع على هذه الروابط كشرح تفصيلى

Grids Design Basics

A Brief Look at Grid-Based Layouts in Web Design

أضمن لك بعد استخدامها تصميم web2 نظيف مريح للعين

Marching Cube

First u should be sure that zone is contains cubes nothing else

If(zone.elementtype.equal(Elementtype.FEBrick) || zone.elementtype.equal(Elementtype.ijkBrick))
}
1- Determine cube index

2- Get triangles

3- Get positions

4- Rendering



Else

MessegeBox.Show(“msh ynfa3 ”);

Deterine cube index

If u get all vertices in cube u will not be sure that its in the same order with marching cube structure

Sooooooooooo

U should get vertices from the top and buttom faces

U have builtin function in element called

Element.getbreackbuttomface

And the same with front face (cant remember the fn. Name sry)

Foreach vertix in front and buttom face u should check each vertix date if < ISO so u should write 1 in the cube index

Example


If vertix 3,7 data < ISO


Sooo


Index should be


01000100


Get triangles

Then u should convert this index to decimal(int) then get the value from tritable(in link u should take it copy paste) (edgetable nt important )

Tritable returns the ordered edges which ISO intersect with

Example


If tritable returned [3 7 5 2 7 3 -1 -1 -1 -1 -1 -1]


That’s mean edges 3,7,5 form triangle and edges 2,7,3 form another triangle and so on


Get positions

Then u wanna to get positions of intersection

U should tc that ur structure is defferent

Soooo

U should determine each edge (manualy) start, and end vertix

bY

swich case , if statement, OR table u construct for that purpose

u chech each edge between which vertices and then interpolate to get intersection position




Example


[3 7 5 2 7 3 -1 -1 -1 -1 -1 -1]


U check


Edge 3 between vertix 0 and 3


Then u should get intersection


P = P1 + (isovalue - V1) (P2 - P1) / (V2 - V1)


Rendering

U draw triangle between each 3 points u determine from last step

Dnt forget to get color of each ISO



If u have more than 1 ISO

Apply the last steps for each ISO

I use min value as ISO u can start ur ISO.s after min ISO

Results

Order1

Min value 0.3337…

Max value 0.9

Sooo

Using 9 colors LUT

ISO = 0.4




ISO=0.5




ISO = 0.6




ISO = 0.7




ISO = 0.8




ISO = 0.9






Using 9 colors TF

ISO=0.4




ISO=0.5




ISO=0.6




ISO=0.7




ISO=0.8




ISO=0.9






Multi ISO TF



# ISO= 3




# ISO= 4




# ISO= 5




Multi ISO LUT

ISO=3




ISO=4




# ISO= 5