Windows Help Center

Your One Stop Blog for all Windows XP and VISTA tricks,tweaks ,hacks and much more.

Followers

Ads By Google

1000 Awesome Things About India

Blog Stats

recent Tricks

Ads By Google

Link Unit By Google

Categories

Register for Free

Google Search

Showing posts with label tarun reflex. Show all posts

First you need a tool called "Resource Hacker". This free program allows you to change resources in any .exe file such as "Explorer.exe", which includes the [Start] button's Label. You can visit Download.com and search there for "Resource Hacker".
After you download it, follow the guide here:
Step 1:
A - Run "Resource Hacker" and open the file "%windir%\Explorer.exe".
B - You see a Tree of all Resources in this file, expand the "String Table"
C - Find the "start" and replace it with your own text. then press the [Compile Script] button.
D - Save "Explorer.exe" as "MyStart.exe" DONT save it as Explorer.exe, do "save as.." and give it a new name.
E - Quit "Resource Hacker".
Step 2:
A - Click on the [Start] button and choose the "Run..." item from the start menu. (Or use the shortcut key WinKey+R)
B - Type "RegEdit" in the Run "Dialog Box". And then press the [Ok] buton to run the "Registry Editor" program.
C - Go to: "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\WindowsNT\CurrentVersion\Winlogon" and find the "Shell" property.
D - Replace value of the "Shell" property to "MyStart.exe".
E - Quit "Registry Editor".
F - Restart your system.
Note about Registry Editor:
if you did not find the key "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\WindowsNT\CurrentVersion\Winlogon", you can search the Registry for the "Explorer.exe", to do this use the Edit Menu | Find Next (Ctrl+F).
AmirBehzad Eslami's site has a handy tool for altering your start button, which makes life much easier, you can find his site here:
h**p://www.startbtn.main-page.com

First the safety rules

The inside of a computer is a bad place full of electricity and sharp edges.
On the electricity side always when working on you computer make sure that it’s still plugged in to the power socket and the power is turned off, this is to ensure that any static
From you is discharged through the earth. The inside of most computer cases are unfinished metal and has very sharp edges so be careful.

The first signs of a battery failing are:-

1) your clock starts running slowly
2) when you boot (start) your computer it has a problem finding your hardware (no hard drive, no cd rom)

To change the battery you need the following tools

1) a X-point screwdriver
2) an anti-static strap(optional)
3) a new battery (seems logical)

Then unplug all the cables from the back of the computer as you remove them make a note where they came from. (So when you finished you can put them back)

Move the computer somewhere where you can work on it with ease

Remove the cover by locating the screws around the outer edge (back) of the computer
Some computer cases only require you to remove 2 screws on one side then a panel can be removed allowing you access to the computers insides, others you must remove 6 screws and remove the whole case by sliding it to the rear and lifting it off.

Now make sure that you read the safety instructions about static.
Look inside you will see a round silver thing that looks about the size of a 10p piece (quarter). This is the battery itself, carefully lift the retaining clip and slide the battery out. That’s it removed now go to your local computer retailer, electrical retailer (Tandy/Radio shack) taking the old battery with you and get a new battery.

Back to your computer insert the new battery by lifting the clip and sliding the battery in.

Reinstall your case and plug all the cables back (you did remember to label them didn’t you)

Now for the fun part.

You will now need to go into you bios….

Right the bios is the god of your computer.

To access it, when your computer first starts you will see a black screen with white text.

If you look carefully you will see a line that says something like "press del for setup" or some other key (F2 or ESC or tab) this will take you to god's house where you can make lots of changes to the way your machine works.

It is also the place where you can make your nice computer in to a rather expensive door stop so be careful and don’t go playing with anything.

You will now be presented with a blue screen with a lot of options on it,
The one we want is load optimised/default settings.

Press the F10 key and type y the computer should now reboot.

If every thing went well then your computer will now be up and running. 



Shizers way: Keep computer running. Lay it on it's side and remove side cover to expose MoBo. Take any thin object, "small screwdriver, knife point, wood shiskabob skewer. Pull back the battery retaining clip. Toss the old battery in the junk recepticle, unless you belong to greenpeace and want to save the earth. Install the new battery. No need to reset bios becasue the compter supplies voltage to the cmos while it is running. Reset or resync clock with internet. Done!

How Linux boots

As it turns out, there isn't much to the boot process:

   1. A boot loader finds the kernel image on the disk, loads it into memory, and starts it.
   2. The kernel initializes the devices and its drivers.
   3. The kernel mounts the root filesystem.
   4. The kernel starts a program called init.
   5. init sets the rest of the processes in motion.
   6. The last processes that init starts as part of the boot sequence allow you to log in.

Identifying each stage of the boot process is invaluable in fixing boot problems and understanding the system as a whole. To start, zero in on the boot loader, which is the initial screen or prompt you get after the computer does its power-on self-test, asking which operating system to run. After you make a choice, the boot loader runs the Linux kernel, handing control of the system to the kernel.

There is a detailed discussion of the kernel elsewhere in this book from which this article is excerpted. This article covers the kernel initialization stage, the stage when the kernel prints a bunch of messages about the hardware present on the system. The kernel starts init just after it displays a message proclaiming that the kernel has mounted the root filesystem:

VFS: Mounted root (ext2 filesystem) readonly.

Soon after, you will see a message about init starting, followed by system service startup messages, and finally you get a login prompt of some sort.

NOTE On Red Hat Linux, the init note is especially obvious, because it "welcomes" you to "Red Hat Linux." All messages thereafter show success or failure in brackets at the right-hand side of the screen.

Most of this chapter deals with init, because it is the part of the boot sequence where you have the most control.
init

There is nothing special about init. It is a program just like any other on the Linux system, and you'll find it in /sbin along with other system binaries. The main purpose of init is to start and stop other programs in a particular sequence. All you have to know is how this sequence works.

There are a few different variations, but most Linux distributions use the System V style discussed here. Some distributions use a simpler version that resembles the BSD init, but you are unlikely to encounter this.

Runlevels

At any given time on a Linux system, a certain base set of processes is running. This state of the machine is called its runlevel, and it is denoted with a number from 0 through 6. The system spends most of its time in a single runlevel. However, when you shut the machine down, init switches to a different runlevel in order to terminate the system services in an orderly fashion and to tell the kernel to stop. Yet another runlevel is for single-user mode, discussed later.

The easiest way to get a handle on runlevels is to examine the init configuration file, /etc/inittab. Look for a line like the following:

id:5:initdefault:

This line means that the default runlevel on the system is 5. All lines in the inittab file take this form, with four fields separated by colons occurring in the following order:
# A unique identifier (a short string, such as id in the preceding example)
# The applicable runlevel number(s)
# The action that init should take (in the preceding example, the action is to set the default runlevel to 5)
# A command to execute (optional)

