MSFN Forum: someone can help me to silent install outpost? - MSFN Forum

Jump to content



Unattended CD/DVD Guide Homepage · MSFN Forum Rules

Welcome to the Applications Installs forum. Make sure you read the forum rules before you start posting.

Links/Requests to warez and/or any illegal material (porn, cracks, serials, etc..) will not be tolerated. Discussion of circumventing WGA/activation/timebombs/keygens or any other illegal activity will also not be tolerated.

We try our best to keep this forum clean of illegal content. If you see any illegal activity use the "report" button you find in every post to report the specific post to the moderators. If you ignore any of the rules you will be banned without notice.

Read Forum Rules
  • 3 Pages +
  • 1
  • 2
  • 3
  • You cannot start a new topic
  • You cannot reply to this topic

someone can help me to silent install outpost? Rate Topic: -----

#41 User is offline   SiMoNsAyS 

  • C'mon you apes! You wanna live forever!?
  • Group: Patrons
  • Posts: 3,455
  • Joined: 17-May 04

Posted 28 September 2004 - 04:55 PM

none it's easier than other, mine it's just for spanish users and @nateklomp's script it's for english language ;)

...working on outpost 2.5...


#42 User is offline   lilweirddude 

  • Senior Member
  • PipPipPipPip
  • Group: Members
  • Posts: 573
  • Joined: 24-August 04

Posted 29 September 2004 - 03:24 PM

oh thanks
save me a lot of trouble
is this right?
ECHO.
ECHO Installing Agnitum Oupost Pro Firewall v2.1
ECHO Please wait...
start /wait %systemdrive%\install\Agnitum Outpost Firewall Pro\OutpostProInstaller.exe
start /wait %systemdrive%\Install\Agnitum Outpost Firewall Pro\Key.reg
ECHO Done

thanks

#43 User is offline   SiMoNsAyS 

  • C'mon you apes! You wanna live forever!?
  • Group: Patrons
  • Posts: 3,455
  • Joined: 17-May 04

Posted 29 September 2004 - 05:03 PM

@lilweirddude, the code it's ok but i would preffer to run it from runonce and not cmdlines. to be sure try to use quotes like
ECHO.
ECHO Installing Agnitum Oupost Pro Firewall v2.1
ECHO Please wait...
start /wait "%systemdrive%\install\Agnitum Outpost Firewall Pro\OutpostProInstaller.exe"
start /wait "%systemdrive%\Install\Agnitum Outpost Firewall Pro\Key.reg"
ECHO Done


#44 User is offline   lilweirddude 

  • Senior Member
  • PipPipPipPip
  • Group: Members
  • Posts: 573
  • Joined: 24-August 04

Posted 29 September 2004 - 07:05 PM

ah thanks for all the help

#45 User is offline   SiMoNsAyS 

  • C'mon you apes! You wanna live forever!?
  • Group: Patrons
  • Posts: 3,455
  • Joined: 17-May 04

Posted 29 September 2004 - 07:40 PM

well i've mostly finished an autoit script to silent install outpost .366 (english lang) but i can't bypass a window:

Quote

