thuun derboy Posted March 5, 2006 Posted March 5, 2006 (edited) The new version adds support for x64 machines. 3105 works very well and is still what I'll use for 32bit XP/W2K. The new installer just begs to be repackaged, which is just what I've done. Adminstudio > Autoit here.I was able to disable 'phone home' on v3105, but this persists with the new version. Also, modded msi to include reg info., but no starwind or extra language files, = 3.79 installer. Updates aren't always upgrades. Edited March 5, 2006 by thuun derboy
DryKillLogic Posted March 15, 2006 Posted March 15, 2006 The script works fine but I've problems with sptd. How can I fix it?Thanks in advance
thunderchero Posted April 15, 2006 Posted April 15, 2006 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 OffSET PP=%SystemDrive%\Alcohol120\SET KEY=HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnceExREG ADD %KEY% /V TITLE /D "Installing Softwares for Windows XP SP2" /fREG ADD %KEY%\005 /VE /D "Alcohol 120....Please Wait" /fREG ADD %KEY%\005 /V 01 /D "%PP%Alcohol1.au3" /f REG ADD %KEY%\010 /VE /D "Reboot" /fREG ADD %KEY%\010 /V 02 /D "%systemdrive%\reboot.cmd" /fcmdow @ /HID@Echo OffSET PP=%SystemDrive%\Alcohol120\SET KEY=HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnceExREG ADD %KEY% /V TITLE /D "Installing Softwares for Windows XP SP2" /fREG ADD %KEY%\015 /VE /D "Alcohol120....Please Wait" /fREG ADD %KEY%\015 /V 03 /D "%PP%Alcohol2.au3" /fREG ADD %KEY%\020 /VE /D "Cleaning Up" /fREG ADD %KEY%\020 /V 04 /D "%systemdrive%\cleanup.cmd" /fEXIT_________________________________________________________________________________________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 hereRun("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 hereRun("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
muiz Posted April 16, 2006 Author Posted April 16, 2006 The script works fine but I've problems with sptd. How can I fix it?Thanks in advance read ALL the posts , and you will see ;-)
minos197 Posted July 14, 2006 Posted July 14, 2006 (edited) thunderchero why make your life hard??Just put SPDT.exe in $oem$folder and add it to cmdlines.txt[Commands]"your commands""SPDT.exe"Then the system reboots itself anyway and you can run the autoIT script.I do suggest to alter this line though so to avoid the network service.FromWinWaitActive("Alcohol 120% 1.9.5.4212 ","Choose which feature")Send("{TAB}{TAB}{ENTER}")toWinWaitActive("Alcohol 120% 1.9.5.4212 ","Choose which feature")Send("{DOWN}{DOWN}{SPACE}{TAB}{TAB}{ENTER}")SPDT thanks to Sharkhttp://sharksfiles.doitrightconsulting.net/Setup Script credits to DjShadow and Muizhttp://rapidshare.de/files/24201366/alcohol120.exe.htmlRegistration Script thanks to Mhz.; Register$key = 'HKCU\Software\Alcohol Soft\Alcohol 120%'RegWrite($key & '\Info', 'UserName', 'Reg_sz', 'NEED_VALUE')RegWrite($key & '\Info', 'ServerKey', 'Reg_sz', 'NEED_VALUE')$key = 'HKCU\Software\StarSynergy\2\act'RegWrite($key, 'server', 'Reg_sz', 'NEED_VALUE')RegWrite($key, 'email', 'Reg_sz', 'NEED_VALUE')RegWrite($key, 'value', 'Reg_sz', 'NEED_VALUE')You run the later in the pc you have the alcohol registered and it fills with clipboard with a code.Paste it on a blanc au3 code and you got registration exe too...Still its **** messy.. Edited July 14, 2006 by minos197
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now