Lost Soul Posted February 13, 2006 Share Posted February 13, 2006 hello everybody the latest version of Outpost Firewall Pro 3.5 (build 638/457) has just been released on the 9th i believeim trying to make a silent installer otu of it, and so far its going kinda good but yet i ran into 1 little snagfirst the good pints is that it uses a type on inno setup installerso you can install it like this OutpostProInstall.exe /VERYSILENT /SP- /NOICONS /NORESTARTbut the problem is the (configuration wizard) pops updoes any body have any ideals on how to get around this ?other then that it installs just fine Link to comment Share on other sites More sharing options...
ajua Posted February 13, 2006 Share Posted February 13, 2006 what is /NOICONS for? for avoid the shorcuts? or what? thanks.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. Link to comment Share on other sites More sharing options...
Lost Soul Posted February 13, 2006 Author Share Posted February 13, 2006 what is /NOICONS for? for avoid the shorcuts? or what? thanks.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 shortcutsbtw .. 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, Link to comment Share on other sites More sharing options...
ajua Posted February 14, 2006 Share Posted February 14, 2006 i've never used autoit but i already download it to try it with outpost. can you post your script to see if it helps me on it? thanks. Link to comment Share on other sites More sharing options...
Lost Soul Posted February 14, 2006 Author Share Posted February 14, 2006 i've never used autoit but i already download it to try it with outpost. can you post your script to see if it helps me on it? thanks.sure no worries,, hope this will help you outname 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 ; AutoIt Version: 3.0.102; Language: English; Platform: Win9x / NT / XP; Author: Lost Soul; Script Function: Instals Agnitum Outpost Pro Firewall 3.5Run("OutpostProInstall.exe /VERYSILENT /SP- /NOICONS /NORESTART");pass automatic config screenWinWaitActive("Configuration Wizard")WinActivate("Configuration Wizard")Send("{ENTER}");pass configuration wizard screenSleep(90000)WinWaitActive("Configuration Wizard")WinActivate("Configuration Wizard")Send("{ENTER}");pass finish installation screenWinWaitActive("Configuration Wizard")WinActivate("Configuration Wizard")Send("{ENTER}")Send("{ESC}")EXIT Link to comment Share on other sites More sharing options...
ajua Posted February 14, 2006 Share Posted February 14, 2006 thanks. i think that the compile exe file should be along with OutpostProInstall.exe. am i correct?i will install autoit tomorrow i begin my trainig thanks for your script. in my opinion outpost is the best firewall by far. i hate when all us computer magazines talk wonders about zonealarm. it isnt bad but i prefer outpost's ability to display all kinds of info on almost everything that is happening in your network.later. Link to comment Share on other sites More sharing options...
Lost Soul Posted February 14, 2006 Author Share Posted February 14, 2006 thanks. i think that the compile exe file should be along with OutpostProInstall.exe. am i correct?i will install autoit tomorrow i begin my trainig thanks for your script. in my opinion outpost is the best firewall by far. i hate when all us computer magazines talk wonders about zonealarm. it isnt bad but i prefer outpost's ability to display all kinds of info on almost everything that is happening in your network.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 Link to comment Share on other sites More sharing options...
CrashUK Posted April 14, 2006 Share Posted April 14, 2006 try it this way. this way it has to exit so the next program can install.. but 40 secs should do if it dont outpost should still install ok. Run("OutpostProInstall.exe /VERYSILENT /SP- /NORESTART");pass automatic config screenWinWaitActive("Configuration Wizard")WinActivate("Configuration Wizard")Send("{ENTER}");pass configuration wizard screenSleep(40000)WinWaitActive("Configuration Wizard")WinActivate("Configuration Wizard")Send("{ENTER}");pass finish installation screenWinWaitActive("Configuration Wizard")WinActivate("Configuration Wizard")Send("{ENTER}")Send("{ESC}")WinKill ( "Configuration Wizard" )Send("{ENTER}")EXIT Link to comment Share on other sites More sharing options...
edmoncu Posted April 16, 2006 Share Posted April 16, 2006 (edited) since we're already using autoit, why not make a way on scanning if a button is already clickable, instead of using a delay.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).Run("OutpostProInstall.exe /VERYSILENT /SP- /NOICONS /NORESTART")WinWait("Configuration Wizard")ControlClick ("Configuration Wizard", "", "Button5")$e= ControlCommand("Configuration Wizard", "", "Button5", "IsEnabled", "")While $e=0 $e= ControlCommand("Configuration Wizard", "", "Button5", "IsEnabled", "")WEndControlClick ("Configuration Wizard", "", "Button5")ControlClick ("Configuration Wizard", "", "Button10")RegWrite("HKEY_LOCAL_MACHINE\SOFTWARE\Agnitum\Outpost Firewall", "Key", "REG_SZ", "abcdefg") Edited April 16, 2006 by edmoncu Link to comment Share on other sites More sharing options...
Mr.Mufy Posted April 27, 2006 Share Posted April 27, 2006 does any gay can tell me how can i do my silence install for the outpost from the bigining to the end??e dont now do almost anything.my outpost is 3.5.738.6327(460)thanks Link to comment Share on other sites More sharing options...
ajua Posted April 30, 2006 Share Posted April 30, 2006 has anyone confirmed edmoncu script? i didnt had the time to test those scripts myself. thanks for shring them with us. will try them as soon as i get some time off work. Link to comment Share on other sites More sharing options...
Lost Soul Posted April 30, 2006 Author Share Posted April 30, 2006 since we're already using autoit, why not make a way on scanning if a button is already clickable, instead of using a delay.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).Run("OutpostProInstall.exe /VERYSILENT /SP- /NOICONS /NORESTART")WinWait("Configuration Wizard")ControlClick ("Configuration Wizard", "", "Button5")$e= ControlCommand("Configuration Wizard", "", "Button5", "IsEnabled", "")While $e=0 $e= ControlCommand("Configuration Wizard", "", "Button5", "IsEnabled", "")WEndControlClick ("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 Link to comment Share on other sites More sharing options...
lurk&jerk Posted July 20, 2006 Share Posted July 20, 2006 (edited) Yes, edmoncu's script works. Outpost gives an error message when you first start it up. But just dismiss the window. However, the registration code entry didn't work for me. I'm going to try the regedit /s command to write the entire Outpost registry entries, not just the registration number, and see if that solves the problem. Edited July 20, 2006 by lurk&jerk Link to comment Share on other sites More sharing options...
scdd Posted July 21, 2006 Share Posted July 21, 2006 Try this (base on edmoncu's script,thanks!)$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", "")WEndControlClick($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()ExitFunc OPAdlib()SelectCase WinExists("Error")WinClose("Error")ExitCase WinExists($title2, "Please select Exit")WinClose($title2)WinWait($title2)ControlClick($title2, "", "Button1")MsgBox(262144, "Outpost Firewall", "Outpost Firewall is already installed.", 3)ExitEndSelectEndFunc Link to comment Share on other sites More sharing options...
MGadAllah Posted July 22, 2006 Share Posted July 22, 2006 (edited) I've tried the latest script in topic #14but I found a scrren left in the end of the setup that need to be closedany suggestion?Thanks Edited July 23, 2006 by mgadallah Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now