Jump to content

thunderchero

Member
  • Posts

    4
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    United States

About thunderchero

thunderchero's Achievements

0

Reputation

  1. Help! This is what I want to do. I want the cd switch to ask for second cd when it is copying $OEM$ files to C:\ drive so it will copy the $1 file to the C: drive from cd 2 if anyone could tell me the best way to set that up that would be great. thanks in advance Thunderchero
  2. Ok this is how I ended up getting around sptd problem, I am installing it from $OEM$ file with this as my command prompt; _________________________________________________________________________________________ cmdow @ /HID @Echo Off SET PP=%SystemDrive%\Alcohol120\ SET KEY=HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnceEx REG ADD %KEY% /V TITLE /D "Installing Softwares for Windows XP SP2" /f REG ADD %KEY%\005 /VE /D "Alcohol 120....Please Wait" /f REG ADD %KEY%\005 /V 01 /D "%PP%Alcohol1.au3" /f REG ADD %KEY%\010 /VE /D "Reboot" /f REG ADD %KEY%\010 /V 02 /D "%systemdrive%\reboot.cmd" /f cmdow @ /HID @Echo Off SET PP=%SystemDrive%\Alcohol120\ SET KEY=HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnceEx REG ADD %KEY% /V TITLE /D "Installing Softwares for Windows XP SP2" /f REG ADD %KEY%\015 /VE /D "Alcohol120....Please Wait" /f REG ADD %KEY%\015 /V 03 /D "%PP%Alcohol2.au3" /f REG ADD %KEY%\020 /VE /D "Cleaning Up" /f REG ADD %KEY%\020 /V 04 /D "%systemdrive%\cleanup.cmd" /f EXIT _________________________________________________________________________________________ the first .au3 file as; _________________________________________________________________________________________ ; ---------------------------------------------------------------------------- ; ; AutoIt Version: 3.1.0 ; Author: A.N.Other <myemail@nowhere.com> ; ; Script Function: ; Template AutoIt script. ; ; ---------------------------------------------------------------------------- ; Script Start - Add your code below here Run("C:\Alcohol120\Alcohol120.exe") AutoItSetOption ( "WinWaitDelay", 3000 ) WinWaitActive("Alcohol 120% 1.9.5.3823") ControlClick ( "Alcohol 120% 1.9.5.3823", "&Next >", 1 ) WinWaitActive("Alcohol 120% 1.9.5.3823") ControlClick ( "Alcohol 120% 1.9.5.3823", "I &Agree", 1 ) WinWaitActive("SPTD setup V1.24 © 2004-2005 Duplex Secure Ltd.") ControlClick ( "SPTD setup V1.24 © 2004-2005 Duplex Secure Ltd.", "OK", 1 ) WinWaitActive("Alcohol 120% 1.9.5.3823") ControlClick ( "Alcohol 120% 1.9.5.3823", "OK", 1 ) _________________________________________________________________________________________ and that sets up the sptd. and the next au3 file as; _________________________________________________________________________________________ ; ---------------------------------------------------------------------------- ; ; AutoIt Version: 3.1.0 ; Author: A.N.Other <myemail@nowhere.com> ; ; Script Function: ; Template AutoIt script. ; ; ---------------------------------------------------------------------------- ; Script Start - Add your code below here Run("C:\Alcohol120\Alcohol120.exe") WinWaitActive("Alcohol 120% 1.9.5.3823") ControlClick ( "Alcohol 120% 1.9.5.3823", "&Next >", 1 ) WinWaitActive("Alcohol 120% 1.9.5.3823") ControlClick ( "Alcohol 120% 1.9.5.3823", "I &Agree", 1 ) WinWaitActive("Alcohol 120% 1.9.5.3823") ControlClick ( "Alcohol 120% 1.9.5.3823", "&Next >", 1 ) WinWaitActive("Alcohol 120% 1.9.5.3823") ControlClick ( "Alcohol 120% 1.9.5.3823", "&Install", 1 ) AutoItSetOption ( "WinWaitDelay", 20000 ) WinWaitActive("Alcohol 120% 1.9.5.3823") ControlClick ( "Alcohol 120% 1.9.5.3823", "&Run Alcohol", 1203 ) AutoItSetOption ( "WinWaitDelay", 1000 ) WinWaitActive("Alcohol 120% 1.9.5.3823") ControlClick ( "Alcohol 120% 1.9.5.3823", "&Finish", 1 ) ______________________________________________________________________________________ and that install the program after the reboot command. I am sure some of you will add the reg files but I just setup it up before first use. thunderchero
  3. I am making a very large install for a friend of mine and looks like it will be over 12 gigs of files to be installed though addon packs and though oem files all of the addon packs will fit on first dvd but rest will need to go on second dvd. what I need help with is how to tell first dvd to tell me to insert second dvd that will have the second oem file. I have not done much of this before but have learned a lot from this forum and have made my install dvd. so do have basic idea of nlite and addon packs and oem file but thats about it. thanks in advance Thunderchero
  4. could some one give more details on this part of making a 7-zip switchless installer. In order to get rid of the cancel button and the close button, go to Dialog→500→1033. Select all then paste in this code: CODE500 DIALOG 0, 0, 186, 26 STYLE DS_FIXEDSYS | DS_MODALFRAME | DS_CENTER | WS_POPUP | WS_CAPTION CAPTION "Progress" LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US FONT 8, "MS Shell Dlg" { CONTROL "Progress1", 1000, "msctls_progress32", PBS_SMOOTH | WS_CHILD | WS_VISIBLE | WS_BORDER, 7, 7, 172, 14 } dose it go in the 7zs.sfx file ??? and if so what do I open file with. thunderchero
×
×
  • Create New...