someone can help me to silent install outpost?
#22
Posted 10 August 2004 - 09:29 PM
I just went ahead and used InstallRite - not only does it cut the install file down in 1/2, but it is completely silent, pre-registered, and some configurations settings made!
WwTIPPYwW
#25
Posted 11 August 2004 - 09:59 AM
http://www.epsilonsquared.com/installrite.htm
It is an application that takes a snapshot before installation and after installation and then compares the two to determine what has been done.
install InstallRite on your test XP box. Run it, let it get a snapshot. Then install Outpost. When it comes back up after hitting cancel to reboot, it will take another snapshot.
Then you can review the installation and clean things up. You'll need to review it and only select the real changes made by the install. There will be some things that appear that is just from Windows being Windows.
Once you've got the install cleaned up, and before creating your custom installer, you can run your register.exe and update the file. (this way, when the custom installer is made, it will have the fixed dll).
Also, if instead, when you hit cancel to reboot, and the InstallRite screen re-appears, say you aren't done. You can start Outpost (it will create a few files when you start it!) and you can go in and configure some of the settings, disable the auto-update, downloading of news, plugins, etc. When done click on the icon in the corner to get back the Install Rite screen. Then you can go in and clean your installation.
Once you are ready to create a custom installer - it will let you make it silent, and it will allow you to wildcard the location of the installer. So if your test XP is different than you real XP, or your users, then it will put the files in the right folders.
This program can be used for many installtions. The custom installers can sometimes be smaller. Just make sure to (1) clean your install before making it (lots of junk can get bundled in) and (2) test it.
Use Virtual PC or VMware and use the snapshot feature to quickly go to a clean Windows.
WwTIPPYwW
#26
Posted 12 August 2004 - 09:02 PM
#27
Posted 16 August 2004 - 08:40 PM
#29
Posted 17 August 2004 - 08:32 PM
Quote
pskill.exe GLB2.tmp
would work?
i know there is somewhere in the forum an utility to find apps switches but i can find the tool
any more ideas?
#30
Posted 18 August 2004 - 01:50 AM
; AutoIt Version: 3.0.102
; Language: English
; Platform: Win9x / NT
; Author: nateklomp
; Script Function: Install Agnitum Outpost Firewall 1.0.
Opt("TrayIconDebug", 1)
Opt("WinTitleMatchMode", 3)
Run("outpost.exe")
BlockInput(1)
WinWaitActive("Welcome")
Send("N")
WinWaitActive("License Agreement for Agnitum Outpost Firewall 1.0")
ControlClick("License Agreement for Agnitum Outpost Firewall 1.0","","Button3")
Send("N")
WinWaitActive("Choose Destination Location")
Send("N")
WinWaitActive("Languages")
Send("N")
WinWaitActive("Start Installation")
Send("N")
WinWaitActive("Installation Complete")
Send("F")
WinWaitActive("Install")
ControlClick("Install","","Button3")
EXIT
Untested, please be gentle...
#31
Posted 18 August 2004 - 08:34 AM
Quote
; Language: English
; Platform: Win9x / NT / XP
; Author: SiMoNsAyS aka Bio]-[aZaRD
; Script Function: Instalar Agnitum Outpost Firewall 2.11
Opt("TrayIconDebug", 1)
Opt("WinTitleMatchMode", 3)
Run("OutpostProInstall.exe")
BlockInput(1)
WinWaitActive("Select Language")
ControlClick("Select Language","Spanish","")
ControlClick("Select Language","OK","Button2")
WinWaitActive("Bienvenido")
Send("S")
WinWaitActive("Contrato de Licencia")
ControlClick("Contrato de Licencia","Acepto","Button3")
Send("S")
WinWaitActive("Léame")
Send("S")
WinWaitActive("Seleccionar la carpeta de instalación")
Send("S")
WinWaitActive("Se ha completado la configuración de parámetros necesarios")
ControlClick("Se ha completado la configuración de parámetros necesarios","Crear grupo de programa para todos los usuarios del ordenador","")
Send("S")
WinWaitActive("Configuración automática")
Send("S")
WinWaitActive("Aplicaciones")
ControlClick("Aplicaciones","Utilizar las reglas configuradas automáticamente","Button6")
Send("S")
WinWaitActive("Red local")
ControlClick("Red local","Utilizar las reglas configuradas automáticamente","Button6")
Send("S")
WinWaitActive("Se ha completado la instalación")
Send("F")
WinWaitActive("Instalar")
ControlClick("Instalar","Cancelar","Button3")
EXIT
#32
Posted 18 August 2004 - 09:24 AM
#33
Posted 18 August 2004 - 10:25 AM
1.-Starting...
First we need AutoIt application that can be downloaded from here. Current version it's 3.0.102 (4th Aug, 2004).
2.-AutoIt Script...
Quote
; Language: English
; Platform: Win9x / NT / XP
; Author: SiMoNsAyS aka Bio]-[aZaRD
; Script Function: Instalar Agnitum Outpost Pro Firewall 2.11
Opt("TrayIconDebug", 1)
Opt("WinTitleMatchMode", 3)
Run("OutpostProInstall.exe")
BlockInput(1)
;this is language depending, this 4 keystrokes select spanish.
;if yours it's not spanish you will need to change the title and keystrokes for windows and buttons.
;thanks to nateklomp and big_gie : )
WinWaitActive("Select Language")
Send("{DOWN}{DOWN}{DOWN}{DOWN}")
ControlClick("Select Language","OK","Button2")
;pass welcome screen
WinWaitActive("Bienvenido")
Send("S")
;pass license agreement
WinWaitActive("Contrato de Licencia")
ControlClick("Contrato de Licencia","Acepto","Button3")
Send("S")
;pass readme screen
WinWaitActive("Léame")
Send("S")
;select installation directory (default %PROGRAMFILES%\Agnitum\Outpost Firewall)
WinWaitActive("Seleccionar la carpeta de instalación")
Send("S")
;program group only for default user (not all users)
WinWaitActive("Se ha completado la configuración de parámetros necesarios")
ControlClick("Se ha completado la configuración de parámetros necesarios","Crear grupo de programa para todos los usuarios del ordenador","")
Send("S")
;pass automatic config screen
WinWaitActive("Configuración automática")
Send("S")
;default config for aplications
WinWaitActive("Aplicaciones")
ControlClick("Aplicaciones","Utilizar las reglas configuradas automáticamente","Button6")
Send("S")
;default config for local net
WinWaitActive("Red local")
ControlClick("Red local","Utilizar las reglas configuradas automáticamente","Button6")
Send("S")
;pass finish installation screen
WinWaitActive("Se ha completado la instalación")
Send("F")
;the most important on the installation. cancel the reboot now window.
WinWaitActive("Instalar")
ControlClick("Instalar","Cancelar","Button3")
EXIT
Save the above code to a .txt file and rename it to .au3
3.-Compiling...
Finally we're going to compile our AutoIt script. Search for a folder on AutoIt directory called "Aut2Exe".
After running the compiler select your .aut (.au3) script, then imput the name of the .exe file that you like (must be in the same Outpost folder). Leave everything and press "Convert".
4.-Finish...
Add the entry of the compiled .exe file to your .cmd file.
5.-Final notes...
For this exact script to work you'll need:
- Name of installer have to be OutpostProInstall.exe
- AutoIt compiled .exe have to be in the same directory of OutpostProInstall.exe
- Must be installed before any antiviral software
#34
Posted 28 August 2004 - 04:53 PM
Alanoll, on Aug 2 2004, 11:46 AM, said:
Silly me.
That was Outcast
#35
Posted 29 August 2004 - 12:13 AM
Set WshShell = WScript.CreateObject("WScript.Shell")
On Error Resume Next
WScript.Sleep 7000
wshshell.appactivate("Welcome")
WScript.Sleep 1000
WshShell.SendKeys "n"
WScript.Sleep 5000
WshShell.SendKeys "{TAB 2}"
WScript.Sleep 1000
WshShell.SendKeys "{UP}"
WScript.Sleep 1000
WshShell.SendKeys "n"
WScript.Sleep 10000
WshShell.SendKeys "n"
WScript.Sleep 1000
WshShell.SendKeys "n"
WScript.Sleep 1000
WshShell.SendKeys "n"
WScript.Sleep 30000
WshShell.SendKeys "n"
WScript.Sleep 1000
WshShell.SendKeys "{TAB 4}"
WScript.Sleep 1000
WshShell.SendKeys "{ }"
WScript.Sleep 1000
WshShell.SendKeys "n"
WScript.Sleep 1000
WshShell.SendKeys "{TAB 4}"
WScript.Sleep 1000
WshShell.SendKeys "{ }"
WScript.Sleep 1000
WshShell.SendKeys "n"
WScript.Sleep 1000
WshShell.SendKeys "f"
WScript.Sleep 1000
WshShell.SendKeys "{TAB}"
WScript.Sleep 1000
WshShell.SendKeys "{ENTER}"
WScript.Sleep 1000
Wscript.Quit
SiMoNsAyS, What theme are u using
#36
Posted 29 August 2004 - 06:56 AM
chezy666, on Aug 29 2004, 08:13 AM, said:
ChaNinja rc5, SubZero color style. i love it!
#37
Posted 11 September 2004 - 03:18 AM
nateklomp, on Aug 18 2004, 06:50 PM, said:
; AutoIt Version: 3.0.102
; Language: English
; Platform: Win9x / NT
; Author: nateklomp
; Script Function: Install Agnitum Outpost Firewall 1.0.
Opt("TrayIconDebug", 1)
Opt("WinTitleMatchMode", 3)
Run("outpost.exe")
BlockInput(1)
WinWaitActive("Welcome")
Send("N")
WinWaitActive("License Agreement for Agnitum Outpost Firewall 1.0")
ControlClick("License Agreement for Agnitum Outpost Firewall 1.0","","Button3")
Send("N")
WinWaitActive("Choose Destination Location")
Send("N")
WinWaitActive("Languages")
Send("N")
WinWaitActive("Start Installation")
Send("N")
WinWaitActive("Installation Complete")
Send("F")
WinWaitActive("Install")
ControlClick("Install","","Button3")
EXIT
Untested, please be gentle...
Tried with a couple of Autoit scripts myself but yours seems to be the best so far but still not installing yet? It basically stalls at the licence agreement?
#38
Posted 27 September 2004 - 01:37 AM
; 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 for Outpost Firewall 2.1","","Button3")
WinActivate("License Agreement for Outpost Firewall 2.1")
ControlClick("License Agreement for Outpost Firewall 2.1","","Button1")
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
You can also silently reg with this key (s/n removed of course):
[HKEY_LOCAL_MACHINE\SOFTWARE\Agnitum\Outpost Firewall] "Key"="-"
I've also attached the compiled EXE--change OutpostProInstall.exe to outpost.exe and run in the same dir (or in an SFX).
I've tested it, this one's been working for me.
Good Luck!
Attached File(s)
-
OutpostProInstaller.exe (86.96K)
Number of downloads: 113
This post has been edited by nateklomp: 27 September 2004 - 06:58 AM
#40
Posted 28 September 2004 - 04:05 PM
im a newb



Help


Back to top









