silent avant browser?
#2
Posted 09 November 2003 - 09:15 AM
absetup.exe /S
it will bring an error, but it works...
#4
Posted 09 November 2003 - 08:09 PM
#5
Posted 10 November 2003 - 12:15 PM
#6
Posted 10 November 2003 - 07:23 PM
#7
Posted 10 November 2003 - 08:40 PM
Set WshShell = WScript.CreateObject("WScript.Shell")
'uruchomienie instalacji
WshShell.Run app & "absetup.exe"
WScript.Sleep 2500
WshShell.SendKeys "N"
WScript.Sleep 500
WshShell.SendKeys "%A"
WScript.Sleep 500
WshShell.SendKeys "N"
WScript.Sleep 500
'odznaczanie menu w starcie
WshShell.SendKeys "{TAB}"
WshShell.SendKeys "{TAB}"
WshShell.SendKeys "{ }"
WshShell.SendKeys "N"
WScript.Sleep 500
'odznaczenie skrotow
WshShell.SendKeys "{TAB}"
WshShell.SendKeys "{TAB}"
WshShell.SendKeys "{ }"
WshShell.SendKeys "I"
'start kopiowania
WScript.Sleep 5000
WshShell.SendKeys "{TAB}"
WshShell.SendKeys "{ }"
WshShell.SendKeys "F"
WScript.Sleep 500
WScript.Quit
I use this vbs script.
#8
Posted 11 November 2003 - 03:46 AM
#9
Posted 11 November 2003 - 08:57 AM
eg: %systemdrive%\install\apps\avant\avant.vbs
#10
Posted 11 November 2003 - 12:34 PM
i put avant.vbs in:
c:\install\Applications\AvantBrowser\
in avant.vbs directory there's absetup.exe
my cmd:
CLS
@echo off
ECHO.
ECHO Installing Avant Browser 8.02 build 112
ECHO Please wait...
start /wait %systemdrive%\install\Applications\AvantBrowser\avant.vbs
ECHO.
EXIT
if i run cmd i have the error
if i run avant.vbs i have no error
why?
#12
Posted 16 November 2003 - 04:50 PM
Bachus, on Nov 11 2003, 02:23 AM, said:
Is he says something?
#13
Posted 17 November 2003 - 07:34 AM
#16
Posted 10 January 2004 - 02:16 PM
And I dont understand that vbs script ? what does it suppose to do ?
#17
Posted 11 January 2004 - 12:31 AM
---------------------------------Begin Code--------------------------------------------
Set WshShell = WScript.CreateObject("WScript.Shell")
'To Simulate Keystrokes
WshShell.Run app & "avant.exe"
WScript.Sleep 2500
WshShell.SendKeys "{ENTER}"
WScript.Sleep 500
WshShell.SendKeys "{ENTER}"
WScript.Sleep 500
WshShell.SendKeys "{ENTER}"
WScript.Sleep 500
WshShell.SendKeys "{TAB}"
WshShell.SendKeys "{TAB}"
WScript.Sleep 500
WshShell.SendKeys " "
WScript.Sleep 2000
WshShell.SendKeys "{TAB}"
WshShell.SendKeys "{TAB}"
WshShell.SendKeys "{TAB}"
WshShell.SendKeys "{TAB}"
WScript.Sleep 2500
WshShell.SendKeys "{ENTER}"
WScript.Sleep 2500
WshShell.SendKeys "{ENTER}"
WshShell.SendKeys "{TAB}"
WshShell.SendKeys " "
WScript.Sleep 2500
WshShell.SendKeys "{TAB}"
WshShell.SendKeys "{TAB}"
WshShell.SendKeys "{ENTER}"
WScript.Quit
---------------------------------End Code--------------------------------------------
Just copy and paste that in notepad and save it as "Avant.vbs".
BTW, I love this site. All the guides are right on the money. I got my CD ready in a matter hours really. And it ran ran almost flawlessy Runoncex and all.(If it wasnt for my bad typing, I think it wouldve been).
#18
Posted 22 February 2004 - 10:37 PM
Thanks to No1spec for his great help in making Avant work for me in my unattended install.
Here is the code:
_______________Begin Code________________________________
Set WshShell = WScript.CreateObject("WScript.Shell")
'To Simulate Keystrokes
WshShell.Run app & "avant.exe"
WScript.Sleep 2500
'Agree to license agreement
WshShell.SendKeys "{ENTER}"
WScript.Sleep 1000
'Accept default destination folder
WshShell.SendKeys "{ENTER}"
WScript.Sleep 1000
'Deselect creating Start Menu folder
WshShell.SendKeys "{TAB}"
WScript.Sleep 500
WshShell.SendKeys "{TAB}"
WScript.Sleep 500
WshShell.SendKeys " "
WScript.Sleep 500
WshShell.SendKeys "{TAB}"
WScript.Sleep 500
WshShell.SendKeys "{TAB}"
WScript.Sleep 500
WshShell.SendKeys "{ENTER}"
WScript.Sleep 500
'Deselect desktop-quick-start shortcuts
WshShell.SendKeys " "
WScript.Sleep 500
WshShell.SendKeys "{TAB}"
WScript.Sleep 500
WshShell.SendKeys " "
WScript.Sleep 500
WshShell.SendKeys "{TAB}"
WScript.Sleep 500
WshShell.SendKeys "{TAB}"
WScript.Sleep 500
WshShell.SendKeys "{TAB}"
WScript.Sleep 500
WshShell.SendKeys "{ENTER}"
WScript.Sleep 3000
'Installing Program...Prompt to install Roboform (not selected)
WshShell.SendKeys "{ENTER}"
WScript.Sleep 1000
WshShell.SendKeys " "
WScript.Sleep 1000
WshShell.SendKeys "{TAB}"
WScript.Sleep 1000
WshShell.SendKeys "{TAB}"
WScript.Sleep 1000
WshShell.SendKeys "{ENTER}"
WScript.Sleep 1000
WScript.Quit
________________End Code_________________________
#19
Posted 24 May 2004 - 06:10 AM
#20
Posted 08 June 2004 - 10:37 AM
absetup.exe /S
Note that the /S must be capitalized, and even though this uses the Nullsoft NSIS installer, none of the other switches I tried have worked (e.g. /D=directory). Using the /S, it shows no window or progress of any kind, and it installed successfully with no user interaction.
Of course it installs with all the default options selected (i.e. installs in %ProgramFiles%\Avant Browser, creates desktop and QuickLaunch icons etc), but since the installer itself doesn't give you too many other options, I didn't have a problem with this. I can always delete icons manually in a script etc.
Regards,
Matt
- ← Software is not installed automatically ?
- Application Installs
- Acrobat 9 Standard updating to 9.4.1 →



Help

Back to top









