Hey all. Basically I've been working for the past 3 weeks on a project. I'm putting together an XP installation that will include registry tweaks, include SP3, remove some "features" of XP, include a display driver, and automatically install a set of software. I say it's an XP installation instead of an Unattended Setup CD because I will not be using a cd/dvd for distributing it and it will not be completely unattended. I will still need to set the Key and regional/network settings, etc, upon installing. Basically, I've been using nLite and XP-ISO-Builder to integrate the service packs, drivers, tweaks, and SOME of the software I need. I'm at the point where the install runs off a build made by nLite, then the apps and some other tweaks are run through what was created with a build with XP-ISO-Builder. But after installing Windows, I must manually run the batch and .reg files for the apps and tweaks. I'd like to integrate that to be done automatically after the nLite installation has been completed. I am of course willing to provide any information that would be necessary to help me to achieve this. Let me start with a directory structure for my project: Windows Setup CD (if you will) $OEM$ I386 Autorun.inf Last Session.ini Last Session_u.ini Readme.htm Setup.exe setupxp.htm WIN51 WIN51IP WIN51IP.SP2 WIN51IP.SP3 $OEM$ Folder $1 $$ cmdlines.txt regtweaks.reg konten.cmd runonceex.cmd $1 Folder Apps Drivers Here are my files: cmdlines.txt [COMMANDS] "konten.cmd" "REGEDIT /S regtweaks.reg" "runonceex.cmd" konten.cmd net user "PJUser" "" /add net localgroup Administrators "PJUser" /add net accounts /maxpwage:unlimited net localgroup User "PJUser" /delete EXIT runonceex.cmd @echo off SET KEY=HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnceEx REG ADD %KEY% /V TITLE /D "Softwareinstallation" /f REG ADD %KEY%\0 /VE /D "Office2000" /f REG ADD %KEY%\0 /V 1 /D "\"%systemdrive%\apps\Office2000\SETUP.EXE\" TRANSFORMS="Custom.MST" /qn+" /f REG ADD %KEY%\0/V 2 /D "taskkill /F /IM outlook.exe" /f REG ADD %KEY%\1 /VE /D "AdobeReader7" /f REG ADD %KEY%\1 /V 1 /D "\"%systemdrive%\apps\AdobeReader7\AdbeRdr707_en_US.exe\" /Q /W /S /V"/QN"" /f REG ADD %KEY%\1/V 2 /D "taskkill /F /IM 123.exe" /f Any help or info you guys can provide would be greatly appreciated. Getting this all to happen automatically would be a huge step. Again, if there's more you need please let me know and I will provide.