Jump to content

cullend11

Member
  • Posts

    22
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    United States

About cullend11

cullend11's Achievements

0

Reputation

  1. Hi, how do I skip the "Lets take a moment to setup your computer" thing that is in OEM? EDIT: Figured that part out, next part is below ;SetupMgrTag [Data] AutoPartition=1 MsDosInitiated="0" UnattendedInstall="Yes" [Unattended] UnattendMode=FullUnattended OemSkipEula=Yes OemPreinstall=Yes UnattendSwitch="yes" TargetPath=\WINDOWS [GuiUnattended] AdminPassword="xxxxxx" EncryptedAdminPassword=NO OEMSkipRegional=1 TimeZone = 035 OemSkipWelcome=1 [UserData] ProductKey=xxxxx FullName="Mary T" OrgName="Interiors by J&M" ComputerName=JM1 [Identification] JoinWorkgroup=WORKGROUP [Networking] InstallDefaultComponents=Yes [GuiRunOnce] "%systemdrive%\install.cmd" When I first log on it says it could not find install.cmd is there something here preventing me from copying my $OEM$ directory? In the $OEM$ directory, no sub folder, my install.cmd resides. I cant see the $OEM$ folder on my hard drive, which makes me think it didnt copy... please help My $OEM$ folder is structured like this: -$OEM$ | -$Progs (in that folder I have Adobe Reader, Java 6, and Thunderbird, then I have the following) | -Avast | -OOF
  2. well, I guess I will be usiong GuiRunOnce... but i am confused with the swtiches... how is this so far? cmdow @ /HID @echo off SET KEY=HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnceEx REG ADD %KEY% /V TITLE /D "Installing Applications" /f REG ADD %KEY%05 /VE /D "Acrobat Reader 8.0" /f REG ADD %KEY%05 /V 1 /D "%PP%AdbeRdr80_enu_full.exe -p"-s /v\"/qn\""" /f REG ADD %KEY%10 /VE /D "Now installing Thunderbird" /f REG ADD %KEY%10 /V 1 /D "%SYSTEMDRIVE%\Install\Thunderbird /ms /ira\" /f Exit
  3. Hi, my unattended settings will work but the start.cmd does not. It is in the $OEM$ folder, the OEM folder is in the root of the CD. Here is the contents of sif and cmd start.cmd: CLS @echo off TITLE Windows XP SP2 - Unattended Installation ECHO. ECHO Over the next few minutes you will see automated installations ECHO of various sofware applications, windows updates, and registry ECHO tweaks being implemented. The computer will restart automatically ECHO once the whole process has finished! ECHO. ECHO Installing Adobe Reader 8 ECHO Please wait... start /wait %SYSTEMDRIVE%\Install\AdbeRdr80_en_US.exe /sAll ECHO.Done ECHO. ECHO Installing ThunderBird ECHO Please wait... start /wait %SYSTEMDRIVE%\Install\Thunderbird -ms -ira ECHO.Done start /wait msiexec /qn /i %SYSTEMDRIVE%\Install\oof\openofficeorg20.msi ALLUSERS=1 SELECT_WORD=1 SELECT_EXCEL=1 SELECT_POWERPOINT=1 ADDLOCAL=gm_Root,gm_r_Files_2,gm_r_Files_3,gm_r_Files_4,gm_r_Files_5,gm_r_Files_6,gm_r_Files_7,gm_r_ Files_8,gm_r_Files_9,gm_r_Fonts_OOo_Hidden,gm_p_Wrt_Bin,gm_p_Wrt_Help,gm_p_Calc_Bin,gm_p_Calc_Help,g m_p_Calc_Addins,gm_p_Impress_Bin,gm_p_Impress_Help,gm_o_Oo_English,gm_o_Winexplorerext ECHO.Delete Desktop Shortcut - Adobe Acrobat 8 DEL "%ALLUSERSPROFILE%\Desktop\Adobe Reader 8.lnk" ECHO. ECHO Restarting the PC in 1 minute... shutdown.exe -r -f -t 180 -c "Windows XP will now restart in 1 minute, this will give enough time for the shortcuts to update and for the shell to fully load before its ready to restart!" ECHO. ECHO Deleting Temp Installation Files... RD /S /Q %systemdrive%\Drivers RD /S /Q %systemdrive%\install EXIT winnt.sif ;SetupMgrTag [Data] AutoPartition=1 MsDosInitiated="0" UnattendedInstall="Yes" [Unattended] UnattendMode=FullUnattended OemSkipEula=Yes OemPreinstall=No TargetPath=\WINDOWS [GuiUnattended] AdminPassword="xxxxx" EncryptedAdminPassword=NO OEMSkipRegional=1 TimeZone = 035 OemSkipWelcome=0 [UserData] ProductKey=xxxxxxx FullName="Mary T" OrgName="Interiors by J&M" ComputerName=JM1 [Identification] JoinWorkgroup=WORKGROUP [Networking] InstallDefaultComponents=Yes
  4. cool, do you know if this will work for open office %SYSTEMDRIVE%\Install\openofficeorg20.msi ADDLOCAL=gm_Root,gm_r_Files_2,gm_r_Files_3,gm_r_Files_4,gm_r_Files_5,gm_r_Files_6,gm_r_Files_7,gm_r_ ,Files_8,gm_r_Files_9,gm_r_Fonts_OOo_Hidden,gm_p_Wrt_Bin,gm_p_Wrt_Help,gm_p_Calc_Bin,gm_p_Calc_Help, gm_p_Calc_Addins,gm_p_Impress_Bin,gm_p_Impress_Help,gm_o_Oo_English,gm_o_Winexplorerext start /wait msiexec /qnb /i c:\ooo2\OpenOfficeorg\openofficeorg20.msi ALLUSERS=1 SELECT_WORD=1 SELECT_EXCEL=1 SELECT_POWERPOINT=1
  5. %SYSTEMDRIVE%\Install\openofficeorg20.msi ADDLOCAL=gm_Root,gm_r_Files_2,gm_r_Files_3,gm_r_Files_4,gm_r_Files_5,gm_r_Files_6,gm_r_Files_7,gm_r_ ,Files_8,gm_r_Files_9,gm_r_Fonts_OOo_Hidden,gm_p_Wrt_Bin,gm_p_Wrt_Help,gm_p_Calc_Bin,gm_p_Calc_Help, gm_p_Calc_Addins,gm_p_Impress_Bin,gm_p_Impress_Help,gm_o_Oo_English,gm_o_Winexplorerext start /wait msiexec /qnb /i c:\ooo2\OpenOfficeorg\openofficeorg20.msi ALLUSERS=1 SELECT_WORD=1 SELECT_EXCEL=1 SELECT_POWERPOINT=1 so should I just put that in my batch file? And does it matter where the last part to that is? Finally, forgive me if this is a dumb question but; do I need a program called msiexec? thanks
  6. by setup file do you mean my batch file, $OEM$ file, or the winnt.sif and does it matter I am using batch instead of GUI RunOnce?
  7. Hi, I was wondering if anyone knew how what to put in my batch file for Open Office, if I only want to install Wrtier, Impress, Calc. As well, what should I do to install avast anti-virus? Thanks
  8. please, close this is in the wrong forum thanks
  9. Hi, I was wondering if anyone knew how what to put in my batch file for Open Office and Avast anti-virus. Thanks!
  10. Is there an ISO creator for Windows MEdia center, the pro disable mce functions
  11. i read it and i dont understand... please help me write one, and tell me where to put it
  12. or, would i just write ECHO. ECHO Installing Lavasoft Ad-Aware 6 Build 181 ECHO Please wait... start /wait %systemdrive%\install\Applications\AdAware\aaw6181.exe /s and place in :\XPCD\$OEM$\$1\install\Applications\AdAware\ ?????
  13. currently my winnt says (download, very large...)
  14. so if i just wanted adaware i would put ECHO. ECHO Installing Lavasoft Ad-Aware 6 Build 181 ECHO Please wait... start /wait %systemdrive%\install\Applications\AdAware\aaw6181.exe /s and save as winnt.sif
×
×
  • Create New...