Jump to content

frankokasilda

Member
  • Posts

    9
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Argentina

About frankokasilda

  • Birthday 03/18/1990

Contact Methods

  • Website URL
    http://

frankokasilda's Achievements

0

Reputation

  1. It would be very good to know wich archive contains the cursors, it´s possible to change them with reshacker and make a cab to reeplace in the xp cd folder.. wich is that archive? anybody knows?
  2. Hello! I´m making my personal nLite CD. I would like to know if is possible to integrate the component "SCSI Pass Through Direct" (necessary in Alcohol 120% installation) in Windows XP, because, after installing it, it requests reboot the system.. I have an Alcohol installation made in AutoIt (it works perfectly), but my problem is "SCSI Pass Through Direct".. I wish to install Windows XP (with "SCSI Pass Through Direct" integrated), and later to install Alcohol 120% unattended without reboot my system.. is it possible? is there any solution? thank you!
  3. yes! finally, i have finished the totally automated installation, now i understand the function of some more commands.. i didn´t know how to write some lines, especify FileInstall and Runwait.. well, i made two scripts, one in the other, like this: first script name: Alcohol 1.exe #NoTrayIcon $title = "Alcohol 120% 1.9.8.7117" Run("Alcohol1.9.8.7117.exe") WinWait($title) ControlClick($title, "Click Next to continue.", "&Next >") WinWait($title) ControlClick($title, "Please review the license", "I &Agree") WinWait($title) ControlClick($title, "Choose Components", "&Next >") WinWait($title) ControlClick($title, "Choose Install Location", "&Install") WinWait($title, "Click Finish to close this wizard.") Send("{TAB}") Send("{TAB}") Send("{TAB}") Send("{TAB}") Send("{SPACE}") Send("{DOWN}") Send("{SPACE}") ControlClick($title, "Alcohol 120% has been installed on your computer.", "&Finish") Later, i made other script, like this: #NoTrayIcon FileInstall("Alcohol1.9.8.7117.exe", @TempDir & '\Alcohol1.9.8.7117.exe') FileInstall("Alcohol 1.exe", @TempDir & '\Alcohol 1.exe') RunWait('"' & @TempDir & '\Alcohol 1.exe', @TempDir) Sleep(500) FileDelete(@TempDir & '\Alcohol1.9.8.7117.exe') FileDelete(@TempDir & '\Alcohol 1.exe') Like this, the second script uses the first for automated installation, and later they are deleted.. I hope you understand me, sorry for the bad english , you help me very much, thank you!!
  4. First, thank you very much for your patient, i know the languaje is an obstacle And well, the archives are next: Without the AutoIt installed at PC, it worked fine. I could say "all is finished", but i want to know if there is any way to do that the two archives be only one, only the Unntended.exe. I repeat, thank you again!
  5. The .au3 is like this: FileInstall ( "C:\Documents and Settings\Administrador\Escritorio\Alcohol1.9.8.7117.exe", "C:\Archivos de programa\Alcohol Soft\Alcohol 120") $title = "Alcohol 120% 1.9.8.7117" Run("Alcohol1.9.8.7117.exe") WinWait($title) ControlClick($title, "Click Next to continue.", "&Next >") WinWait($title) ControlClick($title, "Please review the license", "I &Agree") WinWait($title) ControlClick($title, "Choose Components", "&Next >") WinWait($title) ControlClick($title, "Choose Install Location", "&Install") WinWait($title, "Click Finish to close this wizard.") Send("{TAB}") Send("{TAB}") Send("{TAB}") Send("{TAB}") Send("{SPACE}") Send("{DOWN}") Send("{SPACE}") ControlClick($title, "Alcohol 120% has been installed on your computer.", "&Finish") The installation is totally automatic, but at the moment of the installation i would like that the AutoIt isn´t necessary at the PC. *Edit: surely i´m writing a wrong code, i don´t know.
  6. "Files maintain their original creation/modification timestamps when installed." That means that i always must have the original archives? I don´t want that, i only want the script + programs be independent of AutoIt. I use File Install but, after compilation, the script is executed by Auto IT :/
  7. Hello! I have searched the way to integrate an AutoIT Script to executables, getting an executable that doesn´t need AutoIt installed in the PC.. do you understand me? Because I don´t speak english and to read in english is difficulty for me I have the AutoIt script and the executable, but i want to get a single executable.... How can I do that? Thank you for your help! Sorry if the section is incorrect, I can´t find the place to post. I need to learn more english ^^
  8. Oh thank you! the cause could be the updates the program needs.. i´m going to use AutoIt for learning more! Thanks!!
  9. Hello! I´m from Argentina (excuse me my english) I´m making a Windows XP Unatended + WPI installation with some programs I use.. I wish to put SpywareTerminator in it using this switch: /VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP- But when the installation finishes..... How can I avoid this? What switch must I add? Thank you and sorry for english again !
×
×
  • Create New...