
cullend11
MemberContent Type
Profiles
Forums
Events
Everything posted by cullend11
-
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
-
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
-
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
-
Open Office and Avast anti-virus switch
cullend11 replied to cullend11's topic in Application Installs
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 -
%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
-
Open Office and Avast anti-virus switch
cullend11 replied to cullend11's topic in Application Installs
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? -
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
-
please, close this is in the wrong forum thanks
-
Hi, I was wondering if anyone knew how what to put in my batch file for Open Office and Avast anti-virus. Thanks!
-
Is there an ISO creator for Windows MEdia center, the pro disable mce functions
-
i read it and i dont understand... please help me write one, and tell me where to put it
-
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\ ?????
-
here here.txt
-
currently my winnt says (download, very large...)
-
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
-
i understand! i think. I just type the in the batch code they said in the article about how to install! rite?
-
I just want to install a couple programs, drivers, and updates
-
what would i edit? and i would just do a boot from cd, i always do...
-
pls help
-
i still dont understand where to put that and how to make my own
-
A possible way to getting some drivers working
cullend11 replied to TomoDaK's topic in Windows Vista
u should download the old installer first, then go into add/remove programs, then add/remove windows componnets. NExt un-install the -
i dont qwite understand the whole setup thing for my xp cd. i made the xpcd on my hardrive, made the $OEM$ file, the made $1, and $$. i really dont understand step three thanks for the help! (I Love this kool unattended xp cd project!)