There is no command to execute in the preceding initdefault example because a command doesn't make sense in the context of setting the default runlevel. Look a little further down in inittab, until you see a line like this:

l5:5:wait:/etc/rc.d/rc 5

This line triggers most of the system configuration and services through the rc*.d and init.d directories. You can see that init is set to execute a command called /etc/rc.d/rc 5 when in runlevel 5. The wait action tells when and how init runs the command: run rc 5 once when entering runlevel 5, and then wait for this command to finish before doing anything else.

There are several different actions in addition to initdefault and wait, especially pertaining to power management, and the inittab(5) manual page tells you all about them. The ones that you're most likely to encounter are explained in the following sections.

respawn

The respawn action causes init to run the command that follows, and if the command finishes executing, to run it again. You're likely to see something similar to this line in your inittab file:

1:2345:respawn:/sbin/mingetty tty1

The getty programs provide login prompts. The preceding line is for the first virtual console (/dev/tty1), the one you see when you press ALT-F1 or CONTROL-ALT-F1. The respawn action brings the login prompt back after you log out.

ctrlaltdel

The ctrlaltdel action controls what the system does when you press CONTROL-ALT-DELETE on a virtual console. On most systems, this is some sort of reboot command using the shutdown command.

sysinit

The sysinit action is the very first thing that init should run when it starts up, before entering any runlevels.

How processes in runlevels start

You are now ready to learn how init starts the system services, just before it lets you log in. Recall this inittab line from earlier:

l5:5:wait:/etc/rc.d/rc 5

This small line triggers many other programs. rc stands for run commands, and you will hear people refer to the commands as scripts, programs, or services. So, where are these commands, anyway?

For runlevel 5, in this example, the commands are probably either in /etc/rc.d/rc5.d or /etc/rc5.d. Runlevel 1 uses rc1.d, runlevel 2 uses rc2.d, and so on. You might find the following items in the rc5.d directory:

S10sysklogd       S20ppp          S99gpm
S12kerneld        S25netstd_nfs   S99httpd
S15netstd_init    S30netstd_misc  S99rmnologin
S18netbase        S45pcmcia       S99sshd
S20acct           S89atd
S20logoutd        S89cron 

The rc 5 command starts programs in this runlevel directory by running the following commands:

S10sysklogd start
S12kerneld start
S15netstd_init start
S18netbase start
...
S99sshd start 

Notice the start argument in each command. The S in a command name means that the command should run in start mode, and the number (00 through 99) determines where in the sequence rc starts the command.

The rc*.d commands are usually shell scripts that start programs in /sbin or /usr/sbin. Normally, you can figure out what one of the commands actually does by looking at the script with less or another pager program.

You can start one of these services by hand. For example, if you want to start the httpd Web server program manually, run S99httpd start. Similarly, if you ever need to kill one of the services when the machine is on, you can run the command in the rc*.d directory with the stop argument (S99httpd stop, for instance).

Some rc*.d directories contain commands that start with K (for "kill," or stop mode). In this case, rc runs the command with the stop argument instead of start. You are most likely to encounter K commands in runlevels that shut the system down.

Adding and removing services

If you want to add, delete, or modify services in the rc*.d directories, you need to take a closer look at the files inside. A long listing reveals a structure like this:

lrwxrwxrwx . . . S10sysklogd -> ../init.d/sysklogd
lrwxrwxrwx . . . S12kerneld -> ../init.d/kerneld
lrwxrwxrwx . . . S15netstd_init -> ../init.d/netstd_init
lrwxrwxrwx . . . S18netbase -> ../init.d/netbase
... 

The commands in an rc*.d directory are actually symbolic links to files in an init.d directory, usually in /etc or /etc/rc.d. Linux distributions contain these links so that they can use the same startup scripts for all runlevels. This convention is by no means a requirement, but it often makes organization a little easier.

To prevent one of the commands in the init.d directory from running in a particular runlevel, you might think of removing the symbolic link in the appropriate rc*.d directory. This does work, but if you make a mistake and ever need to put the link back in place, you might have trouble remembering the exact name of the link. Therefore, you shouldn't remove links in the rc*.d directories, but rather, add an underscore (_) to the beginning of the link name like this:

mv S99httpd _S99httpd

At boot time, rc ignores _S99httpd because it doesn't start with S or K. Furthermore, the original name is still obvious, and you have quick access to the command if you're in a pinch and need to start it by hand.

To add a service, you must create a script like the others in the init.d directory and then make a symbolic link in the correct rc*.d directory. The easiest way to write a script is to examine the scripts already in init.d, make a copy of one that you understand, and modify the copy.

When adding a service, make sure that you choose an appropriate place in the boot sequence to start the service. If the service starts too soon, it may not work, due to a dependency on some other service. For non-essential services, most systems administrators prefer numbers in the 90s, after most of the services that came with the system.

Linux distributions usually come with a command to enable and disable services in the rc*.d directories. For example, in Debian, the command is update-rc.d, and in Red Hat Linux, the command is chkconfig. Graphical user interfaces are also available. Using these programs helps keep the startup directories consistent and helps with upgrades.

HINT: One of the most common Linux installation problems is an improperly configured XFree86 server that flicks on and off, making the system unusable on console. To stop this behavior, boot into single-user mode and alter your runlevel or runlevel services. Look for something containing xdm, gdm, or kdm in your rc*.d directories, or your /etc/inittab.

Controlling init

Occasionally, you need to give init a little kick to tell it to switch runlevels, to re-read the inittab file, or just to shut down the system. Because init is always the first process on a system, its process ID is always 1.

You can control init with telinit. For example, if you want to switch to runlevel 3, use this command:

telinit 3

When switching runlevels, init tries to kill off any processes that aren't in the inittab file for the new runlevel. Therefore, you should be careful about changing runlevels.

When you need to add or remove respawning jobs or make any other change to the inittab file, you must tell init about the change and cause it to re-read the file. Some people use kill -HUP 1 to tell init to do this. This traditional method works on most versions of Unix, as long as you type it correctly. However, you can also run this telinit command:

telinit q

You can also use telinit s to switch to single-user mode.

Shutting down

init also controls how the system shuts down and reboots. The proper way to shut down a Linux machine is to use the shutdown command.

There are two basic ways to use shutdown. If you halt the system, it shuts the machine down and keeps it down. To make the machine halt immediately, use this command:

shutdown -h now

On most modern machines with reasonably recent versions of Linux, a halt cuts the power to the machine. You can also reboot the machine. For a reboot, use -r instead of -h.

The shutdown process takes several seconds. You should never reset or power off a machine during this stage.

