DAEMON Tools 4.0 toolbar?
#1
Posted 15 November 2005 - 04:25 AM
i saw they switched to a nulsoft installer so that would be /S , but does that install the toolbar ?
cause they added adware in new verion , a toolbar
#2
Posted 15 November 2005 - 05:21 AM
#3
Posted 15 November 2005 - 05:31 AM
#5
Posted 15 November 2005 - 05:52 AM
#6
Posted 15 November 2005 - 06:12 AM
#7
Posted 15 November 2005 - 06:14 AM
AutoIT 3
#8
Posted 15 November 2005 - 07:44 AM
#9
Posted 15 November 2005 - 07:55 AM
BoardBabe, on Nov 15 2005, 03:44 PM, said:
could be cool
i've just installed it (the normal way) and i had to reboot my computer before installing D-Tools v4.0 (for a kind of driver). so it's not good for silent install it i think
#10
Posted 15 November 2005 - 08:10 AM
r0sWell, on Nov 15 2005, 02:55 PM, said:
BoardBabe, on Nov 15 2005, 03:44 PM, said:
could be cool
i've just installed it (the normal way) and i had to reboot my computer before installing D-Tools v4.0 (for a kind of driver). so it's not good for silent install it i think
I only had to reboot because has to remove the old version installed.. if its anything like 3.47. install it on a PC that doesnt have an older version & then just launch it without rebooting and its works..
Im try it now... no wait cant do that
My AutoIt3 Script will have to click Cancel to restart and add its self to RunOnceEx VIA Batch File to finish the installation once the 'SCSI Pass Though Direct' Driver had been installed during reboot or the drive will have to be installed at T-12 or T-12
#11
Posted 15 November 2005 - 08:55 AM
#12
Posted 15 November 2005 - 01:51 PM
EDIT: Sheesh, they make you reboot right in the middle of the install.
This post has been edited by RogueSpear: 15 November 2005 - 02:01 PM
#13
Posted 15 November 2005 - 02:57 PM
; AutoIt options.
AutoItSetOption("TrayIconHide", 1)
AutoItSetOption("WinTitleMatchMode", 4)
; Verify only one instance of installer is running.
$installername = "AutoInstaller for DaemonTools 4"
If WinExists($installername) Then
SplashTextOn("Error", @CRLF & @CRLF & "An instance of this script is already running.", 350, 90, -1, -1, -1, "Arial", 11, 11)
WinActivate("Error")
Sleep(4000)
SplashOff()
Exit
EndIf
AutoItWinSetTitle($installername)
; Installation variables.
$installerpath = @ScriptDir & "\daemon400.exe"
$programpath = @ProgramFilesDir & "\DAEMON Tools\daemon.exe"
; Verify installation file path.
If Not FileExists($installerpath) Then
SplashTextOn("Error", @CRLF & " File not found:" & @CRLF & " " & $installerpath, 500, 90, -1, -1, 4, "Arial", 11, 11)
WinActivate("Error")
Sleep(4000)
SplashOff()
Exit
EndIf
; Verify application is not already installed.
If FileExists($programpath) Then
SplashTextOn("Error", @CRLF & @CRLF & "Daemon Tools 4 already installed.", 350, 90, -1, -1, -1, "Arial", 11, 11)
WinActivate("Error")
Sleep(4000)
SplashOff()
Exit
EndIf
; Start installation.
Run($installerpath)
; Welcome dialog.
WinWait("DAEMON Tools 4.00HE", "Welcome to the DAEMON Tools 4.00 Setup Wizard")
ControlClick("DAEMON Tools 4.00HE", "Welcome to the DAEMON Tools 4.00 Setup Wizard", "Button2")
; License agreement.
WinWait("DAEMON Tools 4.00HE", "License Agreement")
ControlClick("DAEMON Tools 4.00HE", "License Agreement", "Button2")
; Choose Components.
BlockInput(1)
WinWait("DAEMON Tools 4.00HE", "Choose Components")
WinActivate("DAEMON Tools 4.00HE", "Choose Components")
WinWaitActive("DAEMON Tools 4.00HE", "Choose Components")
ControlFocus("DAEMON Tools 4.00HE", "Choose Components", "ComboBox1")
Send("{TAB}")
Sleep(500)
Send("{DOWN}")
Sleep(500)
Send("{SPACE}")
Sleep(500)
Send("{DOWN}")
Sleep(500)
Send("{SPACE}")
Sleep(500)
Send("{DOWN}")
Sleep(500)
Send("{SPACE}")
ControlClick("DAEMON Tools 4.00HE", "Choose Components", "Button2")
BlockInput(0)
; Choose Install Location.
WinWait("DAEMON Tools 4.00HE", "Choose Install Location")
ControlClick("DAEMON Tools 4.00HE", "Choose Install Location", "Button2")
; Completing the DAEMON Tools Setup Wizard.
WinWait("DAEMON Tools 4.00HE", "Completing the DAEMON Tools Setup Wizard")
ControlClick("DAEMON Tools 4.00HE", "Completing the DAEMON Tools Setup Wizard", "Button4")
Sleep(500)
ControlClick("DAEMON Tools 4.00HE", "Completing the DAEMON Tools Setup Wizard", "Button2")
Exit
;eof
This post has been edited by BoardBabe: 16 November 2005 - 09:35 AM
#14
Posted 16 November 2005 - 02:51 AM
#15
Posted 16 November 2005 - 05:42 AM
#16
Posted 16 November 2005 - 09:27 AM
If anyone are interested I have an AutoIt script that also changes the language. New updated language files for v4 are not yet posted, but as I am the Norwegian translator pm if you need the new file (1044.dll).
#17
Posted 16 November 2005 - 02:36 PM
there must be a way
#18
Posted 16 November 2005 - 02:41 PM
#19
Posted 16 November 2005 - 03:07 PM
In a case like this, where the developer didn't include a way to silently install, this is one of the few ways you can make it work outside of repackaging.
#20
Posted 16 November 2005 - 03:21 PM



Help


Back to top









