Partition the new hard drive and be sure to format it.
Empty the recycle ben and c:\windows\temp,Run scandisk and defrag .
To avoid getting errors copying your swap file, go to 
control panel\system icon\performance tab
and hit virtual memory, assign the swap file to the new drive
 or any other drive from the one
copying from.
To copy a hardrive, go to the explorer and click view\options\Files Type tab
and select show all files, then copy the contents of  drive C to the new hard
drive, then click start\run and type
xcopy c:\ d:\ /c /e /f /h /r /s
*****


/C Ignores errors.
	/E Copies all sub directories, even if they are empty.
            Used with the /s and /t switches.
	/F Displays source and destination filenames while copying.
	/H Copies files with the hidden and system file attributes. 
           Xcopy will not copy hidden or system files by default.
	/R Copies over read-only files.
	/S Copies directories and sub directories, unless they are empty. 
           If you omit this switch, xcopy works within a single directory. 
	/P Prompts you before creating each destination file.
-------------------------------
Ted
2000@msn.com
