Jump to content

DAEMON Tools 4.0


muiz

Recommended Posts

Any one installed the new DAEMON Tools 4.0?

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

Link to comment
Share on other sites


I was never able to successfully get Daemon tools 3.47 to install silently using the EXE from Daemon's website. I always found and MSI that someone created. I will be experimenting with Daemon 4.00 when I get home. Wish me luck.

Link to comment
Share on other sites

I really don't get why the author do not make sure the installer properly support silent installs.... I'm the translator of the Norwegian D-tools, I'll have a chatty with him...

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 :}

Link to comment
Share on other sites

I really don't get why the author do not make sure the installer properly support silent installs.... I'm the translator of the Norwegian D-tools, I'll have a chatty with him...

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 :no: well thats crap!

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

Link to comment
Share on other sites

I repacked Daemon Tools V3.x ages ago and it always worked fine. I'll see if I can do the same with this one - minus the adware.

EDIT: Sheesh, they make you reboot right in the middle of the install.

Edited by RogueSpear
Link to comment
Share on other sites

Here's a little something I put together in AutoIt for installing Daemon Tools v4 (without Toolbar and shortcuts).

; 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

Edited by BoardBabe
Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...