In the preceding example, now is the time to shut down. This argument is mandatory, but there are many ways of specifying it. If you want the machine to go down sometime in the future, one way is to use +n, where n is the number of minutes shutdown should wait before doing its work. For other options, look at the shutdown(8) manual page.

To make the system reboot in 10 minutes, run this command:

shutdown -r +10

On Linux, shutdown notifies anyone logged on that the machine is going down, but it does little real work. If you specify a time other than now, shutdown creates a file called /etc/nologin. When this file is present, the system prohibits logins by anyone except the superuser.

When system shutdown time finally arrives, shutdown tells init to switch to runlevel 0 for a halt and runlevel 6 for a reboot. When init enters runlevel 0 or 6, all of the following takes place, which you can verify by looking at the scripts inside rc0.d and rc6.d:

   1. init kills every process that it can (as it would when switching to any other runlevel). 

# The initial rc0.d/rc6.d commands run, locking system files into place and making other preparations for shutdown.
# The next rc0.d/rc6.d commands unmount all filesystems other than the root.
# Further rc0.d/rc6.d commands remount the root filesystem read-only.
# Still more rc0.d/rc6.d commands write all buffered data out to the filesystem with the sync program.
# The final rc0.d/rc6.d commands tell the kernel to reboot or stop with the reboot, halt, or poweroff program.

The reboot and halt programs behave differently for each runlevel, potentially causing confusion. By default, these programs call shutdown with the -r or -h options, but if the system is already at the halt or reboot runlevel, the programs tell the kernel to shut itself off immediately. If you really want to shut your machine down in a hurry (disregarding any possible damage from a disorderly shutdown), use the -f option. 

 Start Nero

From the action-bar select File and select Preferences.



In the Preferences window, select Expert Features(1) and check the Enable overburn disc-at-once(2).



Choose a Maximum CD Length(3) and click OK(4) (*82:59:59 is the maximum value I suggest, but as you can see from the screen capture above I have set mine significantly higher. The reason is because I frequently use 99min 850 MB CD media).

For a more accurate test you can use a nero tool called nero speed test to see how much a specific CD is capable of being overburned . get it here

From the action-bar select File and select Write CD.



A window will appear when you have exceeded expected length, click OK to start the overburn copy.

Remember to set disk to burn Disc at Once, you cannot overburn in Track at Once Mode. 



You can create a file of any size using nothing more than what's supplied with Windows. Start by converting the desired file size into hexadecimal notation. You can use the Windows Calculator in Scientific mode do to this. Suppose you want a file of 1 million bytes. Enter 1000000 in the calculator and click on the Hex option to convert it (1 million in hex is F4240.) Pad the result with zeroes at the left until the file size reaches eight digits—000F4240.

Now open a command prompt window. In Windows 95, 98, or Me, you can do this by entering COMMAND in the Start menu's Run dialog; in Windows NT 4.0, 2000, or XP enter CMD instead. Enter the command DEBUG BIGFILE.DAT and ignore the File not found message. Type RCX and press Enter. Debug will display a colon prompt. Enter the last four digits of the hexadecimal number you calculated (4240, in our example). Type RBX and press Enter, then enter the first four digits of the hexadecimal size (000F, in our example). Enter W for Write and Q for Quit. You've just created a 1-million-byte file using Debug. Of course you can create a file of any desired size using the same technique.

BIOS Update Procedure

All latest Motherboards today, 486/ Pentium / Pentium Pro etc.,ensure that upgrades are easily obtained by incorporating the system BIOS in a FLASH Memory component. With FLASH BIOS, there is no need to replace an EPROM component. Once downloaded, the upgrade utility fits on a floppy disc allowing the user to save, verify and update the system BIOS. A hard drive or a network drive can also be used to run the newer upgrade utilities. However, memory managers can not be installed while upgrading.

Most pre-Pentium motherboards do not have a Flash BIOS. The following instructions therefore do not apply to these boards. If your motherboard does not have a Flash BIOS (EEPROM) you will need to use an EPROM programmer to re-program the BIOS chip. See your dealer for more information about this.

Please read the following instructions in full before starting a Flash BIOS upgrade:
A. Create a Bootable Floppy (in DOS)

•With a non-formatted disk, type the following:

format a:/s

•If using a formatted disk, type:

sys a:

This procedure will ensure a clean boot when you are flashing the new BIOS.

B. Download the BIOS file

•Download the correct BIOS file by clicking on the file name of the BIOS file you wish to download.

•Save the BIOS file and the Flash Utility file in the boot disk you have created. Unzip the BIOS file and the flash utility file. If you don't have an "unzip" utility, download the WinZip for Windows 95 shareware/ evaluation copy for that one time use from _www.winzip.com or _www.pkware.com. Most CD ROMs found in computer magazines, have a shareware version of WinZip on them.

•You should have extracted two files:

Flash BIOS utility eg: flash7265.exe (for example)

BIOS eg: 6152J900.bin (example)

Use the latest flash utility available unless otherwise specified (either on the BIOS update page or in the archive file). This information is usually provided.

C. Upgrade the System BIOS

During boot up, write down the old BIOS version because you will need to use it for the BIOS backup file name.

Place the bootable floppy disk containing the BIOS file and the Flash Utility in drive a, and reboot the system in MS-DOS, preferably Version 6.22

•At the A:> prompt, type the corresponding Flash BIOS utility and the BIOS file with its extension.

For example:

flash625 615j900.bin

•From the Flash Memory Writer menu, select "Y" to "Do you want to save BIOS?" if you want to save (back up) your current BIOS (strongly recommended), then type the name of your current BIOS and its extension after FILE NAME TO SAVE: eg: a:\613J900.bin

Alternatively select "N" if you don't want to save your current BIOS. Beware, though, that you won't be able to recover from a possible failure.

•Select "Y" to "Are you sure to program?"

•Wait until it displays "Message: Power Off or Reset the system"

Once the BIOS has been successfully loaded, remove the floppy disk and reboot the system. If you write to BIOS but cannot complete the procedure, do not switch off, because the computer will not be able to boo, and you will not be given another chance to flash. In this case leave your system on until you resolve the problem (flashing BIOS with old file is a possible solution, provided you've made a backup before)

Make sure the new BIOS version has been loaded properly by taking note of the BIOS identifier as the system is rebooting.

For AMI BIOS
Once the BIOS has been successfully loaded, remove the floppy disk and reboot the system holding the "END" key prior to power on until you enter CMOS setup. If you do not do this the first time booting up after upgrading the BIOS, the system will hang.

BIOS Update Tips
note:
1.Make sure never to turn off or reset your computer during the flash process. This will corrupt the BIOS data. We also recommend that you make a copy of your current BIOS on the bootable floppy so you can reflash it if you need to. (This option is not available when flashing an AMI BIOS).

2. If you have problems installing your new BIOS please check the following:

Have you done a clean boot?
In other words, did you follow the above procedure for making a bootable floppy? This ensures that when booting from "A" there are no device drivers on the diskette. Failing to do a clean boot is the most common cause for getting a "Memory Insufficient" error message when attempting to flash a BIOS.

If you have not used a bootable floppy, insure a clean boot either by

a) pressing F5 during bootup

