I need to know, how to install IrfanView silently.
Thanks for Helping!
Pachelbeljoe
Posted 04 February 2004 - 07:13 AM
Posted 24 February 2004 - 01:56 PM
Quote
Posted 25 February 2004 - 08:55 AM
Posted 25 February 2004 - 10:22 AM
REG ADD %KEY%\175 /VE /D "Installing Irfanview" /f REG ADD %KEY%\175 /V 1 /D "%systemdrive%\Install\Applications\Irfanview\Irfanview.vbs" /f
'Automatic, but not silent install of Irfan View
Set WshShell = WScript.CreateObject("WScript.Shell")
On Error Resume Next
WshShell.Popup "Do NOT MOVE the mouse an do NOT PRESS any button!",5," - Warning - ",48
'Run setup from location on hdd'
'you have to check the path !
WshShell.Run ("%systemdrive%\Install\Applications\Irfanview\iview385.exe")
'if your hdd is slow, increase the next value
WScript.Sleep 7000
WshShell.SendKeys "{TAB}"
WScript.Sleep 2000
'Check the value!
'Change ALL shortcuts to your language !
WshShell.SendKeys "n"
WScript.Sleep 2000
WshShell.SendKeys "n"
WScript.Sleep 2000
WshShell.SendKeys "{TAB}"
WScript.Sleep 2000
WshShell.SendKeys "~"
WScript.Sleep 2000
WshShell.SendKeys "n"
WScript.Sleep 2000
WshShell.SendKeys "n"
WScript.Sleep 2000
'I think you have to change the next line to "y"
WshShell.SendKeys "y"
WScript.Sleep 2000
WshShell.SendKeys "~"
WScript.Sleep 2000
xcopy "%systemdrive%\Install\Applications\Irfanview\Plugins\*.*" "%programfiles%\Irfanview\Plugins" /E /I /Q /H /R /Y
Posted 16 July 2004 - 01:50 AM
Posted 16 July 2004 - 06:23 AM
Posted 16 July 2004 - 06:58 AM
<execute display='Installing IrfanView 3.90...' program='#xplode#\Applications\iview\iview.exe' arguments='/silent /desktop=0 /group=1 /allusers=1 /assoc=1'></execute> <execute display='Installing IrfanView PlugIns...' program='#xplode#\Applications\iview\iplug.exe' arguments='/silent'></execute>
Posted 19 July 2004 - 07:52 AM