Hello, Hope I am posting this in the right place! So I have been working on this unattended windows install and have ran into a problem Everything works fine until the end and I will get this message “Windows can not find “c:\windows\install\install.cmd”. Make sure you typed the name correctly, and try again………” Now after I clicked ok windows loaded just fine and when I did a search I found that the Install file was on the root of C: and not in the windows folder. Any idea on what I might be doing wrong??? Oh and I did manually run the install.cmd and it worked great, so I know I did not mess up there, Also I thought that anything in the $OEM$\$1\install dir would copy its files in the windows/install dir and not a c:/install dir?? Here is what I have in my WINNT.SIF [GuiRunOnce] "%SystemRoot%\System32\nLite.cmd" "%SystemRoot%\install\install.cmd" – this is for installing office 2003 And here is what I have in my Install.cmd CLS @echo off TITLE Windows XP SP2 - Unattended Installation ECHO. ECHO Installing Office 2003 Professional ECHO Please wait... start /wait %systemdrive%\install\Applications\Office2003\setup.exe TRANSFORMS=Unattended.MST /qb- exit Thanks!