I've been refining it a bit, but it is getting better.

code:

@echo off

if exist "c:\program files\ase\data\aspen.mdb" md "h:\aspen" & move "c:\program files\ase\data\aspen.mdb" "h:\aspen"
if exist "c:\cognos\BI96\workspce\*.imt" md "h:\improm35" & move "c:\cognos\BI96\workspce\*.imt" "h:\improm35"
if exist "c:\My Documents" md "h:\My Documents" & move "c:\My Documents\*.*" "h:\My Documents"
if exist "%userprofile%\favorites\*.*" md h:\Favorites & move "%userprofile%\favorites\*.*" h:\Favorites
if exist "%userprofile%\desktop\*.*" md h:\Desktop & move "%userprofile%\desktop\*.*" h:\Desktop
if exist "%userprofile%\Personal\*.*" md h:\Personal & move "%userprofile%\Personal\*.*" h:\Personal
if exist "%userprofile%\Application Data\Microsoft\Templates\Normal.dot" md h:\Normal & move "%userprofile%\Application Data\Microsoft\Templates\Normal.dot" h:\Normal

md h:\Word
md h:\Excel
md h:\PowerPoint
md h:\Outlook
md h:\Publisher
md h:\Access
for /r c:\ %%a in (*.doc) do xcopy "%%a" h:\Word /y /s /i
for /r c:\ %%a in (*.xls) do xcopy "%%a" h:\Excel /y /s /i
for /r c:\ %%a in (*.ppt) do xcopy "%%a" h:\PowerPoint /y /s /i
for /r c:\ %%a in (*.pub) do xcopy "%%a" h:\Publisher /y /s /i
for /r c:\ %%a in (*.mdb) do xcopy "%%a" h:\Access /y /s /i
for /r c:\ %%a in (*.pst *.pab) do xcopy "%%a" h:\Outlook /y /s /i

net use | find /i ":" > H:\%username%-Drivemappings.txt



_________________________
How to ask questions the smart way <-----------> Before you ask