Versius Posted April 21, 2004 Posted April 21, 2004 Hello everybody,I want to put DAMNED NFO Viewer v2.10 on my unattend CD, but I've got some problem to do it. NO SILENT INSTALL. I've read in that forum that there was an .msi file we can download to do the silent install, but I can't access to it. How an I make a silent install for that soft.Thanks in advance for any help...
XtremeMaC Posted April 21, 2004 Posted April 21, 2004 (edited) ...... Edited April 22, 2004 by XtremeMaC
Versius Posted April 21, 2004 Author Posted April 21, 2004 Hi,OK I'll waiting you finish your server maintenance... Merci
ssultan58 Posted April 22, 2004 Posted April 22, 2004 Add this to command.comECHO.ECHO Installing **** NFO ViewerECHO Please wait...start /wait %systemdrive%\install\Applications\DamnNFOViewer\****.msi /qn*****************$1 install Applications DamnNFOViewer
mazin Posted April 23, 2004 Posted April 23, 2004 Is command.com=batch.bat? If this is true, then I'll catch.cat!
Alanoll Posted April 23, 2004 Posted April 23, 2004 but **** doesn't have a native MSI file, you'll have to use Mac's which he removed the link for.
XtremeMaC Posted April 25, 2004 Posted April 25, 2004 hi thereokay here's the new and improved ****.msiit had some problems with extentions...
yourtech Posted April 25, 2004 Posted April 25, 2004 CFA DizNFO 2000 (Freeware ver) installs silent no problemsused the -s switch - nothing more
Versius Posted April 25, 2004 Author Posted April 25, 2004 Hi XtremeMaC,Thanks for your help! I'll download your file and test it. I've tried to make an *.msi file with WinInstall LE but it doesn't work.Thanks ;-)
ThaNerd Posted July 2, 2005 Posted July 2, 2005 (edited) The link to the "new and better msi" pack is dead I guess i'll make a NSIS myself. I made one in 5 minutes that installs a set of winamp skins in the right location, and that works absolutely silently... So... Well...Actually, it took lesser time to achieve than expected...DoneRun with DamnNFOViewer.exe /S to run silently.!define APPNAME "**** NFO Viewer"!define APPNAMEANDVERSION "**** NFO Viewer 2.10"; Main Install settingsName "${APPNAMEANDVERSION}"InstallDir "$PROGRAMFILES\**** NFO Viewer"InstallDirRegKey HKLM "Software\****\${APPNAME}" ""OutFile "DamnNFOViewer.exe"LicenseData "C:\Program Files\**** NFO Viewer\license.txt"LicenseText "If you accept the terms of the agreement, click I Agree to continue. You must accept the agreement to install ${APPNAMEANDVERSION}."ComponentText "Choose which features of ${APPNAMEANDVERSION} you want to install."DirText "Choose the folder in which to install ${APPNAMEANDVERSION}."Section "**** NFO Viewer"; Set Section properties SetOverwrite on; Set Section Files and Shortcuts SetOutPath "$INSTDIR\" File "C:\Program Files\**** NFO Viewer\**** NFO Viewer.exe" File "C:\Program Files\**** NFO Viewer\ReadMe.txt" File "C:\Program Files\**** NFO Viewer\history.txt" File "C:\Program Files\**** NFO Viewer\license.txt" CreateDirectory "$SMPROGRAMS\**** NFO Viewer" CreateShortCut "$SMPROGRAMS\**** NFO Viewer\**** NFO Viewer.lnk" "$INSTDIR\**** NFO Viewer.exe" CreateShortCut "$SMPROGRAMS\**** NFO Viewer\Uninstall.lnk" "$INSTDIR\uninstall.exe"SectionEndSection "Optional Languages"; Set Section properties SetOverwrite on; Set Section Files and Shortcuts SetOutPath "$INSTDIR\LangDLLs\" File "C:\Program Files\**** NFO Viewer\LangDLLs\DAMN_NFO_Viewer_CHI.dll" File "C:\Program Files\**** NFO Viewer\LangDLLs\DAMN_NFO_Viewer_DEU.dll" File "C:\Program Files\**** NFO Viewer\LangDLLs\DAMN_NFO_Viewer_DUT.dll" File "C:\Program Files\**** NFO Viewer\LangDLLs\DAMN_NFO_Viewer_ENG.dll" File "C:\Program Files\**** NFO Viewer\LangDLLs\DAMN_NFO_Viewer_ESL.dll" File "C:\Program Files\**** NFO Viewer\LangDLLs\DAMN_NFO_Viewer_FRA.dll" File "C:\Program Files\**** NFO Viewer\LangDLLs\DAMN_NFO_Viewer_ITA.dll" File "C:\Program Files\**** NFO Viewer\LangDLLs\DAMN_NFO_Viewer_NOR.dll" File "C:\Program Files\**** NFO Viewer\LangDLLs\DAMN_NFO_Viewer_POR.dll" File "C:\Program Files\**** NFO Viewer\LangDLLs\DAMN_NFO_Viewer_RUS.dll" File "C:\Program Files\**** NFO Viewer\LangDLLs\DAMN_NFO_Viewer_SVE.dll" File "C:\Program Files\**** NFO Viewer\LangDLLs\DAMN_NFO_Viewer_TUR.dll"SectionEndSection -FinishSection WriteRegStr HKLM "Software\****\${APPNAME}" "" "$INSTDIR" WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APPNAME}" "DisplayName" "${APPNAME}" WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APPNAME}" "UninstallString" "$INSTDIR\uninstall.exe" WriteUninstaller "$INSTDIR\uninstall.exe"SectionEnd;Uninstall sectionSection Uninstall;Remove from registry... DeleteRegKey HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APPNAME}" DeleteRegKey HKLM "SOFTWARE\****\${APPNAME}"; Delete self Delete "$INSTDIR\uninstall.exe"; Delete Shortcuts Delete "$SMPROGRAMS\**** NFO Viewer\**** NFO Viewer.lnk" Delete "$SMPROGRAMS\**** NFO Viewer\Uninstall.lnk"; Clean up **** NFO Viewer Delete "$INSTDIR\**** NFO Viewer.exe" Delete "$INSTDIR\ReadMe.txt" Delete "$INSTDIR\history.txt" Delete "$INSTDIR\license.txt"; Clean up Optional Languages Delete "$INSTDIR\LangDLLs\DAMN_NFO_Viewer_CHI.dll" Delete "$INSTDIR\LangDLLs\DAMN_NFO_Viewer_DEU.dll" Delete "$INSTDIR\LangDLLs\DAMN_NFO_Viewer_DUT.dll" Delete "$INSTDIR\LangDLLs\DAMN_NFO_Viewer_ENG.dll" Delete "$INSTDIR\LangDLLs\DAMN_NFO_Viewer_ESL.dll" Delete "$INSTDIR\LangDLLs\DAMN_NFO_Viewer_FRA.dll" Delete "$INSTDIR\LangDLLs\DAMN_NFO_Viewer_ITA.dll" Delete "$INSTDIR\LangDLLs\DAMN_NFO_Viewer_NOR.dll" Delete "$INSTDIR\LangDLLs\DAMN_NFO_Viewer_POR.dll" Delete "$INSTDIR\LangDLLs\DAMN_NFO_Viewer_RUS.dll" Delete "$INSTDIR\LangDLLs\DAMN_NFO_Viewer_SVE.dll" Delete "$INSTDIR\LangDLLs\DAMN_NFO_Viewer_TUR.dll"; Remove remaining directories RMDir "$SMPROGRAMS\**** NFO Viewer" RMDir "$INSTDIR\LangDLLs\" RMDir "$INSTDIR\"SectionEndFunction un.onInit MessageBox MB_YESNO|MB_DEFBUTTON2|MB_ICONQUESTION "Remove ${APPNAMEANDVERSION} and all of its components?" IDYES DoUninstall Abort DoUninstall:FunctionEndFunction .onGUIEnd MessageBox MB_YESNO "Would you like to run ${APPNAMEANDVERSION}?" IDNO NoRun Exec "$INSTDIR\**** NFO Viewer.exe" NoRun:FunctionEndBrandingText "Compiled by ThaNerd"; eofUsing NSIS 2.07 and LZMA solid compression, resulting installer is 141.143 bytes. Oh, and it has an ugly icon Edited July 2, 2005 by ThaNerd
maybeme Posted July 23, 2005 Posted July 23, 2005 (edited) Could you post your installer?I don't know how to make one myself, but I gonna try (I shouldn't be so difficult when you gave me the source or something)grtzEDIT: I can't upload the modified installer because of an upload limit here on msfn, though it is only 169KBThanks ThaNerd for the script! Edited July 23, 2005 by maybeme
Nologic Posted July 24, 2005 Posted July 24, 2005 hmm well in the AutoIT thread I have a script for installing ****...that said I find Jane [link] to be a much better viewer\editor (thanks to Mhz for showing me it)
TjobzzZ Posted July 27, 2005 Posted July 27, 2005 I find Jane [link] to be a much better viewer\editor (thanks to Mhz for showing me it)<{POST_SNAPBACK}>Thank you too for showing it
JuMz Posted July 28, 2005 Posted July 28, 2005 I am looking for that same ****.msi too...where did it go! come back!
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now