b) by removing all device drivers on the CONFIG.SYS including the HIMEM.SYS. Do this by using the EDIT command.

Have you booted up under DOS?
Booting in Windows is another common cause for getting a "Memory Insufficient" error message when attempting to flash a BIOS. Make sure to boot up to DOS with a minimum set of drivers. Important: Booting in DOS does not mean selecting "Restart computer in MS-DOS Mode" from Windows98/95 shutdown menu or going to Prompt mode in WindowsNT, but rather following the above procedure (format a: /s and rebooting from a:\).

Have you entered the full file name of the flash utility and the BIOS plus its extension?
Do not forget that often you will need to add a drive letter (a:\) before flashing the BIOS. Example: when asked for file name of new BIOS file which is on your floppy disk, in case you're working from c:\ your will need to type a:\615j900.bin, rather than 615j900.bin only.


Damn, Bill, you have come a LONG way. Look at you there back in '82, you handsome devil. As part of our tribute, let's take a quick look back at the top ten greatest (and not so great) products created on Bill-time, shall we? Don't worry, it'll only sting a little.


Hits




Internet Explorer (IE)
Introduced 1995
It's really easy to simply remember "Internet Exploder" as the standards-breaking, web-forking, buggy, monopoly-causing app that helped shape Bill's old image as the evilest baron of all technology companies. But it's also the app that led to the creation Ajax-based web apps through the XMLHttpRequest spec, and the kludgey early popularization of CSS. Love it or hate it, IE's gotten more people on the web over the years than any browser, and that's definitely got to count for something.



Media Center
Introduced 2002
Despite TiVo's DVR dominance and competitors that came and went over the years, Media Center has always been an underrated standout product. Even Bill admits that the company's long struggled with usability, but Media Center is a beacon of hope not only for 10-foot UIs everywhere, but also for the company's ability to create powerful, advanced, user-friendy products. Between its online integration, extensible plugin architecture, ability to stream shows to nodes around the house, and now CableCARD support, the only real downside to Media Center is the fact that you still need a full-blown PC to run it.



MS-DOS
Introduced 1981, discontinued 2000
It was arcane and nigh-unusable to mere mortals -- but the early cash-cow was one of Bill's most strategic moves, and helped Microsoft define the concept of software licensing. It also helped launched Mossberg's career as crusader of user-friendly technology. But most importantly, MS-DOS was still the OS an entire generation grew up learning, so del crticsm.* for a second because our autoexec.bat and config.sys were so very well crafted, and extensively tweaking Memmaker for a few extra KB of usable RAM definitely ranks amongst our top most formative geek moments.



Office
Introduced 1989 (on Mac), 1990 (on PC)
Word, Excel and PowerPoint certainly did well enough on their own, but when Microsoft combined 'em into the tidy (and pricey) package that is Office -- first on the Mac in 1989, interestingly -- it had a selling point that would prove irresistible to many a productivity-obsessed middle manager even today. The addition of Outlook and its support for the (for some) nigh-indispensable Exchange only further solidified its foothold in the corporate computing world, and that's where Bill knew the real money was. That's certainly not to say that it hasn't been without its share of problems and annoyances, though -- we're looking at you, Clippy.



Peripherals
Introduced 1982
Microsoft has always been a software company first, but it's been cranking out high-quality peripherals for over 25 years -- long before the Xbox and Zune were even a twinkle in Bill's eye. Not only that, but it's been a reliable innovator in the field, with a string of devices that were first, early, or just simply popularized technologies like the wheel mouse, force-feedback joysticks and controllers, the modern optical mouse, and the ergo-keyboard. The division has gone through some bumpy times -- the SideWinder line was killed off for a while there, and there've been some questionable designs along the way -- but it's been riding high as of late, and it doesn't show any signs of slowing down soon.



Windows 3.1 / NT 3.5
Introduced 1992 and 1994
It took a few versions to come into its own, but by the time Windows hit 3.1, Microsoft finally had a product that was able to pull PC users away from the command line (for some of the time, at least) and give them a real taste of things to come. Windows NT may not have had quite the same appeal with the average consumer, but it did bring the operating system into the 32-bit world and pave the way for enterprise desktop computing as we know it today. (Plus, it had the NT file system (NTFS), which to this day continues to carry on the legacy in its own little way.) We really wish they'd made a sequel to the Pirates of Silicon Valley, because we'd love to have seen the dramatization of Bill overseeing the first popularized verions of Windows -- especially '95, which came out just a couple of years later.

Windows 2000 and XP
Introduced 2000
When thinking of Microsoft and the new millennium, few people are able to keep the crinkles out of their nose. Thankfully, Windows ME wasn't the only thing that arrived in late Y2K, as Windows 2000 rushed in to rock the socks off of suits everywhere. The whole Win2K thing went over so well that Gates and company decided to base its next consumer OS, XP, off of it. Some may argue that the resulting product still stands as the last great OS to ship out of Redmond.



Windows CE / Mobile

Introduced 1996
As two of the most ubiquitous projects to come out from under Bill's command, both Windows CE and Windows Mobile are almost impossible to avoid when it comes to handhelds or phones. What began as a mishmash of small components has grown into the adaptable -- though sometimes maddening -- mobile OS that resides on just about every kind of device you can think of. Really, we mean every kind of device, from PMPs to enterprise-level stock-keeping systems. The slimmed down and restructured micro-Windows is at the very least one of the more flexible offerings the company has ever produced. Say what you will about its usability, there's no denying the massive impact it's had on portability and convergence.



Xbox and Xbox 360
Introduced 2001 and 2005
Back in 1999, Bill was all about multimedia convergence, and he said that a new gaming / multimedia device would be Microsoft's trojan horse into the world's living rooms with something coined the "DirectX-box." In 2001, the original Xbox entered gaming territory dominated by Sony's PlayStation with Nintendo's N64. But the clunky machine brought with it the first easy to use multiplayer console service, Xbox Live, as well as a developer-centric model that helped turn the tables. Of course, things look quite a bit different today: the Xbox 360 leads the former market leader's PlayStation 3 in spend and attach rate, and with the relative success of media and content sales on Xbox Live, it seems Bill's dream of dominating the living room wasn't just a pipe-dream after all.



