Me Need 1 Folder In Install App.
No Copy $OEM$ In All Win.

CODE
cmdow @ /HID
CLS
@echo off
TITLE Windows XP SP2 - Unattended Installation
start /wait %systemdrive%\install\Applications\Setup_1_32bit.exe -install -force
start /wait %systemdrive%\install\Applications\Setup_2_32bit.exe -install -force
start /wait %systemdrive%\install\Applications\Setup_4.exe
start /wait %systemdrive%\install\Applications\Setup_6.exe /sAll /norestart
start /wait %systemdrive%\install\Applications\Setup_7.exe /S /noreboot
start /wait %systemdrive%\install\Applications\Setup_8.exe -ms
start /wait %systemdrive%\install\Applications\Setup_9.exe /silent /install
start /wait %systemdrive%\install\Applications\Setup_10.exe
start /wait %systemdrive%\install\Applications\Setup_11.exe /SILENT
start /wait %systemdrive%\install\Applications\Setup_12.exe
start /wait %systemdrive%\install\Applications\Setup_13.exe /SILENT
start /wait %systemdrive%\install\Applications\Setup_14.exe /S /install=SFQDRA (F=file association, Q=quicklaunch icon, D=desktop icon, R=fake registration, A=run winamp agent/set default)
start /wait %systemdrive%\install\Applications\Setup_15_32bit.exe /s
start /wait %systemdrive%\install\Applications\Setup_16.exe /s
start /wait %systemdrive%\install\windows\Setup_1.exe /passive /no-default /closeprograms /norestart
start /wait %systemdrive%\install\windows\Setup_2_32bit.exe /s REBOOT=Suppress
start /wait %systemdrive%\install\windows\Setup_3.exe /q:a /c:"install.exe /qb"
start /wait %systemdrive%\install\windows\Setup_3.exe /passive /norestart
start /wait %systemdrive%\install\windows\Setup_6.exe /passive /norestart
start /wait %systemdrive%\install\windows\Setup_7_32bit.exe /Q
start /wait %systemdrive%\install\windows\Setup_8_32bit.exe /Q
start /wait %systemdrive%\install\windows\Setup_9_32bit.exe /q /norestart
start /wait %systemdrive%\install\windows\Setup_10.exe /q /norestart
start /wait %systemdrive%\install\windows\Setup_11.exe /q /norestart
start /wait %systemdrive%\install\windows\Setup_12.exe /q /norestart
start /wait %systemdrive%\install\windows\Setup_13.exe /q /norestart
start /wait %systemdrive%\install\windows\Setup_14.exe /q /norestart
RD /S /Q %systemdrive%\install\
DEL "%systemdrive%\install\
"
set h="%SystemRoot%\system32\drivers\etc\hosts"
attrib -r -a -s -h %h%
echo.>>%h%
for %%s in (127.0.0.1 acdid.acdsystems.com) do find /c /i "%%s" %h%>nul||(echo.Adding "%%s" to hosts file&echo.127.0.0.1 %%s>>%h%||echo.Access denied when adding %%s!)
cmdow @ /HID
shutdown.exe -r -f -t 3 -c "Windows XP will restart in 3 seconds..."
EXIT
--------------