November 15, 200520 yr 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
November 15, 200520 yr 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.
November 15, 200520 yr 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...
November 15, 200520 yr 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
November 15, 200520 yr 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
November 15, 200520 yr 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.
November 15, 200520 yr 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, 200520 yr by RogueSpear
November 15, 200520 yr 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, 200520 yr by BoardBabe
Create an account or sign in to comment