muiz Posted November 15, 2005 Posted November 15, 2005 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
GDragoN Posted November 15, 2005 Posted November 15, 2005 Well, I am not sure that this is Nullsoft. No switches work with this one.
mickmack Posted November 15, 2005 Posted November 15, 2005 this is nullsoft. they mentioned it in changelog...
MHz Posted November 15, 2005 Posted November 15, 2005 It is Nullsoft but it not capable do a Silent Install currently.
oniphone Posted November 15, 2005 Posted November 15, 2005 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.
codejunkie Posted November 15, 2005 Posted November 15, 2005 Looks like its going to be another job for...AutoIT 3
BoardBabe Posted November 15, 2005 Posted November 15, 2005 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...
r0sWell Posted November 15, 2005 Posted November 15, 2005 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
codejunkie Posted November 15, 2005 Posted November 15, 2005 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 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
SiMoNsAyS Posted November 15, 2005 Posted November 15, 2005 I always found and MSI that someone created. I will be experimenting with Daemon 4.00 when I get home. Wish me luck.you're going 2 need a lot of luck as mentioned above, setup no longer uses .msi format.
RogueSpear Posted November 15, 2005 Posted November 15, 2005 (edited) 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 November 15, 2005 by RogueSpear
BoardBabe Posted November 15, 2005 Posted November 15, 2005 (edited) 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) ThenSplashTextOn("Error", @CRLF & @CRLF & "An instance of this script is already running.", 350, 90, -1, -1, -1, "Arial", 11, 11)WinActivate("Error")Sleep(4000)SplashOff()ExitEndIfAutoItWinSetTitle($installername); Installation variables.$installerpath = @ScriptDir & "\daemon400.exe"$programpath = @ProgramFilesDir & "\DAEMON Tools\daemon.exe"; Verify installation file path.If Not FileExists($installerpath) ThenSplashTextOn("Error", @CRLF & " File not found:" & @CRLF & " " & $installerpath, 500, 90, -1, -1, 4, "Arial", 11, 11)WinActivate("Error")Sleep(4000)SplashOff()ExitEndIf; Verify application is not already installed.If FileExists($programpath) ThenSplashTextOn("Error", @CRLF & @CRLF & "Daemon Tools 4 already installed.", 350, 90, -1, -1, -1, "Arial", 11, 11)WinActivate("Error")Sleep(4000)SplashOff()ExitEndIf; 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 November 16, 2005 by BoardBabe
spn Posted November 16, 2005 Posted November 16, 2005 there isn't a possibility with wpi to install daemon 4?
Kelsenellenelvian Posted November 16, 2005 Posted November 16, 2005 Just compile the above auto it file into an exe and use it.
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now