Visual Basic
Introduced 1991, discontinued 1998
It's hard to underestimate the impact of Visual Basic. While the average user might have never heard of the original VB that Microsoft released way back when, the simplicity of the language and its graphical toolset made just about any power user a potential app developer, powering the flood of third party application development Microsoft operating systems enjoyed throughout the 90's. Sadly, Visual Basic met its demise at the hands of more modern languages and toolsets, but with a legacy of making programming accessible to the masses, its place in the history books and in Bill's pocketbook is undoubtedly secure.

Runners-up: DirectX, Flight Sim, Portable Media Center, Solitaire and Minesweeper



Misses




Auto PC
Introduced 1998, discontinued 2001*
Riding high on its previously-introduced sister products -- the Handheld PC and Palm PC platforms, now dead and transformed into Windows Mobile, respectively -- Microsoft's Auto PC initiative was promised to herald a revolution for in-car entertainment and productivity. There's no question it was well ahead of its time; in fact, many of the features debuted in Auto PC have gone on to become standard fare in today's cars. Problem was, when it launched your ride was already pimped with a mere CD player. In-car navigation, voice recognition, and MP3 support were still the stuff of science fiction in those dark days (particularly at the four-digit asking price), and the whole thing was doomed to a geeky, spendy niche. Though products were initially expected from several manufacturers, Clarion ended up being the only one to actually produce a head unit.

*The Auto PC lived on in spirit as Clarion's Joyride, but Microsoft's heart was no longer in the project and Clarion had switched to a generic Windows CE-based core to build the product.



Microsoft Bob
Introduced 1995, discontinued 1996
Poor Bob. No one ever gave him a chance. Maybe it had to do with the fact that he was really annoying. And as it turns out, Bill was dating Melinda French, Bob's program manager. Which isn't to say there was any nepotism involved -- Bob suffered an early death in 1996 due to general hatred for the little bastard. Bill offered this to a column in January, 1997, "Unfortunately, [Bob] demanded more performance than typical computer hardware could deliver at the time and there wasn't an adequately large market. Bob died." Thankfully, Billinda's blossoming relationship lived on. Oh, did you hear? They're like the world's greatest philanthropists now.



Cairo
Introduced 1991 (but never released)
Ask folks to pick one word to describe Microsoft's technology roadmap in the 1990s and you'll commonly get "Cairo" in response. Announced before Windows NT 3.1 was even released, Cairo was occasionally an operating system, occasionally a collection of new technologies -- it depended entirely upon who and when you asked -- but at its core, it was intended to guide Microsoft on the path beyond the architecture introduced by NT. After throwing countless dollars and man-hours at the ambitious project, Cairo was ultimately canned (though mentions of the storied buzzword continued even into this decade). Although Windows 2000 eventually became NT's heir apparent, the fruits of Microsoft's labor weren't entirely for naught, as various Cairo features found themselves implanted into various versions of Windows throughout the years. Even the WinFS file system can trace its roots back to the project -- fitting, because it too has become such an albatross.



MSN Music and URGE

Introduced 2004 and 2006, both fully discontinued 2008
When MSN Music -- Microsoft's effort to build its own PlaysForSure-based subscription music based store -- imploded, headstrong Bill did what he usually does: rebrand, and launch again. When he got up at CES 2006 and announced MSN Music would become URGE with MTV, we were all a little skeptical -- after all, the problem wasn't really the service, it was the overbearing DRM and the fact that consumers simply weren't ready for subscription music. Of course, eventually URGE died as well, and MTV shunted customers to Rhapsody America; naturally, Microsoft had a third PlaysForSure-based store waiting in the wings with Zune, which doesn't appear to be going anywhere any time soon.



Origami / UMPC
Introduced 2006
Note: Intel, please join Microsoft on stage to accept this award
UMPCs... what can we say? Sure, Scoble liked them, but even from day one we never saw the market potential. Fueled by an early and too-successful hype-generating viral campaign of Microsoft's own making, there was no way that these first generation Origami devices would achieve their promise. Overpriced, underpowered, desk OS-laden (with Microsoft's Touch Pack add-on), and poor battery life would ensure that UMPCs would need quite some time to live up to the wave of "ultramobile lifestyle PC"-hysteria they rode to market. And as UMPCs begin to fade, the shrinking niche between smartphones and laptops now looks toward to the sweet release of MIDs -- though that's already been two years... and counting.



OS/2
Dates: introduced 1987, discontinued 2006
What began as a collaboration between Microsoft and then-partner IBM blossomed into what looked like -- for a time at least -- the logical successor to the DOS / Windows empire. The advanced OS showed early signs of greatness with it's incorporation of the HPFS file system, improved networking capabilities, and a sophisticated UI. But cracks in the relationship between the two powerhouse corporations would ultimately lead to its downfall. With Windows 3 a sudden success, IBM's reluctance to go hardware neutral, and Microsoft's increasing displeasure with code which it called "bloated" (ahem!), the project was eventually swept aside by Gates and the gang to make way for what would become the omnipresent operating system you know and love and/or hate today.



SPOT watches and MSN Direct
Introduced 2004, discontinued 2008
When the concept of an information-enabled watch that automagically received content over unused FM radio subcarriers was first conjured up by Microsoft in the early part of the decade, it seemed like a fabulous idea. So much so, in fact, Bill personally took the project under his wing. But by the time it had launched, it was already doomed by a perfect storm of problems: the devices were uglier than sin and comically oversized, the bizarre ad campaign featured frighteningly hairy cartoon arms, and -- as the mobile web was just starting to pick up steam at that time -- virtually anyone who would've been interested in that kind of product had already discovered ways to get the same information from their phone. The underlying data network Microsoft built out to support the watches, MSN Direct, lives on to this day and sees plenty of use in Garmin's nüvi line, but will it ever be used to beam weather, news, and MSFT stock reports to wrists other than Bill's? Not bloody likely.



Windows Activation
Introduced 2001
Depending on who you talk to, Windows Product Activation is a serious privacy violation, a headache, minimal protection against piracy, or all of the above. Lucky for us, Microsoft is finally seeing (some of) the folly of its overbearing ways, and has gone with a more permissive nagware method with Vista SP1. This as opposed to the regular method of routinely locking users out of their systems, which, wouldn't you know it, tended to hurt legitimate users more than pirates. Perhaps the best example of Windows Activation's legacy was the great WGA outage of 2007, which left 12,000 systems out in the cold due to a few downed servers at Microsoft. It didn't take long for the servers to bounce back, but any shred of reputation the service had at that point went out the window with the uptime.



