Jump to content

fourte3n

Member
  • Posts

    120
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Australia

Posts posted by fourte3n

  1. My must haves...

    1. Firefox 1.5

    2. OpenOffice 2.0

    3. Nod32

    4. WinRAR 3.51

    5. PaintShopPro X

    6. Adaware SE

    7. KLite Basic

    8. Quicktime Alternative

    9. Xpize

    10. WMP 10

    11. Corel 12

    12. FileZilla

    13. Free Download Manager

    14. Nero

    15. Flash

    Other Programs that are 'must haves but not installed

    16. utorrent

    17. foxitPDF

    18. emule

    19. notepad2

    20. WinDoc

  2. If you use the 'My Computer opens Explorer' Tweak you may have noticed that it opens 'c:' instead of 'my documents'.

    To change this remove the '/e'

    EG:

    ORIGINAL

    ;My Computer opens Explorer

    [HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\Explorer\command]

    @="explorer /e"

    ALTERED VERSION

    ;My Computer opens Explorer

    [HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\Explorer\command]

    @="explorer"

    Just thought you may want to add it to your collection, as an option.

    :D It really did take me ages to figure this out!

  3. yep you misunderstood. The program uses 'check boxes' that let you select all options. What im talking about is the selection buttons that only let you select one (of a group) of buttons. Like when in reply you see two buttons to the left of the screen 'Guided Mode' or 'Normal Mode' This would stop you from selecting two office suites or anti viruses or firewalls...

  4. I was wondering if there is a program or script that can run as a program selection menu so when it comes time to install the software it lets you select what you want or dont want... I understand that it sort of defeats the purpose of an "unattended" Disc but It is an interesting idea for a larger Disc (DVD) with multiple programs.

  5. EDIT: FTPRush Script (Again... thanks to "gon freecs" my scripter in cotton armor ) :lol:

    [quote]; ----------------------------------------------------------------------------
    ; Set up our defaults/Variables
    ; ----------------------------------------------------------------------------

    AutoItSetOption ( "WinTitleMatchMode", 1 )
    $NAME= "**DELETED**"
    $KEY= "**DELETED**"

    ; ----------------------------------------------------------------------------
    ; Script Start
    ; ----------------------------------------------------------------------------

    Run  ( "FTPRush.exe /S")
    ProcessWaitClose ( "FTPRush.exe")
    ; Runs the installer silently and waits for its end

    FileDelete(@DesktopDir & "\FTPRush.lnk")
    ;Removes the desktop shortcut

    Run(@ProgramFilesDir & "\FTPRush\FtpRush.exe")
    ;A silent install doesn't start ftprush, so it must be done "manually"

    WinWaitActive ( "About FTPRush" )
    Send  ( "{ENTER}" )
    WinWaitActive ( "Confirm" )
    Send  ( "!Y" )
    WinWaitActive ( "Enter Key" )

    ; by default the "name" cell is activated, so just send your name
    Send($NAME)

    ; goes to the "key" cell by pressing tab
    Send("{TAB}")

    ; sends your key
    Send($KEY)

    ; goes to the "ok" button and validate
    Send("{TAB 2}{ENTER}")

    ; Closes ftprush
    ProcessClose("FtpRush.exe")[/quote]

  6. A-Squared 1.5 AutoIT Script

    Kills the Update Screen at the end. It seems that in Silent mode the kill doesnt work... someone else may have better luck with that. Until then its as is.

    [quote]; ----------------------------------------------------------------------------
    ;
    ; AutoIt Version: 3.0
    ; Language:    English
    ; Platform:    Win9x / NT
    ; Author:      fourte3n
    ;
    ; Script Function:
    ; A-Squared 1.5 Free -  Install
    ;
    ; ----------------------------------------------------------------------------


    ; ----------------------------------------------------------------------------
    ; Set up our defaults/Variables
    ; ----------------------------------------------------------------------------

    AutoItSetOption("WinTitleMatchMode", 1)
    $SF= "a2freesetup.exe"

    ; ----------------------------------------------------------------------------
    ; Script Start
    ; ----------------------------------------------------------------------------

    Run($SF)

    WinWaitActive ("Select Setup Language")
    Send ("{ENTER}")
    WinWaitActive ("Setup - a-squared free")
    Send ("!N")
    WinWaitActive ("Setup - a-squared free")
    Send("{TAB}" & "{UP}" & "{ENTER}")
    WinWaitActive ("Setup - a-squared free")
    Send ("{ENTER}")
    WinWaitActive ("Setup - a-squared free")
    Send ("{ENTER}")
    WinWaitActive ("Setup - a-squared free")
    Send ("{SPACE}" & "{TAB}" & "{SPACE}" & "{TAB}" & "{SPACE}" & "{ENTER}")
    WinWaitActive ("Setup - a-squared free")
    Send ("{ENTER}")
    WinWaitActive ("a² Updater")
    WinKill("a² Updater", "")
    WinWaitActive ("Setup - a-squared free")
    Send ("{ENTER}")


    ; ----------------------------------------------------------------------------
    ; Script End
    ; ----------------------------------------------------------------------------[/quote]
  7. EDIT: gon freecs has saved my day!

    Here is the AutoIT Script for FTPRush

    ; ----------------------------------------------------------------------------

    ; Set up our defaults/Variables

    ; ----------------------------------------------------------------------------

    AutoItSetOption ( "WinTitleMatchMode", 1 )

    $NAME= "**DELETED**"

    $KEY= "**DELETED**"

    ; ----------------------------------------------------------------------------

    ; Script Start

    ; ----------------------------------------------------------------------------

    Run  ( "FTPRush.exe /S")

    ProcessWaitClose ( "FTPRush.exe")

    ; Runs the installer silently and waits for its end

    FileDelete(@DesktopDir & "\FTPRush.lnk")

    ;Removes the desktop shortcut

    Run(@ProgramFilesDir & "\FTPRush\FtpRush.exe")

    ;A silent install doesn't start ftprush, so it must be done "manually"

    WinWaitActive ( "About FTPRush" )

    Send  ( "{ENTER}" )

    WinWaitActive ( "Confirm" )

    Send  ( "!Y" )

    WinWaitActive ( "Enter Key" )

    ; by default the "name" cell is activated, so just send your name

    Send($NAME)

    ; goes to the "key" cell by pressing tab

    Send("{TAB}")

    ; sends your key

    Send($KEY)

    ; goes to the "ok" button and validate

    Send("{TAB 2}{ENTER}")

    ; Closes ftprush

    ProcessClose("FtpRush.exe")

    Thanks again gon freecs :thumbup

  8. EDIT: A-Squared AutoIT Script

    ; ----------------------------------------------------------------------------

    ;

    ; AutoIt Version: 3.0

    ; Language:    English

    ; Platform:    Win9x / NT

    ; Author:      fourte3n

    ;

    ; Script Function:

    ; A-Squared 1.5 Free -  Install

    ;

    ; ----------------------------------------------------------------------------

    ; ----------------------------------------------------------------------------

    ; Set up our defaults/Variables

    ; ----------------------------------------------------------------------------

    AutoItSetOption("WinTitleMatchMode", 1)

    $SF= "a2freesetup.exe"

    ; ----------------------------------------------------------------------------

    ; Script Start

    ; ----------------------------------------------------------------------------

    Run($SF)

    WinWaitActive ("Select Setup Language")

    Send ("{ENTER}")

    WinWaitActive ("Setup - a-squared free")

    Send ("!N")

    WinWaitActive ("Setup - a-squared free")

    Send("{TAB}" & "{UP}" & "{ENTER}")

    WinWaitActive ("Setup - a-squared free")

    Send ("{ENTER}")

    WinWaitActive ("Setup - a-squared free")

    Send ("{ENTER}")

    WinWaitActive ("Setup - a-squared free")

    Send ("{SPACE}" & "{TAB}" & "{SPACE}" & "{TAB}" & "{SPACE}" & "{ENTER}")

    WinWaitActive ("Setup - a-squared free")

    Send ("{ENTER}")

    WinWaitActive ("a² Updater")

    WinKill("a² Updater", "")

    WinWaitActive ("Setup - a-squared free")

    Send ("{ENTER}")

    ; ----------------------------------------------------------------------------

    ; Script End

    ; ----------------------------------------------------------------------------

    Hope it helps you all.

  9. yes as a serial number... I dont know how to find it in the REG.

    edit: would this be it?

    Windows Registry Editor Version 5.00

    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\MenuOrder\Start Menu2\Programs\FTPRush]

    "Order"=hex:08,00,00,00,02,00,00,00,52,02,00,00,01,00,00,00,05,00,00,00,70,00,\

    00,00,00,00,00,00,62,00,00,00,41,75,67,4d,02,00,00,00,01,00,00,00,50,00,32,\

    00,ac,02,00,00,6b,31,2b,4c,20,00,46,6f,72,75,6d,2e,6c,6e,6b,00,2a,00,03,00,\

    04,00,ef,be,6b,31,2b,4c,6b,31,2b,4c,14,00,00,00,46,00,6f,00,72,00,75,00,6d,\

    00,2e,00,6c,00,6e,00,6b,00,00,00,18,00,0e,00,00,00,0a,00,ef,be,00,00,00,00,\

    18,00,00,00,00,00,00,00,00,00,70,00,00,00,01,00,00,00,62,00,00,00,41,75,67,\

    4d,02,00,00,00,01,00,00,00,50,00,32,00,ac,02,00,00,6b,31,2b,4c,20,00,4f,72,\

    64,65,72,2e,6c,6e,6b,00,2a,00,03,00,04,00,ef,be,6b,31,2b,4c,6b,31,2b,4c,14,\

    00,00,00,4f,00,72,00,64,00,65,00,72,00,2e,00,6c,00,6e,00,6b,00,00,00,18,00,\

    0e,00,00,00,0a,00,ef,be,00,00,00,00,18,00,00,00,00,00,00,00,00,00,74,00,00,\

    00,02,00,00,00,66,00,00,00,41,75,67,4d,02,00,00,00,01,00,00,00,54,00,32,00,\

    61,05,00,00,6b,31,2b,4c,20,00,53,63,72,69,70,74,2e,6c,6e,6b,00,00,2c,00,03,\

    00,04,00,ef,be,6b,31,2b,4c,6b,31,2b,4c,14,00,00,00,53,00,63,00,72,00,69,00,\

    70,00,74,00,2e,00,6c,00,6e,00,6b,00,00,00,1a,00,0e,00,00,00,0a,00,ef,be,00,\

    00,00,00,1a,00,00,00,00,00,00,00,00,00,7c,00,00,00,03,00,00,00,6e,00,00,00,\

    41,75,67,4d,02,00,00,00,01,00,00,00,5c,00,32,00,26,06,00,00,6b,31,2b,4c,20,\

    00,55,6e,69,6e,73,74,61,6c,6c,2e,6c,6e,6b,00,32,00,03,00,04,00,ef,be,6b,31,\

    2b,4c,6b,31,2b,4c,14,00,00,00,55,00,6e,00,69,00,6e,00,73,00,74,00,61,00,6c,\

    00,6c,00,2e,00,6c,00,6e,00,6b,00,00,00,1c,00,0e,00,00,00,0a,00,ef,be,00,00,\

    00,00,1c,00,00,00,00,00,00,00,00,00,76,00,00,00,04,00,00,00,68,00,00,00,41,\

    75,67,4d,02,00,00,00,01,00,00,00,56,00,32,00,b8,02,00,00,6b,31,2b,4c,20,00,\

    57,65,62,73,69,74,65,2e,6c,6e,6b,00,2e,00,03,00,04,00,ef,be,6b,31,2b,4c,6b,\

    31,2b,4c,14,00,00,00,57,00,65,00,62,00,73,00,69,00,74,00,65,00,2e,00,6c,00,\

    6e,00,6b,00,00,00,1a,00,0e,00,00,00,0a,00,ef,be,00,00,00,00,1a,00,00,00,00,\

    00,00,00,00,00

    [HKEY_USERS\S-1-5-21-1454471165-1580436667-854245398-1003\Software\Microsoft\Windows\CurrentVersion\Explorer\MenuOrder\Start Menu2\Programs\FTPRush]

    "Order"=hex:08,00,00,00,02,00,00,00,52,02,00,00,01,00,00,00,05,00,00,00,70,00,\

    00,00,00,00,00,00,62,00,00,00,41,75,67,4d,02,00,00,00,01,00,00,00,50,00,32,\

    00,ac,02,00,00,6b,31,2b,4c,20,00,46,6f,72,75,6d,2e,6c,6e,6b,00,2a,00,03,00,\

    04,00,ef,be,6b,31,2b,4c,6b,31,2b,4c,14,00,00,00,46,00,6f,00,72,00,75,00,6d,\

    00,2e,00,6c,00,6e,00,6b,00,00,00,18,00,0e,00,00,00,0a,00,ef,be,00,00,00,00,\

    18,00,00,00,00,00,00,00,00,00,70,00,00,00,01,00,00,00,62,00,00,00,41,75,67,\

    4d,02,00,00,00,01,00,00,00,50,00,32,00,ac,02,00,00,6b,31,2b,4c,20,00,4f,72,\

    64,65,72,2e,6c,6e,6b,00,2a,00,03,00,04,00,ef,be,6b,31,2b,4c,6b,31,2b,4c,14,\

    00,00,00,4f,00,72,00,64,00,65,00,72,00,2e,00,6c,00,6e,00,6b,00,00,00,18,00,\

    0e,00,00,00,0a,00,ef,be,00,00,00,00,18,00,00,00,00,00,00,00,00,00,74,00,00,\

    00,02,00,00,00,66,00,00,00,41,75,67,4d,02,00,00,00,01,00,00,00,54,00,32,00,\

    61,05,00,00,6b,31,2b,4c,20,00,53,63,72,69,70,74,2e,6c,6e,6b,00,00,2c,00,03,\

    00,04,00,ef,be,6b,31,2b,4c,6b,31,2b,4c,14,00,00,00,53,00,63,00,72,00,69,00,\

    70,00,74,00,2e,00,6c,00,6e,00,6b,00,00,00,1a,00,0e,00,00,00,0a,00,ef,be,00,\

    00,00,00,1a,00,00,00,00,00,00,00,00,00,7c,00,00,00,03,00,00,00,6e,00,00,00,\

    41,75,67,4d,02,00,00,00,01,00,00,00,5c,00,32,00,26,06,00,00,6b,31,2b,4c,20,\

    00,55,6e,69,6e,73,74,61,6c,6c,2e,6c,6e,6b,00,32,00,03,00,04,00,ef,be,6b,31,\

    2b,4c,6b,31,2b,4c,14,00,00,00,55,00,6e,00,69,00,6e,00,73,00,74,00,61,00,6c,\

    00,6c,00,2e,00,6c,00,6e,00,6b,00,00,00,1c,00,0e,00,00,00,0a,00,ef,be,00,00,\

    00,00,1c,00,00,00,00,00,00,00,00,00,76,00,00,00,04,00,00,00,68,00,00,00,41,\

    75,67,4d,02,00,00,00,01,00,00,00,56,00,32,00,b8,02,00,00,6b,31,2b,4c,20,00,\

    57,65,62,73,69,74,65,2e,6c,6e,6b,00,2e,00,03,00,04,00,ef,be,6b,31,2b,4c,6b,\

    31,2b,4c,14,00,00,00,57,00,65,00,62,00,73,00,69,00,74,00,65,00,2e,00,6c,00,\

    6e,00,6b,00,00,00,1a,00,0e,00,00,00,0a,00,ef,be,00,00,00,00,1a,00,00,00,00,\

    00,00,00,00,00

×
×
  • Create New...