Jump to content

ev0_05

Member
  • Posts

    30
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    United Kingdom

Everything posted by ev0_05

  1. yea just edited cus i dunno html/java just no a little of html
  2. Which Script do i edite to change the buttons around/remove them,, thnaks
  3. Hello, I fixed it lol.. The problem was wpi was launcing @ T12 and installing the apps then instead of 2nd boot when windows starts up so i think it sorta messed things up i had it in the wrong folder lol instead of $1>>Install>>Wpi i had it in c:\apps\wpi
  4. No not using nlite its sp2 winnt.sif yer Theres no reg tweaks either When it gets to the boot screen the blue bar moves abit then stops when it's about to boot up
  5. Hello all, I've setup my unattended CD but when i boot fully for the 1st time it freezes on the Xp boot screen it's the original kernal file just don't seem to go past the boot screen i'm using Vmware virtual desktop to test it
  6. so if i put in my RunOnceEx for %%i in (C: D: E: F: G: H: I: J:) do if exist %%i\win51ip.SP2 set CDROM=%%i start /wait %CDROM%\install\wpi\WPI.cmd And cmd1[pn]=['%CDROM%\\Install\\Blah\\Blah.exe /S'] would wpi install it from the cd?
  7. Try winwaitactive("NVIDIA Windows 2000/XP Display Drivers - InstallShield Wizard" , "Welkom bij de InstallShield Wizard voor NVIDIA") controlclick("NVIDIA Windows 2000/XP Display Drivers - InstallShield Wizard" , "&Volgende >" , "Button1") if that don't work time the wait period and put sleep(TimetoSleep) 500 = half a second 1000 = 1 second
  8. where i told u the script in the other post if it's a control i.e textbox, button etc just controclick("Window Title" , "ControlText" , "ControlName") window title being: NVIDIA Windows 2000/XP Display Drivers - InstallShield Wizard Control Text being:&Volgende > Control name being: Button1 if u needa wait while the window is there Winwaitactive("WindowTitle" , "Window Text") Window Title:NVIDIA Windows 2000/XP Display Drivers - InstallShield Wizard Window Text:Welkom bij de InstallShield Wizard voor NVIDIA just example change if nesacery
  9. trying to accept license agreement? would be controlcick("NVIDIA Windows 2000/XP Display Drivers - InstallShield Wizard" , "I &accept the terms in the license agreement" , "Button1") i think
  10. look at some of the install scripts on the forum thats how i got going run("C:\Program Files\Internet Explorer\IEXPLORE.EXE") ;The Program To run from the autoit script ;the example being internet explorer ;you can change this to ur program installer ;---------------------------------------------------------------------------- Winwaitactive("Welcome to MSN.co.uk - Microsoft Internet Explorer") ;Waits till the windows active before proceeding to next step ;the way to find if widow is active is by the title bar on the page ;---------------------------------------------------------------------------- Controlclick("Welcome to MSN.co.uk - Microsoft Internet Explorer", "" , "Edit1") ;Clicks a control on the active widow ;control being a textbox, command button, and other controls ;This clicks the adressbar on the control pannel ;if i wanted to make it click the home button i would change it to ;Controlclick("Welcome to MSN.co.uk - Microsoft Internet Explorer", "" , "ToolbarWindow324") ;then that would click the home button on the iexplorer toolbar ;------------------------------------------------------------------------------ Send("http://www.msfn.org/board{Enter}") ;send sends keys to the inputbox ;this will input things into an input box I.e for serial number etc: ;in this example i'm using Iexplorer adresss bar ;and the presses enter ;------------------------------------------------------------------------------- ;Run("Programname") ;WinWaitActive ( "title", ["text"], [timeout] ;text optional, timeout optional. Taken for help file ;controlclick("Title" , "Text" , "control") ;u can use the autoit window spy that comeswith autoit to find the control ;Send("TEXTTOSEND") ;send("{keytosend}") ;Send("TextToSend{KeyToPress]") ;Refer to help file for keys ;Sleep(Time) ;function to pause the script for x Amount of time ;250 = quarter of a second ;500 = half of a second ;1000 = second ;and so on thats basicly all there is to cover an autoit install any can add anything shout me
  11. WinSetOnTop("Input password to continue") $bLoop = 1 While $bLoop = 1 $passwd = InputBox("Input password to continue", "Please type in the password and click OK", "", "*",) If @error = 1 Then winactive("My Computer") winclose("My Computer") msgbox(1, "Wrong password". "Password incorrect") Else ; They clicked OK, but did they type the right thing? If $passwd <> "autoit" Then winactive("My Computer") winclose("My computer") Else $bLoop = 0 ; Exit the loop - ExitLoop would have been an alternative too :) EndIf EndIf WEnd This work? slightly modified of input example not totaly flawless off course
  12. Gr8 am gonna need forever to change mine keep changing from doing one thing to another this hacking .dll .exe making unatteneded disk this stuff keeps me up all night time flies it's 06:56 here now aint got any shut eye yet
  13. You can modyfy this 1 from the shell32 bg bmp is 14351 14353 to 14356
  14. i only change 1 icon so far cus hard to find good icons i been using the ones over at wincustomize Gimme a few days 2 do the rest lol
  15. gr8 stuff it worked thanks dudes ur stars lol
  16. Same as the exe ther compiled into one and it does the same when i compile them into 2 seperate .exe Basically wondering if you got the script re-executing it self... how do i find that out ?> the script does'nt even run lol just fills the taskbar :S i just double click the exe as usual with autoit compiled into it and then it floods me
  17. bump does this withall my compiled exe btw
  18. I've been using it for about 2hrs now done my 1st quick test to c what it was like from install and it worked great not a problem everything went smooth
  19. My Logon UI BackGround From Basehead.org Download
  20. This is what i get when i Compile the au3 script with an installer lol any1 know where am goin wrong? Run("CursorXp Plus 13a.exe") Winwaitactive("Stardock CursorXP setup") Send("{TAB}") sleep(250) Send("{TAB}") Sleep(250) Send("{+}") Sleep(250) Send("{TAB}") Sleep(250) Send("{ENTER}") Sleep(750) ControlClick("Stardock CursorXP setup" , "" , "Edit2" ) Send("**-******************-**********") Controlclick("Stardock CursorXP setup" , "Next" , "Button2") sleep(500) Controlclick("Stardock CursorXP setup" , "Next" , "Button2") Sleep(500) Controlclick("Stardock CursorXP setup" , "Next" , "Button2") Sleep(3000) Send("{TAB}{-}{TAB}-{TAB}{ENTER}") Sorry for hijacking the thread btw RightClicck Au3 Script An compile Script
×
×
  • Create New...