Jump to content

liptonsea

Member
  • Posts

    7
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    United States

About liptonsea

liptonsea's Achievements

0

Reputation

  1. thank you. now I think my Unattended list is complete
  2. well bolth, they didnt execute during the install or after. I changed the pathes in the .cmd to Example: ECHO Installing Windows Media Player 9 ECHO Please wait... start /wait .\wmplayer_9\MPSetupXP.exe /Q:A /R:N ECHO. and the test worked. now should I leave them as is and attempt tp reinstall XP?
  3. Whast the MS URL for Movie maker 2? I cant find it in windows update list.
  4. I just tried to run my main_batch.cmd file and it said: Windows cannot find 'C:\install\hotfixes\NDP10_SP_Q321884_EN.exe'. Make sure you typed the name correctly, and then try again. To search for a file, click the start button, and the click search. it supposed to look in the CD drive under $OEM$/%1/ (path) there for my pathes must be incorect in my .cmd files? the dos window says c:\Windows\system32\cmd.exe wtf. is with that. how do I make it open the right files!!!!
  5. I still have to add that command even though Im not preinstalling nvidia Display drivers? the reason is because im trying to make this a generic unattended install as possible incase I have diffrent display drivers in the future. I dont have any drivers for harware listed. basically all I need is for the .sif to activate my .cmd file main_batch.cmd and hotfixes.cmd to install the hotfixes and the 5 apps I have that are from the xp update wesite. which include. DirectX9b, .net1.1, Messenger4.7, msjavawu, and media player 9. everything installs ok but the .sif file is looking for the .cmd file on the C: drive (or the .cmd files are looking for the apps and updates on the C: Drive.
  6. yea. i edited that key. its a made up one. and I didnt set any passowrds. hehe thanks for the head up though.
  7. This is my first time here and I am attempting to do the whole slipstream and unattended install. Ive got my Slipstream sp1 working and part of my unattended install. XP installs all the way but when it comes to executing my .cmd files it says it can not find c:\install\main_batch.cmd or c:\install\hotfixes.cmd well they arnt located on C: and I dont know why the .sif is looking for them their. could you please look over my files and tell me whats wrong. ill post them below. :/ any help would be much appreciated. P.S. those files are actulallty located in $OEM$/$1/install on the CD, and the patches and applications are in $OEM$/$1/install/hotfixes and then seperate folders for the applications. ------------------------------------------------------------------------------------------------ ( winnt.sif ) [Data] AutoPartition=0 MsDosInitiated="0" UnattendedInstall="Yes" [unattended] UnattendMode=FullUnattended OemSkipEula=Yes OemPreinstall=No TargetPath=\WINDOWS [GuiUnattended] AdminPassword=* EncryptedAdminPassword=NO OEMSkipRegional=1 TimeZone=4 OemSkipWelcome=1 [userData] ProductKey=POE5E-FKROE-FRT9J-KSNE1-Q487W FullName="Administrator" OrgName="Home" ComputerName=* [RegionalSettings] LanguageGroup=1 [identification] JoinWorkgroup=WORKGROUP [Networking] InstallDefaultComponents=Yes [branding] BrandIEUsingUnattended=Yes Home_Page=http://www.MSFN.org [Components] msmsgs=off msnexplr=off freecell=off hearts=off minesweeper=off pinball=off spider=off [GuiRunOnce] Command0=%systemdrive%\install\main_batch.cmd Command1=%systemdrive%\install\hotfixes.cmd ------------------------------------------------------------------------------------------------- ( main_batch.cmnd ) CLS @echo off ECHO. ECHO Over the next few minutes you will see automated installations ECHO of various sofware applications, windows updates, and registry ECHO hacks being implemented. The computer will restart automatically ECHO once the whole process has finished! ECHO. ECHO Copying patched UXTheme.dll... REN %systemroot%\System32\dllcache\uxtheme.dll uxtheme.old COPY "%systemdrive%\Install\uxtheme\uxtheme.dll" "%systemroot%\System32\dllcache\" REN %systemroot%\System32\uxtheme.dll uxtheme.old COPY "%systemdrive%\Install\uxtheme\uxtheme.dll" "%systemroot%\System32\" ECHO. ECHO Installing DirectX 9.0b ECHO Please wait... start /wait %systemdrive%\install\directX9b\dxsetup.exe /opk ECHO. ECHO Installing Windows Media Player 9 ECHO Please wait... start /wait %systemdrive%\install\wmplayer_9\MPSetupXP.exe /Q:A /R:N ECHO. ECHO Installing .NET Framework v1.1 ECHO Please wait... start /wait %systemdrive%\install\dotnetfx\dotnetfx.exe /Q:A /R:N ECHO. ECHO Installing Microsoft JavaVM - Build 3810 ECHO Please wait... start /wait %systemdrive%\install\msjavawu\msjavawu.exe /Q:A /R:N ECHO. ECHO Installing Microsoft Messanger 4.7 ECHO Please wait... start /wait %systemdrive%\install\mmssetup\mmssetup.exe /Q:A /R:N ECHO. ECHO Applying Registry Tweaks... REGEDIT /S %systemdrive%\install\RegTweaks.reg ECHO. EXIT ------------------------------------------------------------------------------------------------- ( hotfixes.cmd ) CLS @echo off ECHO. ECHO Installing NDP10_SP_Q321884_En... start /wait %systemdrive%\install\Hotfixes\NDP10_SP_Q321884_En.exe /Q:A /R:N ECHO. ECHO Installing Q810565_WXP_SP2_x86_ENU... start /wait %systemdrive%\install\Hotfixes\Q810565_WXP_SP2_x86_ENU.exe /Q /M /Z ECHO. ECHO Installing WindowsXP-KB821557-x86-ENU... start /wait %systemdrive%\install\Hotfixes\WindowsXP-KB821557-x86-ENU.exe /Q /M /Z ECHO. ECHO Installing Q328310_WXP_SP2_en... start /wait %systemdrive%\install\Q328310_WXP_SP2_en.exe /Q /M /Z ECHO. ECHO Installing Q811493_WXP_SP2_x86_ENU... start /wait %systemdrive%\install\Hotfixes\Q811493_WXP_SP2_x86_ENU.exe /Q /M /Z ECHO. ECHO Installing WindowsXP-KB282010-x86-ENU... start /wait %systemdrive%\install\Hotfixes\WindowsXP-KB282010-x86-ENU.exe /Q /M /Z ECHO. ECHO Installing q818529... start /wait %systemdrive%\install\Hotfixes\q818529.exe /Q:A /R:N ECHO. ECHO Installing q330994... start /wait %systemdrive%\install\Hotfixes\q330994.exe /Q:A /R:N ECHO. ECHO Installing WindowsMedia9-KB819639-x86-ENU... start /wait %systemdrive%\install\Hotfixes\WindowsMedia9-KB819639-x86-ENU.exe /Q:A /R:N ECHO. ECHO Installing hu1002_pro... start /wait %systemdrive%\install\Hotfixes\hu1002_pro.exe /Q:A /R:N ECHO. ECHO Installing Q811630_WXP_SP2_EN... start /wait %systemdrive%\install\Hotfixes\Q811630_WXP_SP2_EN.exe /Q /M /Z ECHO. ECHO Installing WindowsXP-KB823980-x86-ENU... start /wait %systemdrive%\install\Hotfixes\WindowsXP-KB823980-x86-ENU.exe /Q /M /Z ECHO. ECHO Installing WindowsXP-KB817778-x86-ENU... start /wait %systemdrive%\install\Hotfixes\WindowsXP-KB817778-x86-ENU.exe /Q /M /Z ECHO. ECHO Installing WindowsXP-KB820291-x86-ENU... start /wait %systemdrive%\install\Hotfixes\WindowsXP-KB820291-x86-ENU.exe /Q /M /Z ECHO. ECHO Installing Q814995_WXP_SP2_x86_ENU... start /wait %systemdrive%\install\Hotfixes\Q814995_WXP_SP2_x86_ENU.exe /Q /M /Z ECHO. ECHO Installing DirectX9-KB819696-x86-ENU... start /wait %systemdrive%\install\Hotfixes\DirectX9-KB819696-x86-ENU.exe /Q:A /R:N ECHO. ECHO Installing Q327979_WXP_SP2_x86_ENU... start /wait %systemdrive%\install\Hotfixes\Q327979_WXP_SP2_x86_ENU.exe /Q /M /Z ECHO. ECHO Installing Q819696_WXP_SP2_x86_ENU... start /wait %systemdrive%\install\Hotfixes\Q819696_WXP_SP2_x86_ENU.exe /Q /M /Z ECHO. ECHO Installing WindowsXP-KB818043-x86-ENU... start /wait %systemdrive%\install\Hotfixes\WindowsXP-KB818043-x86-ENU.exe /Q /M /Z ECHO. ECHO Installing Q331953_WXP_en... start /wait %systemdrive%\install\Hotfixes\Q331953_WXP_en.exe /Q /M /Z ECHO. ECHO Installing Q323255_X86_EN... start /wait %systemdrive%\install\Hotfixes\Q323255_X86_EN.exe /Q /M /Z ECHO. ECHO Installing Q318138_x86... start /wait %systemdrive%\install\Hotfixes\Q318138_x86.exe /Q /M /Z ECHO. ECHO Installing Q810577_WXP_en... start /wait %systemdrive%\install\Hotfixes\Q810577_WXP_en.exe /Q /M /Z ECHO. ECHO Installing Q815021_WXP_SP2_x86_ENU... start /wait %systemdrive%\install\Hotfixes\Q815021_WXP_SP2_x86_ENU.exe /Q /M /Z ECHO. ECHO Installing Q329115_WXP_SP2_x86_ENU... start /wait %systemdrive%\install\Hotfixes\Q329115_WXP_SP2_x86_ENU.exe /Q /M /Z ECHO. ECHO Installing Q329170_WXP_SP2_EN... start /wait %systemdrive%\install\Hotfixes\Q329170_WXP_SP2_EN.exe /Q /M /Z ECHO. ECHO Installing Q817606_WXP_SP2_x86_ENU... start /wait %systemdrive%\install\Hotfixes\Q817606_WXP_SP2_x86_ENU.exe /Q /M /Z ECHO. ECHO Installing Q814033_WXP_SP2_x86_ENU... start /wait %systemdrive%\install\Hotfixes\Q814033_WXP_SP2_x86_ENU.exe /Q /M /Z ECHO. ECHO Installing Q329441_WXP_SP2_en... start /wait %systemdrive%\install\Hotfixes\Q329441_WXP_SP2_en.exe /Q /M /Z ECHO. ECHO Installing Q810833_WXP_SP2_x86_ENU... start /wait %systemdrive%\install\Hotfixes\Q810833_WXP_SP2_x86_ENU.exe /Q /M /Z ECHO. ECHO Installing WindowsXP-KB823559-x86-ENU... start /wait %systemdrive%\install\Hotfixes\WindowsXP-KB823559-x86-ENU.exe /Q /M /Z ECHO. ECHO Installing Q329048_xp... start /wait %systemdrive%\install\Hotfixes\Q329048_xp.exe /Q /M /Z ECHO. ECHO Installing Q810272_WXP_SP2_x86_ENU... start /wait %systemdrive%\install\Hotfixes\Q810272_WXP_SP2_x86_ENU.exe /Q /M /Z ECHO. ECHO Installing js56nen... start /wait %systemdrive%\install\Hotfixes\js56nen.exe /Q:A /R:N ECHO. ECHO Installing WindowsMedia8-KB817787-x86-ENU... start /wait %systemdrive%\install\Hotfixes\WindowsMedia8-KB817787-x86-ENU.exe /Q:A /R:N ECHO. ECHO Installing WindowsXP-KB821253-x86-ENU... start /wait %systemdrive%\install\Hotfixes\WindowsXP-KB821253-x86-ENU.exe /Q /M /Z ECHO. ECHO Installing q813951... start /wait %systemdrive%\install\Hotfixes\q813951.exe /Q:A /R:N ECHO. ECHO Installing Q817287... start /wait %systemdrive%\install\Hotfixes\Q817287.exe /Q:A /R:N ECHO. ECHO Installing vbs56nen... start /wait %systemdrive%\install\Hotfixes\vbs56nen.exe /Q:A /R:N ECHO. ECHO Installing Q329390_WXP... start /wait %systemdrive%\install\Hotfixes\Q329390_WXP.exe /Q /M /Z ECHO. ECHO Installing Q329834_WXP_SP2_en... start /wait %systemdrive%\install\Hotfixes\Q329834_WXP_SP2_en.exe /Q /M /Z ECHO. ECHO Installing Q322069... start /wait %systemdrive%\install\Hotfixes\Q322069.exe /Q /M /Z ECHO. EXIT ------------------------------------------------------------------------------------------------
×
×
  • Create New...