Skip to main content

Steps of installing Windows XP



How to install windows 7
Step 1 - Start your PC and place your Windows 7 CD in your CD/DVD-ROM drive. 

Note:- You can also use make a bootable pendrive with copied windows 7 files. and set first Booting priority as pendrive.

Restart your pc and following the steps.

Your PC should automatically detect the CD and you will get a message saying "Press any key to boot from CD".

Step 2 - At this stage it will ask you to press F6 if you want to install a third party Raid or SCSI driver. If you are using a an IDE Hard Drive then you do not need to press F6. If you are using a SCSI or SATA Hard drive then you must press F6 otherwise Windows will not detect your Hard Drive during the installation. Please make sure you have the Raid drivers on a floppy disk. Normally the drivers are supplied on a CD which you can copy to a floppy disk ready to be installed. If you are not sure how to do this then please read your motherboard manuals for more information.

Step 3 - Press S to Specify that you want to install additional device.

Step 4 - You will be asked to insert the floppy disk with the Raid or SCSI drivers. Press enter after you have inserted the disk.

Step 5 - You will see a list of Raid drivers for your HDD. Select the correct driver for your device and press enter.

Step 6 - You will then get a Windows XP Professional Setup screen. You have the option to do a new Windows install, Repair previous install or quit. Since we are doing a new install we just press Enter to continue.

Step 7 - You will be presented with the End User Licensing Agreement. Press F8 to accept and continue.

Step 8 - Precess C for create partition. Eg. However for this demonstration I will create two partition. The first partition will be 6000MB (C: drive) and second partition would be 2180MB (E: drive).

Step 9- Select the drive for installing the windows and press enter.

Step 10 - Choose format the partition using NTFS file system.Windows will now start formatting drive C: and start copying setup files.

Step 11 - After the setup has completed copying the files the computer will restart.
Step 12- In few seconds setup will continue. Windows 7 Setup wizard will guide you through the setup process of gathering information about your computer.
Choose your region and language.

Step 13 - Type in your name and organization.
Step 14- Enter your product key.
Step 15 - Name the computer, and enter an Administrator password. Don't forget to write down your Administrator password.
Step 16 - Enter the correct date, time and choose your time zone.
Step 17 - Finally Windows will start and present you with a Welcome screen. Click next to continue.
Step 18 - Add users that will sign on to this computer and click next.

Comments

Popular posts from this blog

Learn Programming in UNIX

Q: - Write a program to input two numbers and add them?             gedit add.sh             clear             echo “enter two numbers:”             read a             read b             sum=`expr$a+$b`             echo $sum Syntax for if-else:- (1)          if test condition             then                 ---------                 --...

O Level Practical Queestion Paper (MS-OFFICE, MSDOS, MS-EXCEL, ICT Resources)

MSDOS 1. Write command to display all files having extension ‘jpg’. 2. Write command to display all files of all types starting with letter ‘m’. 3. Write command to display all files having names up to ten characters with second last letter as ‘n’, e.g. intelligent. 4. Write a command to copy the file mars of type exe from the directory ‘space’ of drive U to another directory “universe” in drive S. 5. Write a command to delete the directory as well as the files of the directory ‘world’ on drive E. 6. Write command to display all file names on the disk in drive A and having an extension of no more than two characters.   7. Write command to copy all the files beginning with ‘m’ and whose file names has a ‘txt’ extension from drive A to the ‘\document’ directory on drive C. 8. Write set of commands to create a subdirectory of the root directory called ‘exercise’, and then move into it 9. Perform the following tasks using DOS commands in the DOS sh...

Concept of Object-Oriented Programming Concept

Concept of Object-Oriented Programming Concept Object Oriented Programming is performed by using class and object.  Class is a set of States and behaviors. Class is also known as a blue print of an object. Class is called an Object factory where more than one object is created. The object is used for accessing all the functionality of Class. An example of Class and Object is CAR----> It is a class  Wagon R, Maruti 800, Alto, Seltos, etc are examples of objects. Object-Oriented Principle:- Encapsulation:- It is a process of binding the data and method in a single unit. A general example of encapsulation is Capsules, Bike, Cake, and others where the data is wrapped in a single unit. The Class is also an example of Encapsulation because Class also binds the state and behavior. Abstraction: Abstraction is a process where only essential information is shown for use and unnecessary information about an object is hidden from the user. ATM is an example of Abstraction where users...