Outpost Firewall Pro 3.5 (build 638/457) need help silent install almost complete
#1
Posted 13 February 2006 - 12:39 PM
has just been released on the 9th i believe
im trying to make a silent installer otu of it, and so far its going kinda good but yet i ran into 1 little snag
first the good pints is that it uses a type on inno setup installer
so you can install it like this OutpostProInstall.exe /VERYSILENT /SP- /NOICONS /NORESTART
but the problem is the (configuration wizard) pops up
does any body have any ideals on how to get around this ?
other then that it installs just fine
#2
Posted 13 February 2006 - 03:12 PM
i use myself outpost and will try to get the latest version working silently on my ua dvd. will let you know if i found something on the config wizard.
have you tried at the outpost forum in agnitum's website? i will look tonight.
#3
Posted 13 February 2006 - 03:44 PM
elajua, on Feb 13 2006, 05:12 PM, said:
i use myself outpost and will try to get the latest version working silently on my ua dvd. will let you know if i found something on the config wizard.
have you tried at the outpost forum in agnitum's website? i will look tonight.
the /NOICONS switch makes the installer not create desktop and quicklaunch shortcuts
btw .. the only way ive found to get around the configuration wizard was to use a custom autoit script with the
/VERYSILENT /SP- /NOICONS /NORESTART switches in it, its not the perfect solution but it works,
#4
Posted 13 February 2006 - 09:25 PM
#5
Posted 13 February 2006 - 11:17 PM
elajua, on Feb 13 2006, 11:25 PM, said:
sure no worries,, hope this will help you out
name this what ever you want with the extension .au3 and then save it,, then compile it after youve edited it the way you like ,, change the time delay to suit your own needs
Quote
; Language: English
; Platform: Win9x / NT / XP
; Author: Lost Soul
; Script Function: Instals Agnitum Outpost Pro Firewall 3.5
Run("OutpostProInstall.exe /VERYSILENT /SP- /NOICONS /NORESTART")
;pass automatic config screen
WinWaitActive("Configuration Wizard")
WinActivate("Configuration Wizard")
Send("{ENTER}")
;pass configuration wizard screen
Sleep(90000)
WinWaitActive("Configuration Wizard")
WinActivate("Configuration Wizard")
Send("{ENTER}")
;pass finish installation screen
WinWaitActive("Configuration Wizard")
WinActivate("Configuration Wizard")
Send("{ENTER}")
Send("{ESC}")
EXIT
#6
Posted 13 February 2006 - 11:47 PM
i will install autoit tomorrow i begin my trainig
later.
#7
Posted 14 February 2006 - 12:33 AM
elajua, on Feb 14 2006, 01:47 AM, said:
i will install autoit tomorrow i begin my trainig
later.
yes it should be along side the installer,, and yes i agree with you on it being the best, but thats just my opinion, each to there own huh
#8
Posted 14 April 2006 - 04:50 PM
Quote
;pass automatic config screen
WinWaitActive("Configuration Wizard")
WinActivate("Configuration Wizard")
Send("{ENTER}")
;pass configuration wizard screen
Sleep(40000)
WinWaitActive("Configuration Wizard")
WinActivate("Configuration Wizard")
Send("{ENTER}")
;pass finish installation screen
WinWaitActive("Configuration Wizard")
WinActivate("Configuration Wizard")
Send("{ENTER}")
Send("{ESC}")
WinKill ( "Configuration Wizard" )
Send("{ENTER}")
EXIT
#9
Posted 16 April 2006 - 01:41 PM
here's my autoit code which does it... thereby elimating the need of approximating a delay parameter (which may proove too slow on some fast pc's and too fast on slow pc's).
Quote
WinWait("Configuration Wizard")
ControlClick ("Configuration Wizard", "", "Button5")
$e= ControlCommand("Configuration Wizard", "", "Button5", "IsEnabled", "")
While $e=0
$e= ControlCommand("Configuration Wizard", "", "Button5", "IsEnabled", "")
WEnd
ControlClick ("Configuration Wizard", "", "Button5")
ControlClick ("Configuration Wizard", "", "Button10")
RegWrite("HKEY_LOCAL_MACHINE\SOFTWARE\Agnitum\Outpost Firewall", "Key", "REG_SZ", "abcdefg")
This post has been edited by edmoncu: 16 April 2006 - 01:44 PM
#10
Posted 27 April 2006 - 04:14 PM
e dont now do almost anything.
my outpost is 3.5.738.6327(460)
thanks
#11
Posted 30 April 2006 - 02:28 AM
#12
Posted 30 April 2006 - 07:31 AM
edmoncu, on Apr 16 2006, 03:41 PM, said:
here's my autoit code which does it... thereby elimating the need of approximating a delay parameter (which may proove too slow on some fast pc's and too fast on slow pc's).
Quote
WinWait("Configuration Wizard")
ControlClick ("Configuration Wizard", "", "Button5")
$e= ControlCommand("Configuration Wizard", "", "Button5", "IsEnabled", "")
While $e=0
$e= ControlCommand("Configuration Wizard", "", "Button5", "IsEnabled", "")
WEnd
ControlClick ("Configuration Wizard", "", "Button5")
ControlClick ("Configuration Wizard", "", "Button10")
RegWrite("HKEY_LOCAL_MACHINE\SOFTWARE\Agnitum\Outpost Firewall", "Key", "REG_SZ", "abcdefg")
interesting method,, ill have to test this out,, thanks
#13
Posted 20 July 2006 - 11:05 AM
This post has been edited by lurk&jerk: 20 July 2006 - 11:07 AM
#14
Posted 20 July 2006 - 07:19 PM
$title1 = "Configuration Wizard"
$title2 = "Outpost Firewall Pro Setup"
$key1 = "HKEY_LOCAL_MACHINE\SOFTWARE\Agnitum\Outpost Firewall"
$sn_p1 = "sn part 1"
$sn_p2 = "sn part 2"
$sn_p3 = "sn part 3"
$sn_p4 = "sn part 4"
$sn_p5 = "sn part 5"
AdlibEnable("OPAdlib")
Run("Outpost.exe /LANG=en /SP- /SILENT /NORESTART")
WinWait($title1)
ControlClick($title1, "", "Button5")
$e = ControlCommand($title1, "", "Button5", "IsEnabled", "")
While $e = 0
$e = ControlCommand($title1, "", "Button5", "IsEnabled", "")
WEnd
ControlClick($title1, "", "Button5")
ControlClick($title1, "", "Button10")
RegDelete($key1, "RenewalDaysLeft")
RegWrite($key1, "Key", "REG_SZ", $sn_p1&@LF&$sn_p2&@LF&$sn_p3&@LF&$sn_p4&@LF&$sn_p5)
AdlibDisable()
Exit
Func OPAdlib()
Select
Case WinExists("Error")
WinClose("Error")
Exit
Case WinExists($title2, "Please select Exit")
WinClose($title2)
WinWait($title2)
ControlClick($title2, "", "Button1")
MsgBox(262144, "Outpost Firewall", "Outpost Firewall is already installed.", 3)
Exit
EndSelect
EndFunc
#15
Posted 22 July 2006 - 05:09 PM
but I found a scrren left in the end of the setup that need to be closed
any suggestion?
Thanks
This post has been edited by mgadallah: 23 July 2006 - 06:08 AM
#16
Posted 23 July 2006 - 03:22 PM
Quote
$title2 = "Outpost Firewall Pro Setup"
$key1 = "HKEY_LOCAL_MACHINE\SOFTWARE\Agnitum\Outpost Firewall"
$sn_p1 = "sn part 1"
$sn_p2 = "sn part 2"
$sn_p3 = "sn part 3"
$sn_p4 = "sn part 4"
$sn_p5 = "sn part 5"
AdlibEnable("OPAdlib")
Run("Outpost.exe /LANG=en /SP- /SILENT /NORESTART")
WinWait($title1)
ControlClick($title1, "", "Button5")
$e = ControlCommand($title1, "", "Button5", "IsEnabled", "")
While $e = 0
$e = ControlCommand($title1, "", "Button5", "IsEnabled", "")
WEnd
ControlClick($title1, "", "Button5")
WinWait($title1)
ControlClick($title1, "", "Button10")
RegDelete($key1, "RenewalDaysLeft")
RegWrite($key1, "Key", "REG_SZ", $sn_p1&@LF&$sn_p2&@LF&$sn_p3&@LF&$sn_p4&@LF&$sn_p5)
AdlibDisable()
Exit
Func OPAdlib()
Select
Case WinExists("Error")
WinClose("Error")
Exit
Case WinExists($title2, "Please select Exit")
WinClose($title2)
WinWait($title2)
ControlClick($title2, "", "Button1")
MsgBox(262144, "Outpost Firewall", "Outpost Firewall is already installed.", 3)
Exit
EndSelect
EndFunc
This post has been edited by scdd: 23 July 2006 - 04:16 PM
#17
Posted 24 July 2006 - 07:46 PM
Every thing works great
Just the last screen stand for just seconds then disappear
Thanks
- ← Vista Transformation Pack 4 ! !
- Application Installs
- Here i found an interesting TOOL for silent installation! →



Help

Back to top








