Jump to content

svortevik

Member
  • Posts

    27
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Norway

Posts posted by svortevik

  1. Form my runoneex file I try to install winamp and msn messenger, but none of them is in place when my windows instalation is in place.

    Can anyone take a look at my file and tell me whats wrong?

    REG ADD %KEY%\024 /VE /D "MSN Messenger 7" /f
    REG ADD %KEY%\024 /V 1 /D "%PP%MsnMsgs.msi IAGREE="Yes" ADDEXPLORERTOOLBAR="" SETSEARCHENGINE="" SETHOMEPAGE="" /QB" /f

    REG ADD %KEY%\048 /VE /D "WinAmp 5.092" /f
    REG ADD %KEY%\048 /V 1 /D "%PP%Winamp5092.msi XUser="Eirik Svortevik" XKey="US427-xxxxx-1E07C-xxxxx" /qn/qn" /f
    REG ADD %KEY%\048 /V 2 /D "REGEDIT /S %PP%winamp.reg" /f

    rundll32.exe iernonce.dll,RunOnceExProcess

  2. When installing some of my programs I need taskkill to run, but it wont.

    Can anyone look over my commands and tell med whats wrong?

    REG ADD %KEY%\009 /VE /D "BulletProof FTP Server" /f
    REG ADD %KEY%\009 /V 1 /D "%PP%ftpsetup.exe /verysilent" /f
    REG ADD %KEY%\009 /V 2 /D "taskkill.exe /IM bpftpserver.exe" /f
    REG ADD %KEY%\009 /V 3 /D "%PP%bpftpserver.exe" /f

    REG ADD %KEY%\016 /VE /D "DVD Identifier" /f
    REG ADD %KEY%\016 /V 1 /D "%PP%DVDIdentifier3.6.3.1.exe /VERYSILENT" /f
    REG ADD %KEY%\016 /V 2 /D "taskkill.exe /IM "DVD Identifier.exe"" /f

    REG ADD %KEY%\038 /VE /D "Opera Search ini editor" /f
    REG ADD %KEY%\038 /V 1 /D "%PP%OperaSearchIni\opsedsetup123.exe /SILENT" /f
    REG ADD %KEY%\038 /V 2 /D "taskkill.exe /IM opsed.exe" /f

    REG ADD %KEY%\052 /VE /D "TuneXp 1.5" /f
    REG ADD %KEY%\052 /V 1 /D "%PP%TuneXP15.exe /VERYSILENT /SP-" /f
    REG ADD %KEY%\052 /V 2 /D "%PP%Sleep.exe 10" /f
    REG ADD %KEY%\052 /V 3 /D "taskkill.exe /IM tunexp.exe" /f

  3. Is there any way to get my program to instal before I logon to my user account? I got it to work with wpi, but not with an cmd file..It seems kind of wasted if I have to log on before it will start installing my programs.

    If there is no way of doing this, can someone please tell me how to skip the "customise" windows before I get to the logon screen? No mater what I do the instalation prosses stop at some point.

  4. 8. Now you can compress it to SFX (if compressed it will be just 12.2 MB, if left uncompressed it is 56.2 MB). And set it to silently extract.

    How do I set it to silent extract?

    Is this correct?

    Setup=netfx.msi
    TempMode
    Silent=1
    Overwrite=1

    One last thing...Do I add QB to the netfx.exe I made with win rar, or do I add it to the text over in code? "Setup=netfx.msi /QB"??

  5. I have now made an .exe file from the scrip. Is there any command I have to use to make it "silent"? When I start the script it wil start the instaler, but I stil have to press next and so on..

    This is the script I`m trying to run for my autoit file.

    $Title_1 = "autoit-v3-setup.exe"

    Run ( "autoit-v3-setup.exe" )

    ;Welcome Screen
    WinWaitActive( $Title_1 , "Welcome")
    Send ("{ENTER}")

    ;License Screen
    WinWaitActive( $Title_1 , "License")
    Send ("{ENTER}")

    ;Install Path
    WinWaitActive( $Title_1 , "Choose")
    Send (@homedrive & "\xp\util\AutoIt\")
    Send ("{ENTER}")

    ;Finish
    WinWaitActive( $Title_1 , "Completing")
    Send ("{SPACE}")
    Send ("{ENTER}")

    I have a question about the "install Path" too. In this script, will it install autoit in programfiles, or in a spesific folder?

×
×
  • Create New...