; AutoIt Version: 3.0.102
; Language: English
; Platform: Win9x / NT / XP
; Author:  SiMoNsAyS aka Bio]-[aZaRD
; Script Function: Instalar Agnitum Outpost Pro Firewall 2.5
Opt("TrayIconDebug", 1)
Opt("WinTitleMatchMode", 3)
Run("OutpostProInstall.exe /s")
BlockInput(1)
;pass automatic config screen
WinWaitActive("Create New Configuration")
Send("{ENTER}")
;pass configuration wizard screen
WinWaitActive("Configuration Wizard")
Send("{ENTER}")

;pass finish installation screen
WinWaitActive("Configuration Wizard")
Send("{ENTER}")
;the most important on the installation. cancel the reboot now window.
WinWaitActive("Install")
ControlClick("OK","Cancel","Button3")
EXIT

what it's marked in red is the window that i can't bypass. i need a code that can wait for a button to be active (the keypress is sent when the button is still greyed out).

#46 User is offline   big_gie 

  • Senior Member
  • PipPipPipPip
  • Group: Members
  • Posts: 617
  • Joined: 27-July 03

Posted 01 October 2004 - 07:16 AM

Just put a "wait"?

#47 User is offline   nateklomp 

  • MS Junkie since DOS2.1
  • PipPip
  • Group: Members
  • Posts: 122
  • Joined: 12-May 04

Posted 01 October 2004 - 08:06 AM

I've had the same problem, try:
;pass configuration wizard screen
Sleep(2000)
WinWaitActive("Configuration Wizard")
WinActivate("Configuration Wizard")
Send("{ENTER}")

Good Luck!

#48 User is offline   lilweirddude 

  • Senior Member
  • PipPipPipPip
  • Group: Members
  • Posts: 573
  • Joined: 24-August 04

Posted 10 October 2004 - 08:50 AM

it wont go passed the agreement window, I have to manually agree then it goes on by itself

#49 User is offline   SiMoNsAyS 

  • C'mon you apes! You wanna live forever!?
  • Group: Patrons
  • Posts: 3,455
  • Joined: 17-May 04

Posted 10 October 2004 - 08:55 AM

lilweirddude, on Oct 10 2004, 04:50 PM, said:

it wont go passed the agreement window, I have to manually agree then it goes on by itself

???
that it's strange because normally most of autoit scripts (and mine) block the input

#50 User is offline   lilweirddude 

  • Senior Member
  • PipPipPipPip
  • Group: Members
  • Posts: 573
  • Joined: 24-August 04

Posted 10 October 2004 - 09:09 AM

i used the english one

#51 User is offline   SiMoNsAyS 

  • C'mon you apes! You wanna live forever!?
  • Group: Patrons
  • Posts: 3,455
  • Joined: 17-May 04

Posted 10 October 2004 - 09:14 AM

Maybe this can help
; AutoIt Version:  3.0.102
; Language:  English
; Platform:  Win9x / NT
; Author:  nateklomp
; Script Function:  Install Agnitum Outpost Firewall Professional v2.1.303.314
Run("outpost.exe")
Sleep(5000)
WinWaitActive("Welcome")
WinActivate("Welcome")
ControlClick("Welcome","","Button1")
WinActivate("License Agreement for Outpost Firewall 2.1")
ControlClick("License Agreement","","Button3")
WinActivate("License Agreement for Outpost Firewall 2.1")
Send("N")
WinWaitActive("Read Me File")
WinActivate("Read Me File")
ControlClick("Read Me File","","Button1")
WinWaitActive("Choose Destination Location")
WinActivate("Choose Destination Location")
ControlClick("Choose Destination Location","","Button1")
WinWaitActive("Start Installation")
WinActivate("Start Installation")
ControlClick("Start Installation","","#327701")
ControlClick("Start Installation","","Button1")
Sleep(5000)
WinWaitActive("Auto-configuration")
WinActivate("Auto-configuration")
ControlClick("Auto-configuration","","Button1")
WinWaitActive("Application")
WinActivate("Application")
ControlClick("Application","","Button6")
WinActivate("Application")
ControlClick("Application","","Button1")
WinWaitActive("Network")
WinActivate("Network")
ControlClick("Network","","Button6")
WinActivate("Network")
ControlClick("Network","","Button1")
WinWaitActive("Installation Complete")
WinActivate("Installation Complete")
ControlClick("Installation Complete","","Button1")
WinWaitActive("Install")
WinActivate("Install")
ControlClick("Install","","Button3")
EXIT


edit: corrected

This post has been edited by SiMoNsAyS: 10 October 2004 - 09:20 AM


#52 User is offline   lilweirddude 

  • Senior Member
  • PipPipPipPip
  • Group: Members
  • Posts: 573
  • Joined: 24-August 04

Posted 10 October 2004 - 09:15 AM

will try, thanks
***EDIT***
still doesnt work ;)

#53 User is offline   lilweirddude 

  • Senior Member
  • PipPipPipPip
  • Group: Members
  • Posts: 573
  • Joined: 24-August 04

Posted 10 October 2004 - 07:26 PM

bump

#54 User is offline   edmoncu 

  • Advanced Member
  • PipPipPip
  • Group: Members
  • Posts: 331
  • Joined: 28-April 04

Posted 11 October 2004 - 05:36 PM

has someone found any workaround on using other methods than using sleep to force a delay of the script? im worried if having a long sleep would seem like a halt on faster PCs while a quick sleep would break the script on slower PCs.

#55 User is offline   big_gie 

  • Senior Member
  • PipPipPipPip
  • Group: Members
  • Posts: 617
  • Joined: 27-July 03

Posted 12 October 2004 - 10:47 AM

Its not really important since there is lines for "WaitWin" and others.

That way it will wait for the window so a faster pc wont idle not enought.

#56 User is offline   edmoncu 

  • Advanced Member
  • PipPipPip
  • Group: Members
  • Posts: 331
  • Joined: 28-April 04

Posted 12 October 2004 - 12:03 PM

my worry for the new outpost 2.5 beta installation is that it uses the same window (both title and contents) for installing and prompting the user to continue. i wonder how will autoit differentiate the part where the buttons (next, back, cencel) are grayed out coz its installing itself and when the buttons become visible (once the copying of the file ends).

#57 User is offline   lilweirddude 

  • Senior Member
  • PipPipPipPip
  • Group: Members
  • Posts: 573
  • Joined: 24-August 04

Posted 12 October 2004 - 05:50 PM

does the script work for everyone else or is it just me who it doesnt work for?
ah, i see it's been changed
will try again

Share this topic:


  • 3 Pages +
  • 1
  • 2
  • 3
  • You cannot start a new topic
  • You cannot reply to this topic

1 User(s) are reading this topic
0 members, 1 guests, 0 anonymous users



All trademarks mentioned on this page are the property of their respective owners
Copyright © 2001 - 2011 msfn.org
Privacy Policy