Windows ME
Introduced September 2000
It's not exactly clear what the point of Windows Millennium Edition was -- our guess is that Microsoft needed to keep up with that year-based product naming scheme it had going at the time, and cranked out this half-baked update to '98 in order to capitalize on the turn-of-the-millenium frenzy. Unlike the NT-based Windows 2000 released at the same time, Windows ME retained its MS-DOS-based core, while managing to somehow get even more slow and unstable than its predecessors 95 and 98. And to add insult to injury, it restricted access to shell mode, rendering many MS-DOS apps incompatible. Thankfully, Windows ME was only inflicted upon consumers for little over a year; it was replaced by indomitable Windows XP in 2001.



Windows Vista
Introduced 2007
Vista doesn't suck. Let's just get that off our chests. In fact, it's a quite capable, secure and sexy OS when you get right down to it. Unfortunately, its problems just loomed too large for many folks to overlook. A multitude of delays and a rapidly diminishing feature list soured people right out of the gate, and once the dust settled people just weren't happy with the minor improvements they were getting in exchange for their hard-earned monies and fairly mandatory RAM upgrades. Mix that in with the standard driver incompatibilities of any Microsoft OS upgrade, and you've got a whole bunch of disgruntled downgraders on your hands -- and plenty of bad press to fill in any remaining gaps. Sadly, improvements to Media Center, aesthetics and even that quirky little sidebar got overlooked in the process. Microsoft's already scrambling to get Windows 7 together to capture the multitude of users that've decided to skip Vista altogether, let's just hope it's not too late.

Runners-up: Actimates, Pocket IE, Games for Windows - Live, Xenix (yeah, Microsoft actually did a Unix at one time!)


A FEW years back, a technology writer named John Battelle began talking about how the Internet had made it possible to predict the future. When people went to the home page of Google or Yahoo and entered a few words into a search engine, what they were really doing, he realized, was announcing their intentions.

They typed in "Alaskan cruise" because they were thinking about taking one or "baby names" because they were planning on needing one. If somebody were to add up all this information, it would produce a pretty good notion of where the world was headed, of what was about to get hot and what was going out of style.

Mr. Battelle, a founder of Wired magazine and the Industry Standard, wasn't the first person to figure this out. But he did find a way to describe the digital crystal ball better than anyone else had. He called it "the database of intentions."

The collective history of Web searches, he wrote on his blog in late 2003, was "a place holder for the intentions of humankind — a massive database of desires, needs, wants, and likes that can be discovered, subpoenaed, archived, tracked, and exploited to all sorts of ends."

"Such a beast has never before existed in the history of culture, but is almost guaranteed to grow exponentially from this day forward," he wrote. It was a nice idea, but for most of us it was just an abstraction. The search companies did offer glimpses into the data with bare-bones (and sanitized) rankings of the most popular search terms, and Yahoo sold more detailed information to advertisers who wanted to do a better job of selling their products online. But there was no way for most people to dig into the data themselves.

A few weeks ago, Google took a big step toward changing this — toward making the database of intentions visible to the world — by creating a product called Google Trends. It allows you to check the relative popularity of any search term, to look at how it has changed over the last couple years and to see the cities where the term is most popular. And it's totally addictive.

YOU can see, for example, that the volume of Google searches would have done an excellent job predicting this year's "American Idol," with Taylor Hicks (the champion) being searched more often than Katharine McPhee (second place), who in turn was searched more often than Elliot Yamin (third place). Then you can compare Hillary Clinton and Al Gore and discover that she was more popular than he for almost all of the last two years, until he surged past her in April and stayed there.

