Hi Andrew,
Is there an installation order to install drivers for the various peripherals on the computer when installing XP home? I have a video card, sound card, mother board 2.0 USB, gigabit lan, web cam, twin Monitors, wireless mouse and key board, extra HD 80 gb eid1, DVD-RW, CD-ROM. Thanks for the kind assistance.
P.S. How in Windows Explorer, can you get the cursor to land on a folder other than the default Start Menu, say C:\?
http://msdn.microsoft.com/library/en-us/install/hh/install/create-inf_7ap3.asp
Specifying Driver Load Order (Device Installation: Windows DDK)
For most devices, the physical hierarchy of the devices on a machine
determines the order in which Setup and the PnP Manager load drivers.
To customize Windows Explorer opening:
Right click Windows Explorer/Properties and type this into the Target
path:
To have C: open (No folders)
%SystemRoot%\Explorer.exe /root, C:\
To have C: open expanded: %windir%\EXPLORER.EXE /e,c:
To have C: open and My Documents:
%windir%\EXPLORER.EXE /e,c:,%HOMEDRIVE%%HOMEPATH%\My Documents
For it to open to My Documents:
explorer /n,/e,%HOMEDRIVE%%HOMEPATH%\My Documents or
C:\WINDOWS\explorer.exe /n,/e,%HOMEDRIVE%%HOMEPATH%\My Documents
To have My Documents open only (No folders):
Explorer /root, c:\Documents and Settings\%username%\My Documents
If you wish to have Explorer open at My Documents on another drive,
you would use:
%SystemRoot%\explorer.exe /e, f:\My Documents
To have another Drive letter assigned to opening: D for example:
C:\Windows\Explorer.exe /e, d:\
d:\ can be modified for any folder/sub-folder you like. As in:
%SystemRoot%\Explorer.exe /e,d:\My Stuff
The /e switch tells Windows Explorer to open in the two pane explorer
mode and the c:\ tells it to open in folder C:\. If you omit the /e
switch, Windows Explorer opens in a single pane view.
Good luck, hope this helps