Jump to content

[Release] DAEMON Tools Lite v4.30.3


johndoe74

Recommended Posts

johndoe74,

If you are versed with NSIS scripts, I have this script which works great for me (Verified with an nLite'd Win2K install).

The coding is wrapped on the display though and it doesn't handle uninstalling the old versions (as it's meant for slipstreaming). You don't need to add the /S switch because the installer is set to install silently.

SetCompressor /SOLID /FINAL lzma
;*Application Name*;
!define szName "Daemon Tools"
;*Version Information*;
!define nVersion "4.08"
;*Directory to install to*;
InstallDir "$PROGRAMFILES\${szName}"
;*Installer Icon*;
!define szIcon "${NSISDIR}\Contrib\Graphics\Icons\modern-install-blue-full.ico"

;* Place the Daemon Tools installer and the SPTD installer in the same folder as this script *;
;* Make sure that the variables szDT and szSPTD match those installers *;

;* Daemon Tools Installer Name *;
!define szDT "daemon408-139-x86.exe"
;* DT Spyware Name *;
!define szSpy "SetupDTSB.exe"
;* SPTD Installer Name *;
;* You can extract this by right-clicking on the daemon tools setup file and clicking "Open Archive" (via 7-zip)*;
;* Navigate to the $TEMP *;
!define szSPTD "SPTDinst-x86.exe"

;#---DO NOT EDIT BELOW THIS LINE UNLESS YOU KNOW WHAT YOU'RE DOING!!!---#;
;*App Name*;
Name "${szName}"
;*Setup Title*;
Caption "${szName} ${nVersion} Setup"
;*Output File*;
!define szOutExe "${szName}-${nVersion}.exe"
OutFile ${szOutExe}
;*Shows details while installing*;
ShowInstDetails show
;*Installation Type*;
InstType "Full"
;*Header Files*;
!include "Sections.nsh"
;*Branding Text, duh!*;
BrandingText "${szName} Setup"
;**Interface Settings**;
Icon "${szIcon}"

;***Sections***;
Section "Full Install" SecFull
SectionIn 1 RO
SetOverwrite on
SetOutPath "$INSTDIR"

IfFileExists "$INSTDIR\${szOutExe}" 0 first
File "${szDT}"
File "daemon_tools.nsi"

;* Add files to be installed at first start here *;
ExecWait '"$INSTDIR\${szDT}" /S'
Delete '$INSTDIR\${szSpy}'
;* End start files *;

Goto done
first:
File "${szSPTD}"
ExecWait '"$INSTDIR\${szSPTD}" add /q'
Delete '$INSTDIR\${szSPTD}'
CopyFiles /SILENT "$EXEDIR\${szOutExe}" "$INSTDIR"
WriteRegStr "HKLM" "SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnce" "${szName}" '"$INSTDIR\${szOutExe}"'

done:
SectionEnd

Function .onInit
SetSilent silent
FunctionEnd

Link to comment
Share on other sites


DAEMON Tools v4.12.4 (x86/64-bit)

This addon does not include SPTD. You must include an addon for SPTD as well when integrating this addon.

Website/Changelog :: Disc-Tools.com

File size :: 5.00 MB (5,246,662 bytes)

MD5 :: 82138A344F1A4FC744C8E068393FDC1D

Main :: MediaFire

Mirror :: box.net

Mirror :: badongo

Mirror :: FileFront

Mirror :: FileFactory

Mirror :: Esnips

Mirror :: Uploading

Mirror :: DivShare

NOTES::

  • This addon uses an AutoIT script to install which is a combined effort of radix and myself so thanks go out to the maestro!
  • This addon installs via GUIRUNONCE so unattended mode must be enabled!

DAEMON Tools v4.12.2 (x86/32-bit) with SPDT v1.56 (x86/32-bit)

File size :: 4.52 MB (4,741,112 bytes)

MD5 :: 4B345B9AF872501B78CCA6E76449265B

Main :: MediaFire

Mirror :: Badongo

Mirror :: FileFactory

DAEMON Tools v4.12.2 (x64/64-bit) with SPDT v1.56 (x64/64-bit)

File size :: 4.69 MB (4,919,048 bytes)

MD5 :: A871712D2EB9C2317F6E0F5A79140D2A

Main :: MediaFire

Mirror :: Badongo

Mirror :: FileFactory

NOTE :: Both these addons use radix's autoit script available here (with a few minor modification) so thanks go to him. hope he doesn't mind its use

Edited by johndoe74
Link to comment
Share on other sites

  • 1 month later...

hi, anyone wanna give these two addons a shot ?

these two include stock SPTD v1.42 installer, not Shark007's as he's discontinued making it, otherwise they install the same way. Unfortunately, I haven't had a chance to try them out personally. One minor change is as follows. It seems daemon tools by itself doesn't appear in add/remove programs. the code to add it to add/remove programs has been added and supplied in its entirety by weed so thanks goes to him.

Could somebody please test these out and let me know so I can update the first post. Thanks.

DAEMON Tools v4.08 (x86/32-bit) with SPDT v1.42 (x86/32-bit)

File size :: 2.11 MB (2,208,228 Bytes)

MD5 :: B41EDD71A52F69DA9E3A271BB9AD9FE5

Main :: FileFront

DAEMON Tools v4.08 (64-bit) with SPDT v1.42 (64-bit)

File size :: 2.44 MB (2,560,226 Bytes)

MD5 :: 18CDAE89C6264A45873CF78E88490F0E

Main :: FileFront

Edited by johndoe74
Link to comment
Share on other sites

quite a few people have downloaded the experimental / test version (cuz I still haven't had a chance to test myself yet) with SPTD v1.42 but no feedback yet. would somebody be so kind as to provide feedback so i can update the first post and add more mirrors ? thanks

Edited by johndoe74
Link to comment
Share on other sites

SPTDinst-v142-x64.exe is final and maybe u can tell me how to change it from the setup and delete the ad-bar. i have tried to unpack with universal extractor and the nullsoft installer cannot make a setup again but the name is the same. i have changed the files.

can u tell me how to install it with the german dll too? i have delete the english one and edit the .nis file from 1033 to 1031.

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...