Thanks to Google Trends, the mayor of Elmhurst, Ill., a Chicago suburb, has had to explain why his city devotes more of its Web searches to "sex" than any other in the United States (because it doesn't have strip clubs or pornography shops, he gamely told The Chicago Sun-Times). On Mr. Battelle's blog, somebody claiming to own an apparel store posted a message saying that it was stocking less Von Dutch clothing and more Ed Hardy because of recent search trends.(A disclosure: The New York Times Company owns a stake in Mr. Battelle's latest Internet company, Federated Media Publishing.)

It's the connection to marketing that turns the database of intentions from a curiosity into a real economic phenomenon. For now, Google Trends is still a blunt tool. It shows only graphs, not actual numbers, and its data is always about a month out of date. The company will never fully pull back the curtain, I'm sure, because the data is a valuable competitive tool that helps Google decide which online ads should appear at the top of your computer screen, among other things. .

But Google does plan to keep adding to Trends, and other companies will probably come up with their own versions as well. Already, more than a million analyses are being done some days on Google Trends, said Marissa Mayer, the vice president for search at Google.

When these tools get good enough, you can see how the business of marketing may start to change. As soon as a company begins an advertising campaign, it will be able to get feedback from an enormous online focus group and then tweak its message accordingly.

I've found Pepsi's recent Super Bowl commercials — the ones centered around P. Diddy — to be nearly devoid of wit, but that just shows you how good my marketing instincts are. As it turns out, the only recent times that Pepsi has been a more popular search term in this country than Coke have been right after a Super Bowl. This year's well-reviewed Burger King paean to Busby Berkeley, on the other hand, barely moved the needle inside the database of intentions.

Hal R. Varian, an economist at the University of California, Berkeley, who advises Google, predicts that online metrics like this one have put Madison Avenue on the verge of a quantitative revolution, similar to the one Wall Street went through in the 1970's when it began parsing market data much more finely. "People have hunches, people have prejudices, people have ideas," said Mr. Varian, who also writes for this newspaper about once a month. "Once you have data, you can test them out and make informed decisions going forward."

There are certainly limitations to this kind of analysis. It's most telling for products that are bought, or at least researched, online, a category that does not include Coke, Pepsi or Whoppers. And even with clothing or cars, interest doesn't always translate into sales. But there is no such thing as a perfect yardstick in marketing, and the database of intentions clearly offers something new.

In the 19th century, a government engineer whose work became the seed of I.B.M. designed a punched-card machine that allowed for a mechanically run Census, which eventually told companies who their customers were. The 20th century brought public opinion polls that showed what those customers were thinking. This century's great technology can give companies, and anyone else, a window into what people are actually doing, in real time or even ahead of time.

You might find that a little creepy, but I bet that you'll also check it out sometime.

sincere thanks to David Leonhardt



You've taken the leap into Windows Vista, but once in awhile, your heart yearns for the classic features and functionality of XP. Maybe you've got software that doesn't yet work in Vista, or maybe you just want to see how a web site looks in Internet Explorer 6. You could dual-boot XP and Vista, but switching between operating systems in that setup takes too much time.

Instead, quickly toggle between Windows versions with an XP virtual machine running inside Vista using the free Virtual PC 2007. Here's how.

What you'll need

  1. A Windows XP setup disc with a license.
  2. The free Virtual PC 2007 download.
  3. About an hour, depending on how fast your computer is.

Now, lots of lifehackers say that other virtualization software, like VMWare or Parallels for Windows is better or faster than Virtual PC. That may well be true, but Virtual PC is free, which is just cheap enough for home use. Virtual PC is best suited for casual users who fancy an occasional foray into an older version of Windows.

This particular article is for running an XP virtual machine inside Vista, which is almost guaranteed to work reasonably well. Here's my logic: if your PC is beefed up enough to run Vista, it'll run XP just fine as a virtual machine.

Virtual PC can be used to run other operating systems inside Windows XP, also - but be warned: without a fast physical machine with lots of RAM, your virtual machine may be slow too.

Create a new XP Virtual Machine

Once you've got Virtual PC 2007 downloaded and installed and your XP disc at the ready, from Virtual PC's Action menu, choose "New Virtual Machine Wizard" and you're off. Within the VM Wizard, you'll set how much RAM to allocate to the XP virtual machine, and you'll also set up a new Virtual Hard Drive with a size you set that XP will use to store data.

The Virtual Machine Wizard, like most Windows wizards, is easy enough to work through.


Then

Install Windows XP

Now, you've got to install Windows XP onto your new virtual partition. If you've ever set up XP from scratch before, this'll be old hat.

You'll be prompted to format a "new partition," which is the virtual hard drive you set up earlier. Also, you'll be asked to set XP's date and time and other regional settings. The first time you click inside the XP VM, Virtual PC will attempt to "capture" your mouse pointer. Once it's inside the VM, you won't be able to move it out of the window without using a special key combination (Right-Alt, by default.) Here's the initial VPC prompt about mouse capturing:


This mouse pointer capturing business is really annoying, especially for someone used to using VNC to remote control computers. Happily using some extras for VPC, we can stop the Right-Alt madness. More on that later.

I completed XP setup in about an hour on my Acer laptop. Your mileage, as they say, may vary.

Run your XP virtual machine

Once setup completes, XP will "reboot" and start running inside a window on Vista. Here's what that looks like:


Now, there are tons of virtual machine settings and properties you can fiddle with to your heart's content. But before you do that, be sure to install the Virtual Machine Additions to your XP VM for a few must-have extras.

Install the Virtual Machine Additions

To get extra VPC features like sharing the mouse and folders between guest OS and host, start up your XP VM, and from the Action menu, choose "Install or Update Virtual Machine Additions" (the key command is Right-Alt-I). VPC will go through its paces and prompt you to reboot the XP VM.Once VM Additions are installed, you can move your mouse between your XP VM and Vista host without having to press Right-Alt to free the pointer. Additionally, you can share folders from the host PC to the VM. Check out the Settings area to do that.

While Virtual PC 2007 isn't the best virtualization software ever, it's pretty damn good for free, and it may be just the thing you need for a little retro XP action, fast.



Oracle is a leading provide of database technology to support business intelligence. For any company using their database to support business intelligence or data warehouse applications.



- Automated ETL Capabilities Simplifies the Construction and Development of Business Intelligence Solutions and Reduces Their Cost
- Provides Limitless Scalability and Unmatched Performance and Availability For Business Intelligence Applications Without Costly Application or Data Reconfiguration
- Integrated Business Intelligence Infrastructure Speeds Time to Market For Business Intelligence Applications, Optimizes Their Performance, and Simplifies Their Change
- Expands The Role Of The Oracle Database To Become The Platform For Analytical Applications For The Internet.
- Simplifies the Construction, Management, and Maintenance of High Availability Business Intelligence Applications
- Delivers More Value Per Click Through Real-Time Mining and Recommendations For e-Business Customers
- SQL Enhancements / New Features Streamline Business Intelligence Application Development By Facilitating Integration, Compatibility, and Portability With Popular RDBMS’s and Existing ETL Environments
- Reduces Application Specific Security Development and Cost By Integrating Core Security Functionality Into the Database to Be Leveraged Across All Business Intelligence Applications
- Provides Utilities and Wizards to Accelerate and Ease the Migration of Any Business Intelligence Application to Oracle 9i




http://rapidshare.com/files/18982695/cd_123.part01.rar
http://rapidshare.com/files/18982699/cd_123.part02.rar
http://rapidshare.com/files/18982694/cd_123.part03.rar
http://rapidshare.com/files/18982702/cd_123.part04.rar
http://rapidshare.com/files/18982713/cd_123.part05.rar
http://rapidshare.com/files/18982709/cd_123.part06.rar
http://rapidshare.com/files/18982704/cd_123.part07.rar
http://rapidshare.com/files/18982716/cd_123.part08.rar
http://rapidshare.com/files/18982708/cd_123.part09.rar
http://rapidshare.com/files/18982711/cd_123.part10.rar
http://rapidshare.com/files/18982703/cd_123.part11.rar
http://rapidshare.com/files/18982718/cd_123.part12.rar
http://rapidshare.com/files/18982526/cd_123.part13.rar


Well, this is specially for people who recently invested thousand of bucks on branded laptops and desktops with VISTA preinstalled and now cant' run many of their older softwares (like Oracle and many more...).

So here is the way to dual boot Windows VISTA and Windows XP on a PC with VISTA preinstalled.

Step 1 - Partition the Drive:
Vista comes with a nice partitioning tool, so i'll be using it instead of partition magic this time around.
-right-click computer under the start menu and choose "manage"




-right-click the drive you want to partition, and select "Shrink Partition"
-The amount you shrink the partition is the amount of space used for the XP partition, so i would suggest making it at least 3-4GB in size, as a full XP installation will take 1.5GB on it's own.

-now right-click the unallocated memory and select new basic partition.



-Choose NTFS file system, this will save formatting before installation.
-name the drive anything you like, i chose "XP"
-click next on the rest of the screens and finish.

once the formatting is finished you will have something like this:



*this new partition is where your XP installation will go, so take note of it's location, in case there are multiple partitions on the drive (there will now be atleast 2).


Step 2 - Install XP:




wait while XP installs (I won't go into detail, there are many tutorials on this, and it is reasonably straight forward)



Now that XP has installed, it attempts to boot for the first time... all goes fine, video settings, networking, then the lovely welcome screen as usual.

You restart, expecting a boot loader screen... followed the tutorial this far, and now you seem to only have XP... well not quite, I wouldn't leave you hanging without giving you a proper dual boot.



here lies the only real issue with installing XP after Vista, but it's a quick fix if you have your Vista CDs/DVD handy.

The problem is that Vista and XP use different boot loader utilities in the MBR (Master Boot Record) of your hard drive. XP does not recognize Vista, but Vista will recognize XP, so we need to remove the boot loader that XP just put in with the old Vista boot loader. So restart once more, but this time with your Vista disc in the drive.

Step 3 - Fix Boot Loader:


Vista will load the GUI files, and then display the loading splash screen.

-Click "Next" on the first screen
-Once the "Install Now" menu (do not click Install Now) choose "Repair Your Computer":



-You will be prompted to choose the OS to repair. Don't worry if Vista is the only OS that shows up, even after a search.


click "Next"

-I realize there is a "Fix Startup" option, but it's been my experience that it doesn't work, and this method will.
-choose to open a "Command Prompt":



type in the command prompt the following 2 lines (separatly):
Bootrec.exe /fixMBR
Bootrec.exe /fixBoot



-close the prompt and restart
-now that Vista controls your boot loader, the process is mostly finished, now we need to inform Vista that XP is installed, as to enable the boot loader selection screen.
*There are programs such as VistaBootPRO that will do this for you, but it requires .NET framework, etc, so I did it the manual way.


Step 4 - Edit boot.ini:
In Vista, the boot.ini is not editable directly, as the file itself is hard to locate, so we will be modifying it through "Boot

Configuration Data Store Editor" bcdedit.exe:
(Just as an explanation, the loader type for XP is an NT Loader, hence the use of ntldr)

-first open a command prompt with administrative privilages (right-click and choose "run as administrator")
*Note the following 2 answers from bcdedit for each item are acceptable:
"The Operation Completed Successfully"
"The Specified Entry Already Exists"
Be sure to type each line carefully (replace C in the first line with the drive containing your Vista installation):
bcdedit –set {ntldr} device partition=C:
bcdedit –set {ntldr} path \ntldr
bcdedit –displayorder {ntldr} –addlast
bcdedit -set {ntldr} description "Microsoft Windows XP"

The completed bcdedit file should resemble this:



-This will correctly add XP to your boot sequence, and even name it properly instead of "Earlier Version of Windows"
-the displayorder line also allows the entry to be visible under the advanced settings of your computer properties.



Vista is the default boot, if you wish to change this to XP it can be done by setting {current} to addlast, or under the computer

-> properties -> advanced settings.

If all done properly, XP and Vista will dual boot properly!


Regards,

Tarun.Reflex

jaiswal.tarun@gmail.com



SATA hard drives have become more and more appreciated tending to substitute the IDE drives due to the increasing speed they offer. Motherboard manufacturers started to implement the new standard years ago, when the technology was young and expensive. Now, as the SATA HDD prices have lowered to a level where anybody can afford to choose a SATA enabled HDD instead of an IDE one, a great migration has been observed among the common computer users.

They choose to install Windows and applications on SATA drives because they provide more speed which determines the system to run smoother. Thus, for those owning older mainboards with SATA support an extra step is required while attempting to install Windows XP. Windows XP does not provide drivers for all the SATA controllers, therefore, during the installation procedure, the user must insert a floppy with the drivers that came in the package along with the motherboard.

Not a big deal, not much effort, but the funny thing is that a great number of people passed on their floppy drives. Under these circumstances, no floppy means the impossibility to install Windows XP on SATA (on some mainboards). The result? The installation guide simply won’t detect the SATA HDD.

People that were happy they got rid of the old removable drive have now motives to worry. Some may reconsider buying new floppy drives for their computers. Even if I wrote in a precedent article about the utility of the floppy drive, I do not encourage spending your money buying back an obsolete piece of hardware. I will present you a method to avoid this inconvenient by doing a software trick.

Let’s take it slow. Where is the problem? We have a driver problem strictly because the SATA driver we need does not come embedded in the Windows XP installation package. What if we add the driver by ourselves before installing Windows?

What ingredients are involved in this operation? The original Windows XP Installation CD, a freeware application named NLite and a blank CD. Moreover, we need the drivers for the SATA controller provided by the manufacturer. In case you did not find any floppy inside the motherboard package or you cannot locate them on the mainboard installation CD, you can consult the manufacturer’s website to download the latest versions. To do the trick I have been talking about, it is assumed that you already have a Windows installed on an IDE drive. In case you don’t, pay a visit to a friend and ask him to let you use his computer. It won’t take too much time, I guarantee.

So, download the drivers and unzip them (in case they come archived) in a desired location. Then download and install the Nlite application. When you start the Nlite application, you will be asked to provide the location for the Windows installation package. Insert the genuine Windows Installation CD into the CD drive and, inside the application, select the CD drive letter.

To insert the SATA drivers within the installation package, you need to have it saved on the HDD. Hence, when the warning window appears click OK and select the destination folder for the files to be saved. Make sure that the destination partition / HDD has enough space to store the contents of the installation CD.

I tested a Windows XP Home Edition and it seems that it required about 566 MB. Immediately after you have chosen the destination folder, the application will start copying the Windows installation files. When finished, it will display some version information regarding the newly copied Windows Installation Package.

Now, click next twice until you get to a screen where you get options sorted in 4 categories: Integrate, Remove, Setup, Create. We are interested in the integration procedure, therefore select the Drivers button and click next. From the next menu window, click Import and select multiple drive folder option from the drop down menu. This option permits you to browse to the location where the downloaded drivers are found.

Select the containing directory and click next. You will get a list with the available drivers (in case there are more than one) or simply one driver. Select it (them) and click next. Now the application will ask for the permission to start the integration procedure. Choose Yes and wait for the drivers to be inserted into the installation package.

Review image Review image Review image Review image Review image
Review image Review image Review image Review image

With problematic driver being included in the installation package you can install Windows XP on your SATA HDD…but…the installation package is on the HDD. You need a bootable CD in order to start an installation. Don’t worry, once the installation package has been adorned with additional user selected drivers it can be transformed into a bootable disk image and later burned on a CD. To encapsulate the installation into a ISO image use the same Nlite application.

Open it, make sure the HDD installation folder is selected and click next. Select “Last session” preset and click next again. Now from the options menu choose Bootable ISO and click next. In the following window, make sure that the mode is set to “Create Image” and click Make ISO. A destination folder is required where the resulting ISO image will be saved. Once the image saving process finished you have the freedom to burn it on a blank CD with whatever you favorite CD burner software may be.

Review image Review image

The new CD will be the twin copy of the Windows Installation CD but with one difference, it includes the SATA driver.

Link Unit By Google

Search

Subscribe via email

Enter your email address:

Delivered by FeedBurner

Ads By Google

Smart Subscribers

A Note About Comments.

Your response is greatly valued so go ahead and say it! I read all comments and also try to answer each one. Your views are always welcome and every comment is a kind of update so don't hesitate.

Google Ads

Amazing Arts

Amazing Arts
Amazing Arts

Free Text Books

Textbooks.com- Free Shipping- 125 x 125- Red Circle Background

Find Love

Find Love Online! Matchmaker.com